From ad8487825a89d97c6bc695d0e15b9f24f479c45c Mon Sep 17 00:00:00 2001 From: dvbb <61542202+dvbb@users.noreply.github.com> Date: Tue, 24 Aug 2021 13:56:28 +0800 Subject: [PATCH 1/3] test(network): update cases 1. update VnetGateway test case --- .../tests/Tests/GatewayOperationsTests.cs | 383 +++++++++++++++++- 1 file changed, 382 insertions(+), 1 deletion(-) diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs index 39add5952f85..71e0efd1c7c4 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs @@ -39,6 +39,387 @@ private enum TestEnvironmentSettings SampleCertThumbprint } + [Test] + public async Task VnetGatewayBaseTest() + { + string resourceGroupName = Recording.GenerateAssetName("csmrg"); + string location = "westus2"; + var resourceGroup = await CreateResourceGroup(resourceGroupName); + + // Create Vnet + string vnetName = Recording.GenerateAssetName("azsmnet"); + string subnetName = "GatewaySubnet"; + + await CreateVirtualNetwork(vnetName, subnetName, location, resourceGroup.GetVirtualNetworks()); + Response getSubnetResponse = await resourceGroup.GetVirtualNetworks().Get(vnetName).Value.GetSubnets().GetAsync(subnetName); + Assert.IsNotNull(getSubnetResponse.Value.Data); + + // Create PublicIpAddress + string publicIpName = Recording.GenerateAssetName("azsmnet"); + string domainNameLabel = Recording.GenerateAssetName("azsmnet"); + + PublicIPAddress nic1publicIp = await CreateDefaultPublicIpAddress(publicIpName, domainNameLabel, location, resourceGroup.GetPublicIPAddresses()); + Assert.IsNotNull(nic1publicIp.Data); + + // Create VirtualNetworkGateway + string virtualNetworkGatewayName = Recording.GenerateAssetName("azsmnet"); + string ipConfigName = Recording.GenerateAssetName("azsmnet"); + var virtualNetworkGateway = new VirtualNetworkGatewayData() + { + Location = location, + Sku = new VirtualNetworkGatewaySku() + { + Name = VirtualNetworkGatewaySkuName.Basic, + Tier = VirtualNetworkGatewaySkuTier.Basic + }, + Tags = { { "key", "value" } }, + EnableBgp = false, + GatewayType = VirtualNetworkGatewayType.Vpn, + VpnType = VpnType.RouteBased, + IpConfigurations = + { + new VirtualNetworkGatewayIPConfiguration() + { + Name = ipConfigName, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + PublicIPAddress = new SubResource() + { + Id = nic1publicIp.Id + }, + Subnet = new SubResource() + { + Id = getSubnetResponse.Value.Id + } + } + } + }; + + var virtualNetworkGatewayContainer = resourceGroup.GetVirtualNetworkGateways(); + var putVirtualNetworkGatewayResponseOperation = await virtualNetworkGatewayContainer.CreateOrUpdateAsync(virtualNetworkGatewayName, virtualNetworkGateway); + Response putVirtualNetworkGatewayResponse = await putVirtualNetworkGatewayResponseOperation.WaitForCompletionAsync(); + Assert.AreEqual("Succeeded", putVirtualNetworkGatewayResponse.Value.Data.ProvisioningState.ToString()); + Response getVirtualNetworkGatewayResponse = await virtualNetworkGatewayContainer.GetAsync(virtualNetworkGatewayName); + Assert.NotNull(getVirtualNetworkGatewayResponse.Value.Data); + Assert.AreEqual(virtualNetworkGatewayName, getVirtualNetworkGatewayResponse.Value.Data.Name); + Assert.AreEqual(1, putVirtualNetworkGatewayResponse.Value.Data.Tags.Count); + + // Update + virtualNetworkGateway.Tags.Add(new KeyValuePair("tag2", "value")); + virtualNetworkGateway.Tags.Add(new KeyValuePair("tag3", "value")); + putVirtualNetworkGatewayResponseOperation = await virtualNetworkGatewayContainer.CreateOrUpdateAsync(virtualNetworkGatewayName, virtualNetworkGateway); + putVirtualNetworkGatewayResponse = await putVirtualNetworkGatewayResponseOperation.WaitForCompletionAsync(); + Assert.AreEqual(3, putVirtualNetworkGatewayResponse.Value.Data.Tags.Count); + + // Delete VirtualNetworkGateway + await getVirtualNetworkGatewayResponse.Value.DeleteAsync(); + } + + [Test] + [RecordedTest] + public async Task VnetGatewayConnectionSiteToSiteTest() + { + string resourceGroupName = Recording.GenerateAssetName("csmrg"); + string location = "westus2"; + var resourceGroup = await CreateResourceGroup(resourceGroupName); + + // Create Vnet + string vnetName = Recording.GenerateAssetName("azsmnet"); + string subnetName = "GatewaySubnet"; + + await CreateVirtualNetwork(vnetName, subnetName, location, resourceGroup.GetVirtualNetworks()); + Response getSubnetResponse = await resourceGroup.GetVirtualNetworks().Get(vnetName).Value.GetSubnets().GetAsync(subnetName); + Assert.IsNotNull(getSubnetResponse.Value.Data); + + // Create LocalNetworkGateway + string localNetworkGatewayName = Recording.GenerateAssetName("azsmnet"); + string gatewayIp = "192.168.3.4"; + + var localNetworkGateway = new LocalNetworkGatewayData() + { + Location = location, + Tags = { { "test", "value" } }, + GatewayIpAddress = gatewayIp, + LocalNetworkAddressSpace = new AddressSpace() + { + AddressPrefixes = { "192.168.0.0/16", } + } + }; + + var localNetworkGatewayContainer = resourceGroup.GetLocalNetworkGateways(); + var putLocalNetworkGatewayResponseOperation = await localNetworkGatewayContainer.CreateOrUpdateAsync(localNetworkGatewayName, localNetworkGateway); + Response putLocalNetworkGatewayResponse = await putLocalNetworkGatewayResponseOperation.WaitForCompletionAsync(); + Assert.AreEqual("Succeeded", putLocalNetworkGatewayResponse.Value.Data.ProvisioningState.ToString()); + Response getLocalNetworkGatewayResponse = await localNetworkGatewayContainer.GetAsync(localNetworkGatewayName); + + // Create PublicIpAddress + string publicIpName = Recording.GenerateAssetName("azsmnet"); + string domainNameLabel = Recording.GenerateAssetName("azsmnet"); + + PublicIPAddress nic1publicIp = await CreateDefaultPublicIpAddress(publicIpName, domainNameLabel, location, resourceGroup.GetPublicIPAddresses()); + Assert.IsNotNull(nic1publicIp.Data); + + // Create VirtualNetworkGateway + string virtualNetworkGatewayName = Recording.GenerateAssetName("azsmnet"); + string ipConfigName = Recording.GenerateAssetName("azsmnet"); + var virtualNetworkGateway = new VirtualNetworkGatewayData() + { + Location = location, + Tags = { { "key", "value" } }, + EnableBgp = false, + GatewayDefaultSite = new SubResource() + { + Id = getLocalNetworkGatewayResponse.Value.Id + }, + GatewayType = VirtualNetworkGatewayType.Vpn, + VpnType = VpnType.RouteBased, + IpConfigurations = + { + new VirtualNetworkGatewayIPConfiguration() + { + Name = ipConfigName, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + PublicIPAddress = new SubResource() + { + Id = nic1publicIp.Id + }, + Subnet = new SubResource() + { + Id = getSubnetResponse.Value.Id + } + } + } + }; + + var virtualNetworkGatewayContainer = resourceGroup.GetVirtualNetworkGateways(); + var putVirtualNetworkGatewayResponseOperation = await virtualNetworkGatewayContainer.CreateOrUpdateAsync(virtualNetworkGatewayName, virtualNetworkGateway); + Response putVirtualNetworkGatewayResponse = await putVirtualNetworkGatewayResponseOperation.WaitForCompletionAsync(); + Assert.AreEqual("Succeeded", putVirtualNetworkGatewayResponse.Value.Data.ProvisioningState.ToString()); + Response getVirtualNetworkGatewayResponse = await virtualNetworkGatewayContainer.GetAsync(virtualNetworkGatewayName); + Assert.NotNull(getVirtualNetworkGatewayResponse.Value.Data); + Assert.AreEqual(virtualNetworkGatewayName, getVirtualNetworkGatewayResponse.Value.Data.Name); + Assert.AreEqual(getVirtualNetworkGatewayResponse.Value.Data.GatewayDefaultSite.Id, getLocalNetworkGatewayResponse.Value.Id.ToString()); + + // Test: site-to-site connection + string VirtualNetworkGatewayConnectionName = Recording.GenerateAssetName("azsmnet"); + var virtualNetworkGatewayConneciton = new VirtualNetworkGatewayConnectionData(getVirtualNetworkGatewayResponse.Value.Data, VirtualNetworkGatewayConnectionType.IPsec) + { + Location = location, + LocalNetworkGateway2 = getLocalNetworkGatewayResponse.Value.Data, + RoutingWeight = 3, + SharedKey = "abc" + }; + + var virtualNetworkGatewayConnectionContainer = resourceGroup.GetVirtualNetworkGatewayConnections(); + var putVirtualNetworkGatewayConnectionResponseOperation = await virtualNetworkGatewayConnectionContainer.CreateOrUpdateAsync(VirtualNetworkGatewayConnectionName, virtualNetworkGatewayConneciton); + Response putVirtualNetworkGatewayConnectionResponse = await putVirtualNetworkGatewayConnectionResponseOperation.WaitForCompletionAsync(); + Assert.AreEqual("Succeeded", putVirtualNetworkGatewayConnectionResponse.Value.Data.ProvisioningState.ToString()); + + Response getVirtualNetworkGatewayConnectionResponse = await virtualNetworkGatewayConnectionContainer.GetAsync(VirtualNetworkGatewayConnectionName); + Assert.AreEqual(VirtualNetworkGatewayConnectionType.IPsec, getVirtualNetworkGatewayConnectionResponse.Value.Data.ConnectionType); + Assert.AreEqual(3, getVirtualNetworkGatewayConnectionResponse.Value.Data.RoutingWeight); + Assert.AreEqual("abc", getVirtualNetworkGatewayConnectionResponse.Value.Data.SharedKey); + + // Remove Default local network site + getVirtualNetworkGatewayResponse.Value.Data.GatewayDefaultSite = null; + putVirtualNetworkGatewayResponseOperation = await virtualNetworkGatewayContainer.CreateOrUpdateAsync(virtualNetworkGatewayName, getVirtualNetworkGatewayResponse.Value.Data); + putVirtualNetworkGatewayResponse = await putVirtualNetworkGatewayResponseOperation.WaitForCompletionAsync(); + Assert.AreEqual("Succeeded", putVirtualNetworkGatewayResponse.Value.Data.ProvisioningState.ToString()); + getVirtualNetworkGatewayResponse = await virtualNetworkGatewayContainer.GetAsync(virtualNetworkGatewayName); + Assert.Null(getVirtualNetworkGatewayResponse.Value.Data.GatewayDefaultSite); + + // Update SharedKeyAsync + //await virtualNetworkGatewayConnectionContainer.Get(VirtualNetworkGatewayConnectionName).Value.SetSharedKeyAsync(new ConnectionSharedKey("xyz")); + //Assert.AreEqual("xyz", getVirtualNetworkGatewayConnectionResponse.Value.Data.SharedKey); + + // Update RoutingWeight + virtualNetworkGatewayConneciton.RoutingWeight = 4; + putVirtualNetworkGatewayConnectionResponseOperation = await virtualNetworkGatewayConnectionContainer.CreateOrUpdateAsync(VirtualNetworkGatewayConnectionName, virtualNetworkGatewayConneciton); + putVirtualNetworkGatewayConnectionResponse = await putVirtualNetworkGatewayConnectionResponseOperation.WaitForCompletionAsync(); + Assert.AreEqual("Succeeded", putVirtualNetworkGatewayConnectionResponse.Value.Data.ProvisioningState.ToString()); + + getVirtualNetworkGatewayConnectionResponse = await virtualNetworkGatewayConnectionContainer.GetAsync(VirtualNetworkGatewayConnectionName); + Assert.AreEqual(4, getVirtualNetworkGatewayConnectionResponse.Value.Data.RoutingWeight); + + // Verify VirtualNetworkGateway Connections. + AsyncPageable listVirtualNetworkGatewayConectionResponseAP = virtualNetworkGatewayConnectionContainer.GetAllAsync(); + List listVirtualNetworkGatewayConectionResponse = await listVirtualNetworkGatewayConectionResponseAP.ToEnumerableAsync(); + Has.One.EqualTo(listVirtualNetworkGatewayConectionResponse); + Assert.AreEqual(VirtualNetworkGatewayConnectionName, listVirtualNetworkGatewayConectionResponse[0].Data.Name); + + // delete VirtualNetworkGatewayConnection + // TODO: use specif delete ADO 5998 + //VirtualNetworkGatewayConnectionDeleteOperation deleteOperation = await virtualNetworkGatewayConnectionContainer.StartDeleteAsync(VirtualNetworkGatewayConnectionName); + //var deleteOperation = await ArmClient.GetGenericResourceOperations(virtualNetworkGatewayListConnectionsResponse.First().ResourceGuid).StartDeleteAsync(); + //await deleteOperation.WaitForCompletionAsync(); + + //listVirtualNetworkGatewayConectionResponseAP = virtualNetworkGatewayConnectionContainer.GetAllAsync(); + //listVirtualNetworkGatewayConectionResponse = await listVirtualNetworkGatewayConectionResponseAP.ToEnumerableAsync(); + //Assert.IsEmpty(listVirtualNetworkGatewayConectionResponse); + } + + [Test] + [RecordedTest] + public async Task VnetGatewayConnectionVnetToVnetTest() + { + // 1.Create first Virtual Network Gateway. + string location1 = "eastus"; + string resourceGroupName1 = Recording.GenerateAssetName("csmrg"); + var resourceGroup1 = await CreateResourceGroup(resourceGroupName1, location1); + + // Create Vnet + string vnetName1 = Recording.GenerateAssetName("azsmnet"); + string subnetName1 = "GatewaySubnet"; + var vnetData1 = new VirtualNetworkData() + { + Location = location1, + AddressSpace = new AddressSpace() + { + AddressPrefixes = { "10.54.0.0/16", } + }, + Subnets = { new SubnetData() { Name = subnetName1, AddressPrefix = "10.54.0.0/24" } } + }; + var virtualNetworkContainer = resourceGroup1.GetVirtualNetworks(); + var putVnetResponseOperation = await virtualNetworkContainer.CreateOrUpdateAsync(vnetName1, vnetData1); + Response getSubnetResponse1 = await resourceGroup1.GetVirtualNetworks().Get(vnetName1).Value.GetSubnets().GetAsync(subnetName1); + + // Create PublicIpAddress + string publicIpName1 = Recording.GenerateAssetName("azsmnet"); + string domainNameLabel1 = Recording.GenerateAssetName("azsmnet"); + PublicIPAddress nic1publicIp1 = await CreateDefaultPublicIpAddress(publicIpName1, domainNameLabel1, location1, resourceGroup1.GetPublicIPAddresses()); + + // Create VirtualNetworkGateway + string virtualNetworkGatewayName1 = Recording.GenerateAssetName("azsmnet"); + string ipConfigName1 = Recording.GenerateAssetName("azsmnet"); + var virtualNetworkGateway1 = new VirtualNetworkGatewayData() + { + Location = location1, + Tags = { { "key", "value" } }, + EnableBgp = false, + GatewayType = VirtualNetworkGatewayType.Vpn, + VpnType = VpnType.RouteBased, + IpConfigurations = + { + new VirtualNetworkGatewayIPConfiguration() + { + Name = ipConfigName1, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + PublicIPAddress = new SubResource() + { + Id = nic1publicIp1.Id + }, + Subnet = new SubResource() + { + Id = getSubnetResponse1.Value.Id + } + } + } + }; + + var virtualNetworkGatewayContainer1 = resourceGroup1.GetVirtualNetworkGateways(); + var putVirtualNetworkGatewayResponseOperation1 = await virtualNetworkGatewayContainer1.CreateOrUpdateAsync(virtualNetworkGatewayName1, virtualNetworkGateway1); + await putVirtualNetworkGatewayResponseOperation1.WaitForCompletionAsync(); + + // 2.Create second Virtual Network Gateway. + string location2 = "westus2"; + string resourceGroupName2 = Recording.GenerateAssetName("csmrg"); + var resourceGroup2 = await CreateResourceGroup(resourceGroupName2, location2); + + // Create Vnet + string vnetName2 = Recording.GenerateAssetName("azsmnet"); + string subnetName2 = "GatewaySubnet"; + var vnetData2 = new VirtualNetworkData() + { + Location = location2, + AddressSpace = new AddressSpace() + { + AddressPrefixes = { "10.55.0.0/16", } + }, + Subnets = { new SubnetData() { Name = subnetName2, AddressPrefix = "10.55.0.0/24", } } + }; + var virtualNetworkContainer2 = resourceGroup2.GetVirtualNetworks(); + var putVnetResponseOperation2 = await virtualNetworkContainer2.CreateOrUpdateAsync(vnetName2, vnetData2); + Response getSubnetResponse2 = await resourceGroup2.GetVirtualNetworks().Get(vnetName2).Value.GetSubnets().GetAsync(subnetName2); + + // Create PublicIpAddress + string publicIpName2 = Recording.GenerateAssetName("azsmnet"); + string domainNameLabel2 = Recording.GenerateAssetName("azsmnet"); + PublicIPAddress nic2publicIp2 = await CreateDefaultPublicIpAddress(publicIpName2, domainNameLabel2, location2, resourceGroup2.GetPublicIPAddresses()); + + // Create VirtualNetworkGateway + string virtualNetworkGatewayName2 = Recording.GenerateAssetName("azsmnet"); + string ipConfigName2 = Recording.GenerateAssetName("azsmnet"); + var virtualNetworkGateway2 = new VirtualNetworkGatewayData() + { + Location = location2, + Tags = { { "key", "value" } }, + EnableBgp = false, + GatewayType = VirtualNetworkGatewayType.Vpn, + VpnType = VpnType.RouteBased, + IpConfigurations = + { + new VirtualNetworkGatewayIPConfiguration() + { + Name = ipConfigName2, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + PublicIPAddress = new SubResource() + { + Id = nic2publicIp2.Id + }, + Subnet = new SubResource() + { + Id = getSubnetResponse2.Value.Id + } + } + } + }; + + var virtualNetworkGatewayContainer2 = resourceGroup2.GetVirtualNetworkGateways(); + var putVirtualNetworkGatewayResponseOperation2 = await virtualNetworkGatewayContainer2.CreateOrUpdateAsync(virtualNetworkGatewayName2, virtualNetworkGateway2); + await putVirtualNetworkGatewayResponseOperation2.WaitForCompletionAsync(); + + // 3.Test: Vnet-to-Vnet Connections + Response getVirtualNetworkGateway1 = await virtualNetworkGatewayContainer1.GetAsync(virtualNetworkGatewayName1); + Response getVirtualNetworkGateway2 = await virtualNetworkGatewayContainer2.GetAsync(virtualNetworkGatewayName2); + + string ConnectionName1 = Recording.GenerateAssetName("azsmnet"); + var virtualNetworkGatewayConneciton1 = new VirtualNetworkGatewayConnectionData(getVirtualNetworkGateway1.Value.Data, VirtualNetworkGatewayConnectionType.Vnet2Vnet) + { + Location = location1, + RoutingWeight = 3, + VirtualNetworkGateway1 = getVirtualNetworkGateway1.Value.Data, + VirtualNetworkGateway2 = getVirtualNetworkGateway2.Value.Data, + SharedKey = "abc123" + }; + + var virtualNetworkGatewayConnectionContainer1 = resourceGroup1.GetVirtualNetworkGatewayConnections(); + var putVirtualNetworkGatewayConnectionResponseOperation1 = await virtualNetworkGatewayConnectionContainer1.CreateOrUpdateAsync(ConnectionName1, virtualNetworkGatewayConneciton1); + Response putVirtualNetworkGatewayConnectionResponse1 = await putVirtualNetworkGatewayConnectionResponseOperation1.WaitForCompletionAsync(); + Response getVirtualNetworkGatewayConnectionResponse1 = await virtualNetworkGatewayConnectionContainer1.GetAsync(ConnectionName1); + Assert.AreEqual(ConnectionName1, getVirtualNetworkGatewayConnectionResponse1.Value.Data.Name); + Assert.AreEqual("Vnet2Vnet", getVirtualNetworkGatewayConnectionResponse1.Value.Data.ConnectionType.ToString()); + Assert.AreEqual("abc123", getVirtualNetworkGatewayConnectionResponse1.Value.Data.SharedKey); + Assert.AreEqual(getVirtualNetworkGateway2.Value.Id.ToString(), getVirtualNetworkGatewayConnectionResponse1.Value.Data.VirtualNetworkGateway2.Id.ToString()); + + string ConnectionName2 = Recording.GenerateAssetName("azsmnet"); + var virtualNetworkGatewayConneciton2 = new VirtualNetworkGatewayConnectionData(getVirtualNetworkGateway1.Value.Data, VirtualNetworkGatewayConnectionType.Vnet2Vnet) + { + Location = location1, + RoutingWeight = 3, + VirtualNetworkGateway1 = getVirtualNetworkGateway1.Value.Data, + VirtualNetworkGateway2 = getVirtualNetworkGateway2.Value.Data, + SharedKey = "abc123" + }; + + var virtualNetworkGatewayConnectionContainer2 = resourceGroup1.GetVirtualNetworkGatewayConnections(); + var putVirtualNetworkGatewayConnectionResponseOperation2 = await virtualNetworkGatewayConnectionContainer2.CreateOrUpdateAsync(ConnectionName2, virtualNetworkGatewayConneciton2); + Response putVirtualNetworkGatewayConnectionResponse2 = await putVirtualNetworkGatewayConnectionResponseOperation2.WaitForCompletionAsync(); + Response getVirtualNetworkGatewayConnectionResponse2 = await virtualNetworkGatewayConnectionContainer2.GetAsync(ConnectionName1); + Assert.AreEqual(ConnectionName2, getVirtualNetworkGatewayConnectionResponse2.Value.Data.Name); + Assert.AreEqual("Vnet2Vnet", getVirtualNetworkGatewayConnectionResponse1.Value.Data.ConnectionType.ToString()); + Assert.AreEqual("abc123", getVirtualNetworkGatewayConnectionResponse1.Value.Data.SharedKey); + Assert.AreEqual(getVirtualNetworkGateway1.Value.Id.ToString(), getVirtualNetworkGatewayConnectionResponse1.Value.Data.VirtualNetworkGateway2.Id.ToString()); + } + // Tests Resource:-VirtualNetworkGateway 6 APIs:- [Test] [Ignore("TODO: TRACK2 - Might be test framework issue")] @@ -284,7 +665,7 @@ public async Task VirtualNetworkGatewayConnectionWithBgpTest() string vnetName = Recording.GenerateAssetName("azsmnet"); string subnetName = "GatewaySubnet"; - await CreateVirtualNetwork(vnetName, subnetName, location,resourceGroup.GetVirtualNetworks()); + await CreateVirtualNetwork(vnetName, subnetName, location, resourceGroup.GetVirtualNetworks()); Response getSubnetResponse = await resourceGroup.GetVirtualNetworks().Get(vnetName).Value.GetSubnets().GetAsync(subnetName); Console.WriteLine("Virtual Network GatewaySubnet Id: {0}", getSubnetResponse.Value.Id); From 7e3017a4ab9f02883e367a4d126df9238274cbfb Mon Sep 17 00:00:00 2001 From: dvbb <61542202+dvbb@users.noreply.github.com> Date: Tue, 24 Aug 2021 14:36:02 +0800 Subject: [PATCH 2/3] solve comments --- .../VNetworkGatewayBaseTest.json | 34117 ++++++++ .../VnetGatewayBaseTest.json | 68802 ++++++++++++++++ .../VnetGatewayConnectionSiteToSiteTest.json | 37684 +++++++++ .../tests/Tests/GatewayOperationsTests.cs | 1 + 4 files changed, 140604 insertions(+) create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VNetworkGatewayBaseTest.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayBaseTest.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionSiteToSiteTest.json diff --git a/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VNetworkGatewayBaseTest.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VNetworkGatewayBaseTest.json new file mode 100644 index 000000000000..ce829cb7ea8f --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VNetworkGatewayBaseTest.json @@ -0,0 +1,34117 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ceb96351874487200618cd0923d5bb1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "065dd038-7a7f-4288-a4f0-f42187357397", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "065dd038-7a7f-4288-a4f0-f42187357397", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061032Z:065dd038-7a7f-4288-a4f0-f42187357397" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/csmrg5651?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "32", + "Content-Type": "application/json", + "traceparent": "00-eb18632341b83546a87bb60f758c1762-b110a5dfd6b0fa49-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96f189e0c4c0fdcb63b9b412ffd36aec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "15c764f8-7b76-4a42-acde-8665b53eb8aa", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "15c764f8-7b76-4a42-acde-8665b53eb8aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061034Z:15c764f8-7b76-4a42-acde-8665b53eb8aa" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651", + "name": "csmrg5651", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "243", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "64b5213917c61af6a10ed3c0b95b150c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "dhcpOptions": { + "dnsServers": [ + "10.1.1.1", + "10.1.2.4" + ] + }, + "subnets": [ + { + "name": "GatewaySubnet", + "id": null, + "properties": { + "addressPrefix": "10.0.0.0/24" + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a6e5aeca-29ee-41b5-b564-094e6e3601e9?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1336", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "3", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c76d7e3-31fe-444b-8a22-68c752c31397", + "x-ms-client-request-id": "64b5213917c61af6a10ed3c0b95b150c", + "x-ms-correlation-request-id": "30061a57-a589-484c-918c-da819c37a465", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "a6e5aeca-29ee-41b5-b564-094e6e3601e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061039Z:30061a57-a589-484c-918c-da819c37a465" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet4208\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221a87a54b-01a1-4eff-8c74-ea3e713b51f2\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022bf5c4bd0-8531-4656-8903-5e02cf0725ff\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221a87a54b-01a1-4eff-8c74-ea3e713b51f2\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "999c5f1cf964711afa7b1fb6f83ca95e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1336", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:39 GMT", + "ETag": "W/\u00221a87a54b-01a1-4eff-8c74-ea3e713b51f2\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1204082d-dcfe-4f40-8023-8814780abe52", + "x-ms-client-request-id": "999c5f1cf964711afa7b1fb6f83ca95e", + "x-ms-correlation-request-id": "a50ddd34-f3bc-4179-8bd0-3ccf6c938fb5", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "04db53b9-62db-496b-8ede-cd305f173a4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061039Z:a50ddd34-f3bc-4179-8bd0-3ccf6c938fb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet4208\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221a87a54b-01a1-4eff-8c74-ea3e713b51f2\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022bf5c4bd0-8531-4656-8903-5e02cf0725ff\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221a87a54b-01a1-4eff-8c74-ea3e713b51f2\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e601069e6f4ca9c983c794e44989a59a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1338", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:39 GMT", + "ETag": "W/\u002234119165-2604-4353-a812-2b8476552d4d\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12dffc98-60cd-421e-a0a3-cefb13d5348e", + "x-ms-client-request-id": "e601069e6f4ca9c983c794e44989a59a", + "x-ms-correlation-request-id": "6735b742-f82a-4f5e-8768-b3b1ea49c5fe", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "8f20b4dc-b684-44ab-9915-15721391c3ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061040Z:6735b742-f82a-4f5e-8768-b3b1ea49c5fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet4208\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002234119165-2604-4353-a812-2b8476552d4d\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022bf5c4bd0-8531-4656-8903-5e02cf0725ff\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002234119165-2604-4353-a812-2b8476552d4d\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5aa470c97cbe04a7d2ac837e71e7f593", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "538", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:39 GMT", + "ETag": "W/\u002234119165-2604-4353-a812-2b8476552d4d\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88988347-1dfe-4436-a800-d8a4380b411b", + "x-ms-client-request-id": "5aa470c97cbe04a7d2ac837e71e7f593", + "x-ms-correlation-request-id": "44669bf8-e206-48e2-80fa-b8bf6b9caf06", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "ab7009f4-08bd-4269-b4fc-937f87bfca93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061040Z:44669bf8-e206-48e2-80fa-b8bf6b9caf06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002234119165-2604-4353-a812-2b8476552d4d\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "170", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "056ece6f165e95acf3159d65352870d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "test": "value" + }, + "id": null, + "properties": { + "localNetworkAddressSpace": { + "addressPrefixes": [ + "192.168.0.0/16" + ] + }, + "gatewayIpAddress": "192.168.3.4" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/df8693ee-4323-4da2-9c9f-1685555e7e5a?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "624", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ebf66253-8cc3-4c09-b439-ed81ed9e8fa8", + "x-ms-client-request-id": "056ece6f165e95acf3159d65352870d6", + "x-ms-correlation-request-id": "22298f94-e765-4fa8-a6e3-7dd6c3feba10", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "df8693ee-4323-4da2-9c9f-1685555e7e5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061044Z:22298f94-e765-4fa8-a6e3-7dd6c3feba10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8709\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022a7806d56-3eb9-4cf1-b8a8-86850fd8f313\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/localNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022test\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022957fd839-c153-4c5a-a70b-532e6cf591fb\u0022,\r\n", + " \u0022localNetworkAddressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u0022192.168.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayIpAddress\u0022: \u0022192.168.3.4\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/df8693ee-4323-4da2-9c9f-1685555e7e5a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbdaad019536596af7c4cb670a9f9d83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "216d0b54-878e-450e-b3fa-92b74c84c14a", + "x-ms-client-request-id": "bbdaad019536596af7c4cb670a9f9d83", + "x-ms-correlation-request-id": "9d5454d8-7735-4206-8cef-dcd6dd8932a9", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "a3a3b00b-e578-4b92-82a2-b55f5224d316", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061044Z:9d5454d8-7735-4206-8cef-dcd6dd8932a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/df8693ee-4323-4da2-9c9f-1685555e7e5a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "faeca812fa6dcfe8ac10084a75c04abb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09727959-5033-4a49-b9a1-bcc21a3f70cc", + "x-ms-client-request-id": "faeca812fa6dcfe8ac10084a75c04abb", + "x-ms-correlation-request-id": "081496ff-ccf3-4614-a6f9-505d01e44fa5", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "7ed1bc44-7129-42de-baba-fc6385bdfc87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061046Z:081496ff-ccf3-4614-a6f9-505d01e44fa5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/df8693ee-4323-4da2-9c9f-1685555e7e5a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8863ca79b54defa0822ea08ad4bb535c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5cb6e28-03ed-4299-9295-43d4794c804e", + "x-ms-client-request-id": "8863ca79b54defa0822ea08ad4bb535c", + "x-ms-correlation-request-id": "8961f97a-a73f-45c8-884f-effae61e6ef7", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "b1ec6099-42c4-4415-a299-28e41481de65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061047Z:8961f97a-a73f-45c8-884f-effae61e6ef7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/df8693ee-4323-4da2-9c9f-1685555e7e5a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2da1c76a24b0665c40b0f258c20e436", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6817d7c9-e8ca-4c6c-949b-e1c1bdf16ac2", + "x-ms-client-request-id": "a2da1c76a24b0665c40b0f258c20e436", + "x-ms-correlation-request-id": "ad57996f-0871-425a-9c57-61f40537fbbc", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "fe5a3b26-c763-41cc-b5cc-8c3b7187855f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061048Z:ad57996f-0871-425a-9c57-61f40537fbbc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40ed107a153c5c3608fd773e595dfaf1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "625", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:48 GMT", + "ETag": "W/\u00223d70fad8-e03d-4d4e-b5bd-6d278e80d635\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "295fe698-18b5-4a81-b96c-22b0ba48bbb9", + "x-ms-client-request-id": "40ed107a153c5c3608fd773e595dfaf1", + "x-ms-correlation-request-id": "631961b3-4c39-4e2b-ac66-9d1778c83475", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "bda11df5-ff53-48af-a77b-170264ffe4a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061049Z:631961b3-4c39-4e2b-ac66-9d1778c83475" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8709\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00223d70fad8-e03d-4d4e-b5bd-6d278e80d635\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/localNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022test\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022957fd839-c153-4c5a-a70b-532e6cf591fb\u0022,\r\n", + " \u0022localNetworkAddressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u0022192.168.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayIpAddress\u0022: \u0022192.168.3.4\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58d4acbda8e6d66f655dc341a67a6262", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "625", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:48 GMT", + "ETag": "W/\u00223d70fad8-e03d-4d4e-b5bd-6d278e80d635\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86efc331-11cf-414c-b67c-35fabf39cc9e", + "x-ms-client-request-id": "58d4acbda8e6d66f655dc341a67a6262", + "x-ms-correlation-request-id": "87a77fe8-a8ff-47c2-b6aa-b4e5fa898221", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "91477c3b-f279-40fd-b502-4555c21de0e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061049Z:87a77fe8-a8ff-47c2-b6aa-b4e5fa898221" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8709\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00223d70fad8-e03d-4d4e-b5bd-6d278e80d635\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/localNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022test\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022957fd839-c153-4c5a-a70b-532e6cf591fb\u0022,\r\n", + " \u0022localNetworkAddressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u0022192.168.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayIpAddress\u0022: \u0022192.168.3.4\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13cdc41061207de69a4e2b26ac67111d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "publicIPAllocationMethod": "Dynamic", + "dnsSettings": { + "domainNameLabel": "azsmnet8658" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be314687-6015-442b-9643-41f782de543f?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "796", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "1", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "07fd011f-6736-4666-8315-176414a9ed30", + "x-ms-client-request-id": "13cdc41061207de69a4e2b26ac67111d", + "x-ms-correlation-request-id": "14acf30e-badc-4507-aec5-0226b4468477", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "be314687-6015-442b-9643-41f782de543f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061052Z:14acf30e-badc-4507-aec5-0226b4468477" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8600\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00224409b48a-f8c2-4b52-a1e5-ec7a3686564e\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022b5c87c68-31b0-40b8-a52a-cdb2e75457fa\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet8658\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet8658.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/be314687-6015-442b-9643-41f782de543f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "354deff4a924738b72690e21ab3eb05c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5659f939-d652-4b18-9320-0c21459c11cb", + "x-ms-client-request-id": "354deff4a924738b72690e21ab3eb05c", + "x-ms-correlation-request-id": "c2efb9d2-cba7-4135-bf4c-71c4d22d3c1a", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "8a3855e9-6819-40f1-bcf8-eb67174a797e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061053Z:c2efb9d2-cba7-4135-bf4c-71c4d22d3c1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81128830bd163e1924b638410ff1c60c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "797", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:52 GMT", + "ETag": "W/\u00221420e676-01c6-438f-a47d-55d77d976f6a\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1a4571d2-24ae-4d77-b251-729d2adc309d", + "x-ms-client-request-id": "81128830bd163e1924b638410ff1c60c", + "x-ms-correlation-request-id": "c708006f-b60e-4b30-98cf-33a998ca0f66", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "1c8cd52c-66b9-4575-a9e0-8078cba72129", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061053Z:c708006f-b60e-4b30-98cf-33a998ca0f66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8600\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221420e676-01c6-438f-a47d-55d77d976f6a\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022b5c87c68-31b0-40b8-a52a-cdb2e75457fa\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet8658\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet8658.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc3216b3db1abef955d819e7c37f6b9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "797", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:52 GMT", + "ETag": "W/\u00221420e676-01c6-438f-a47d-55d77d976f6a\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc0d8840-a7c2-4110-b27a-38bfcba7787e", + "x-ms-client-request-id": "bc3216b3db1abef955d819e7c37f6b9b", + "x-ms-correlation-request-id": "8f8ed083-0650-41d0-ac83-9959f59f61aa", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "40777a4b-c804-41a4-a9cf-989a6e94e795", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061053Z:8f8ed083-0650-41d0-ac83-9959f59f61aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8600\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221420e676-01c6-438f-a47d-55d77d976f6a\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022b5c87c68-31b0-40b8-a52a-cdb2e75457fa\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet8658\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet8658.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "741", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a7a2ec436fd0ed6116e70496380a201", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet9714", + "id": null, + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "enableBgp": false, + "gatewayDefaultSite": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2725", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ea79d56-ad49-45f6-a821-4fed76a86e1b", + "x-ms-client-request-id": "1a7a2ec436fd0ed6116e70496380a201", + "x-ms-correlation-request-id": "f952dd20-a0a8-43e3-ac28-989f379aaa81", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "172d0f23-9cd3-4ea0-8896-87ec5c50af8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061057Z:f952dd20-a0a8-43e3-ac28-989f379aaa81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8546\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022b6a52247-8677-4b5a-854b-b256ee84040b\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022730d82d1-5137-4087-a29d-27a7c16f0bb6\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9714\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022b6a52247-8677-4b5a-854b-b256ee84040b\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022SSTP\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 0,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [],\r\n", + " \u0022customBgpIpAddresses\u0022: []\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayDefaultSite\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "982d1a139891fb18e60bc98b4d0b7599", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6eb6fde3-f06c-4b25-bb24-2aaad80d6be3", + "x-ms-client-request-id": "982d1a139891fb18e60bc98b4d0b7599", + "x-ms-correlation-request-id": "24642100-8e74-45e5-8549-3095c117c352", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "17f90add-d904-4272-bb11-d89c509265c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061057Z:24642100-8e74-45e5-8549-3095c117c352" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d511c244398f6eb29e26edbf92a4936c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db73fc14-2fb6-4d6a-a43b-826a65253531", + "x-ms-client-request-id": "d511c244398f6eb29e26edbf92a4936c", + "x-ms-correlation-request-id": "8a22f184-453b-4744-9ea4-752ced0be9e8", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "3ed0f08c-eded-4298-8cec-6aed947f5843", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061058Z:8a22f184-453b-4744-9ea4-752ced0be9e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4836d4230a53d56f7c110e368b040620", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:10:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b87d9ee-5bb3-427a-9a34-30c197e60394", + "x-ms-client-request-id": "4836d4230a53d56f7c110e368b040620", + "x-ms-correlation-request-id": "11a421be-874d-4286-bf7e-9ed188241c4c", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "e7b3f92c-a7ec-440f-b06b-7bb18c688a13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061100Z:11a421be-874d-4286-bf7e-9ed188241c4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8ee0ac87493da0d68bef96bab596841", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f431a53-9744-4541-bb04-77dfa1409d49", + "x-ms-client-request-id": "b8ee0ac87493da0d68bef96bab596841", + "x-ms-correlation-request-id": "2fdf85f4-0fb6-4ed8-a125-779dbd3170a9", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "57dfeeee-89a9-4114-959d-68040bbd5276", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061101Z:2fdf85f4-0fb6-4ed8-a125-779dbd3170a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79675c772cd53945533c597d2b7be29a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c510396-5a66-4b0a-9fa4-8aad7fba6d1c", + "x-ms-client-request-id": "79675c772cd53945533c597d2b7be29a", + "x-ms-correlation-request-id": "cab77825-f0ac-4752-838e-de39d18a629b", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "8858ac4b-ec7e-44c6-a4f2-0d362db71d29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061102Z:cab77825-f0ac-4752-838e-de39d18a629b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87f6cd20dbb6aed9c65be09410042a22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a715d99f-11db-4b2d-b243-49e81e8d4118", + "x-ms-client-request-id": "87f6cd20dbb6aed9c65be09410042a22", + "x-ms-correlation-request-id": "77f84453-81a6-42db-bcec-40a0449cc6ff", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "595316c3-d0bb-4054-a8a0-640f25200468", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061103Z:77f84453-81a6-42db-bcec-40a0449cc6ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fbecca98d9c9b4bc5b465571b8faeec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca07f2b0-4c67-4008-bf11-344d8976efdb", + "x-ms-client-request-id": "2fbecca98d9c9b4bc5b465571b8faeec", + "x-ms-correlation-request-id": "96ba19be-4a8d-4e07-aebd-5a675cb5d5fa", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "163f1053-bef9-4188-813d-7c01980bc675", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061105Z:96ba19be-4a8d-4e07-aebd-5a675cb5d5fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd4b5edbe0629c8b83b9b2794cb1284f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "336ab3cd-f1b5-4c14-b7b8-4bec8c7749d0", + "x-ms-client-request-id": "dd4b5edbe0629c8b83b9b2794cb1284f", + "x-ms-correlation-request-id": "ebadd062-a2b0-4a4c-a1f8-b1eee1740e0b", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "a9b9c420-c85d-4f4c-a9fa-57d4d40421b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061106Z:ebadd062-a2b0-4a4c-a1f8-b1eee1740e0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fd43612b3bc92fe815bc20176829336", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d4ca909-eab9-438a-8e2e-1f067e8b0039", + "x-ms-client-request-id": "5fd43612b3bc92fe815bc20176829336", + "x-ms-correlation-request-id": "027ca190-a584-4b34-8d61-02e8ac428e00", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "6827bb71-d7de-46d4-8a68-86cd8d1ab515", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061107Z:027ca190-a584-4b34-8d61-02e8ac428e00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1b8f3ad4cb8c8c04022ace2dad24f14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fcc9ed63-0759-4813-b323-83380f684e3a", + "x-ms-client-request-id": "b1b8f3ad4cb8c8c04022ace2dad24f14", + "x-ms-correlation-request-id": "962ae4ca-8c8e-4d13-8dbe-649d20147004", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "7f05385e-cec7-4f14-a97a-1ab0f60860a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061109Z:962ae4ca-8c8e-4d13-8dbe-649d20147004" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e445158b4fbb282f60b85c071d8a2601", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8dc9b2c3-6502-4b85-833b-11f019023038", + "x-ms-client-request-id": "e445158b4fbb282f60b85c071d8a2601", + "x-ms-correlation-request-id": "a23a4a4a-7946-4ef9-9156-9e532bf47f08", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "e8581729-4bd9-4554-9a16-0ff660b459b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061110Z:a23a4a4a-7946-4ef9-9156-9e532bf47f08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59cc7c2676f8c696760b1e9a071bb8ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8438783c-ff40-4f07-a150-137f6636e324", + "x-ms-client-request-id": "59cc7c2676f8c696760b1e9a071bb8ae", + "x-ms-correlation-request-id": "219a2eb3-c59f-4ba9-b6d8-a0e2c9419591", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "770f939e-9bf8-4eba-a91c-d9fb77938c54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061111Z:219a2eb3-c59f-4ba9-b6d8-a0e2c9419591" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6075ae0cae3d5d7bc3905100efb8abb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f569305-6c6a-4d4c-b916-ddfc707cc494", + "x-ms-client-request-id": "6075ae0cae3d5d7bc3905100efb8abb6", + "x-ms-correlation-request-id": "55e1544e-c4c9-4361-a577-77e67f4498be", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "b5768c7a-8063-41e6-817d-c6edc282d1d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061112Z:55e1544e-c4c9-4361-a577-77e67f4498be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ebcabfbf606141b7f7e6daf30952044", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a488bcc5-1a34-4e52-8b90-45198db88d6e", + "x-ms-client-request-id": "5ebcabfbf606141b7f7e6daf30952044", + "x-ms-correlation-request-id": "e73fb591-4dc5-462a-bec3-fca5e6242da5", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "e4e12497-7613-4568-a1ae-547d75ee887d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061114Z:e73fb591-4dc5-462a-bec3-fca5e6242da5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6efbaeffc61477c3006e95672595d7be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7bbf113e-2b3c-4014-b97d-8b78b3120468", + "x-ms-client-request-id": "6efbaeffc61477c3006e95672595d7be", + "x-ms-correlation-request-id": "5ad7e53d-32c2-4f55-8b84-a93e247a88bc", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "09e2757c-366c-415f-824e-91d3bd4de4af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061115Z:5ad7e53d-32c2-4f55-8b84-a93e247a88bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c9e68605a5f15a89260e0be40cc2d2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1bf7072f-f5f7-45e0-a65c-c7b07a6d3632", + "x-ms-client-request-id": "5c9e68605a5f15a89260e0be40cc2d2e", + "x-ms-correlation-request-id": "94f01a35-ece9-4e1a-9725-5c084e88bd46", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "35e96866-8f30-42fc-8c06-86e4616b869d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061116Z:94f01a35-ece9-4e1a-9725-5c084e88bd46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40010c6f3cbd35a2e7445d9760b4efea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "341aec22-4a53-4d3a-af38-2cbeb86472e8", + "x-ms-client-request-id": "40010c6f3cbd35a2e7445d9760b4efea", + "x-ms-correlation-request-id": "23db1737-4c77-4d93-80d4-5d656aae3836", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "ba9c8659-9697-4dbd-b059-4e83313f264f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061117Z:23db1737-4c77-4d93-80d4-5d656aae3836" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c84fafa7c4f6a4e505e5dcb3e5053734", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36cd0e36-edc8-48b1-9af9-7d4a65dec754", + "x-ms-client-request-id": "c84fafa7c4f6a4e505e5dcb3e5053734", + "x-ms-correlation-request-id": "354f90ac-66fe-4d3a-a582-b2b6a10ba1ae", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "9c9e3411-2ee6-4fc2-8e10-ae0e812c7d30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061119Z:354f90ac-66fe-4d3a-a582-b2b6a10ba1ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18f7674196942301c568751afd10b5de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75d018fb-3cb3-4728-acb5-1fc3dfd08eca", + "x-ms-client-request-id": "18f7674196942301c568751afd10b5de", + "x-ms-correlation-request-id": "72219948-3831-46d1-b250-7d899cf9ea84", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "c446d3ed-95e7-434e-a46b-e82fb7a6c34a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061120Z:72219948-3831-46d1-b250-7d899cf9ea84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9016f671647dab37275c3bd760ee50e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef70efd1-e48b-47e3-8f6a-9586198741bf", + "x-ms-client-request-id": "9016f671647dab37275c3bd760ee50e1", + "x-ms-correlation-request-id": "e75f2caf-05af-4b26-a07d-ba094ce61270", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "0f8174fe-96fc-47a0-ad5f-6f6f07f4dd87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061121Z:e75f2caf-05af-4b26-a07d-ba094ce61270" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f956290dd6bc1155ae2b028d4ecaa7f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e1af2d51-d0e0-4721-b9ea-39e580090add", + "x-ms-client-request-id": "f956290dd6bc1155ae2b028d4ecaa7f5", + "x-ms-correlation-request-id": "c2246af2-836d-4950-97cb-a1ddefa6406c", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "7448c130-af87-4339-be93-5df6c9172c7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061123Z:c2246af2-836d-4950-97cb-a1ddefa6406c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee42fe30a6efddb72f4bf1375a29c3d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4d9e995-0ecf-412e-85e9-dade28a50def", + "x-ms-client-request-id": "ee42fe30a6efddb72f4bf1375a29c3d7", + "x-ms-correlation-request-id": "beb486fc-1557-4b74-9bc9-f78d8b6fb207", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "c6a0fb96-d38d-4869-8fa0-2f23a1582f50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061124Z:beb486fc-1557-4b74-9bc9-f78d8b6fb207" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d30d9418bbb99a21a004e15161a95c5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f75c5fa-9a1e-43a5-b2c6-576b900a6fa0", + "x-ms-client-request-id": "d30d9418bbb99a21a004e15161a95c5c", + "x-ms-correlation-request-id": "3446cf49-259a-474c-8a03-545d43e06250", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "601c547d-b9c3-402e-89ee-215d3c7fd1f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061125Z:3446cf49-259a-474c-8a03-545d43e06250" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62a745b562ac66f27279c970e41eb685", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54116ddf-aa54-4d3b-9a91-0e54acba8aee", + "x-ms-client-request-id": "62a745b562ac66f27279c970e41eb685", + "x-ms-correlation-request-id": "bbb8c75d-47aa-44de-9de2-a1835b663240", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "664f128f-c21c-46ea-b063-e08afa52c0f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061126Z:bbb8c75d-47aa-44de-9de2-a1835b663240" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba752b67d3bd743bdca74deac4657b85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8cd76c2-0c92-4087-8c5f-dfd8aa482822", + "x-ms-client-request-id": "ba752b67d3bd743bdca74deac4657b85", + "x-ms-correlation-request-id": "3a31ed16-8262-4a6c-95aa-ddc4641132cc", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "dc83f16d-0bd7-46d4-8799-53f8c1e674f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061128Z:3a31ed16-8262-4a6c-95aa-ddc4641132cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "158295ef6182b62aa1a66140f1b0b582", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6501726f-a49b-4c9b-8447-85ae7bf0acb9", + "x-ms-client-request-id": "158295ef6182b62aa1a66140f1b0b582", + "x-ms-correlation-request-id": "3c12b475-d649-4315-b4d5-943462cc21c4", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "e3d72a27-b9c9-444e-bcfc-1e1785860257", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061129Z:3c12b475-d649-4315-b4d5-943462cc21c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35e95c4da234e19f093285051407a10d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e3d0b86-db48-4669-b294-a90af60e0af2", + "x-ms-client-request-id": "35e95c4da234e19f093285051407a10d", + "x-ms-correlation-request-id": "41369669-b3d9-42e9-b8a1-256a2084d25a", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "248a3d40-7fc4-426e-a403-f16c18f73ab2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061130Z:41369669-b3d9-42e9-b8a1-256a2084d25a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f8143fda19c060201bf191672fb822c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d3c3f37-e4f9-476f-9e1c-b0f81b61593d", + "x-ms-client-request-id": "4f8143fda19c060201bf191672fb822c", + "x-ms-correlation-request-id": "4eb0c41e-fdbc-47c3-99bc-5a9e9fddb466", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "709fd710-4495-41ed-9250-b6aee4860571", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061131Z:4eb0c41e-fdbc-47c3-99bc-5a9e9fddb466" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "689ccaf1457b4c51f6a00b4fdc24a19a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e739fa8-75a0-4489-8b6e-7d0461f556f5", + "x-ms-client-request-id": "689ccaf1457b4c51f6a00b4fdc24a19a", + "x-ms-correlation-request-id": "38c6bf7c-2c70-4972-aa94-85278db8ecc9", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "8559225a-7486-4f3e-964d-1c452cbaf043", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061133Z:38c6bf7c-2c70-4972-aa94-85278db8ecc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad425405662eace55ae3347589886e0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a0db95b-ec24-472a-a348-9a7678d4909b", + "x-ms-client-request-id": "ad425405662eace55ae3347589886e0e", + "x-ms-correlation-request-id": "2e71d16f-1d4e-424d-a12c-26b54d814731", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "f29ac62f-e45d-4989-90a9-878fa7287ea5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061134Z:2e71d16f-1d4e-424d-a12c-26b54d814731" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "491458af396ab891f23459fb95b22adc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9b58138-f2c0-4b29-a54c-1b53043db96c", + "x-ms-client-request-id": "491458af396ab891f23459fb95b22adc", + "x-ms-correlation-request-id": "f5315f4f-01a4-4a32-917f-d38448d37508", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "bd874230-f10f-4d9d-af0e-c8085863313c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061135Z:f5315f4f-01a4-4a32-917f-d38448d37508" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e117e1dd4b88bfde4f00d9811dcc36d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "492213cb-58d2-4222-8128-c720df2892c6", + "x-ms-client-request-id": "1e117e1dd4b88bfde4f00d9811dcc36d", + "x-ms-correlation-request-id": "d13c159f-e513-4e1b-9bfb-241dd9aa8cea", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "703ad521-8fbc-4e64-ae71-83d0e00f3b99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061137Z:d13c159f-e513-4e1b-9bfb-241dd9aa8cea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "839ffd315710cb2fc28abbf90cea16a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d58831cf-1882-4e3f-98a6-28fb129634cd", + "x-ms-client-request-id": "839ffd315710cb2fc28abbf90cea16a7", + "x-ms-correlation-request-id": "73616543-aed8-4f36-98e3-de8254344158", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "68efa0c9-c282-4dda-9ee4-0fa2276b4e6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061138Z:73616543-aed8-4f36-98e3-de8254344158" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a5757b95077db555b88647a2bf8a715", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a907aecf-c387-42ce-937e-a8e318d26160", + "x-ms-client-request-id": "0a5757b95077db555b88647a2bf8a715", + "x-ms-correlation-request-id": "7850762d-cdaf-4a4b-b419-1b826b05fd02", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "34b78a7a-938c-4f0e-bb24-ae58a837793d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061139Z:7850762d-cdaf-4a4b-b419-1b826b05fd02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98c9eb70a612c5cb4f465b2e19047efa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e85ec33-8fcc-43be-9642-f7d8c4d83766", + "x-ms-client-request-id": "98c9eb70a612c5cb4f465b2e19047efa", + "x-ms-correlation-request-id": "30ca5663-713e-4b63-9093-3e448c75d7e0", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "306eca7f-ae6e-4a0e-988e-63b6b9c20f26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061140Z:30ca5663-713e-4b63-9093-3e448c75d7e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9df66d9b984e1f6a7c42887f2b49fca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c87b0f8-1ddb-483b-8bb7-b9c39f423533", + "x-ms-client-request-id": "b9df66d9b984e1f6a7c42887f2b49fca", + "x-ms-correlation-request-id": "ac4431fa-58aa-443c-a6ba-77d04c853f05", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "b927d954-c53e-4eec-9a7f-7fb51452fdc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061142Z:ac4431fa-58aa-443c-a6ba-77d04c853f05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2188a5e27e2012948b91ba31f427c157", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26622f99-e31c-4f34-8f80-cfab7bc949d6", + "x-ms-client-request-id": "2188a5e27e2012948b91ba31f427c157", + "x-ms-correlation-request-id": "2128dcfc-343c-4d68-b22e-9505182b516c", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "991556df-50bf-4797-ba7d-ad2bb2374f6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061143Z:2128dcfc-343c-4d68-b22e-9505182b516c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5a1690aee19b791f5e7f04d7e44d39b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "310c1a33-c95c-4d6b-afec-3832609257d0", + "x-ms-client-request-id": "c5a1690aee19b791f5e7f04d7e44d39b", + "x-ms-correlation-request-id": "d3047636-0776-4bc7-a751-ab8bb186f855", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "5ccb4b4e-8af6-459b-a551-e30a57b07193", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061144Z:d3047636-0776-4bc7-a751-ab8bb186f855" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "734b91a65d7b5adad2cc2df3ffc4ed80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b442d5e9-957a-4d09-83b0-681ac1fb393c", + "x-ms-client-request-id": "734b91a65d7b5adad2cc2df3ffc4ed80", + "x-ms-correlation-request-id": "d1010710-2f42-4863-a095-4aae651fb4e7", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "cb486d76-b3f7-442e-910d-f929d9ecafdd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061145Z:d1010710-2f42-4863-a095-4aae651fb4e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "887dd103da12f4b014d12b388d469447", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "965001fc-eb4a-48c6-882c-74a653364b39", + "x-ms-client-request-id": "887dd103da12f4b014d12b388d469447", + "x-ms-correlation-request-id": "39aa9513-87ad-422a-8a95-ae98d9ba3476", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "8f8c6b1b-216c-496f-b97a-2e687c5b4fba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061147Z:39aa9513-87ad-422a-8a95-ae98d9ba3476" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "638a1fbe4edbaddb8f47f24cc19db830", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c732997-b67d-4f69-836a-0f2925596ccc", + "x-ms-client-request-id": "638a1fbe4edbaddb8f47f24cc19db830", + "x-ms-correlation-request-id": "c3248a46-059b-4385-95c1-78472aae7434", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "4e6cd21c-2937-4451-874d-d0c07ff9ad1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061148Z:c3248a46-059b-4385-95c1-78472aae7434" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac4a70fa4ac7cc88e0575fa931a2cc8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7efc4989-a4ba-4e28-8ba7-7f223948efe1", + "x-ms-client-request-id": "ac4a70fa4ac7cc88e0575fa931a2cc8b", + "x-ms-correlation-request-id": "cd492385-1af4-4ccc-910f-79c3f7791230", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "c9c6267f-bbd9-422c-bfcd-203e61a80aeb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061149Z:cd492385-1af4-4ccc-910f-79c3f7791230" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df34e5388a39b4a4f5cff9cbe7633376", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0fab8daf-4f61-46b4-ae12-1e9dbcff9d23", + "x-ms-client-request-id": "df34e5388a39b4a4f5cff9cbe7633376", + "x-ms-correlation-request-id": "94bb1d67-da11-41cc-ac31-f2bdbc32b062", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "b67cad5f-20cf-431e-872f-721563652291", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061150Z:94bb1d67-da11-41cc-ac31-f2bdbc32b062" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d3dfa19e7fb748097be8284ef327ced", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cb534b6-a5c4-4769-97f7-5010a83b106d", + "x-ms-client-request-id": "1d3dfa19e7fb748097be8284ef327ced", + "x-ms-correlation-request-id": "054bd980-6892-4505-a149-1455f6943ced", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "b123e80d-8ad3-4060-9a72-3f3a542c31d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061152Z:054bd980-6892-4505-a149-1455f6943ced" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db14667ad86970f7cb95b7f750bce47d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6bd69c5a-68bb-49a4-bbbc-da37033eca34", + "x-ms-client-request-id": "db14667ad86970f7cb95b7f750bce47d", + "x-ms-correlation-request-id": "52ee7f99-4664-47bf-8e77-3bd4b6948f50", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "7f7f6d51-bbab-45b8-98d5-8c85be3d5ab4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061153Z:52ee7f99-4664-47bf-8e77-3bd4b6948f50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "368fe823af64509064bf487b0720c5c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52bfbd8b-ac2b-4aa2-a780-bfd3e798d532", + "x-ms-client-request-id": "368fe823af64509064bf487b0720c5c3", + "x-ms-correlation-request-id": "ad19c1e4-60b0-4365-b7a6-48b82530eba3", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "4d1dcef1-fdf2-4e5d-82a5-d6b805066b91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061154Z:ad19c1e4-60b0-4365-b7a6-48b82530eba3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80510b53574e410d03cc5165308823da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca31f7c2-14d8-494f-96de-5aad71a979ee", + "x-ms-client-request-id": "80510b53574e410d03cc5165308823da", + "x-ms-correlation-request-id": "ceab26a2-8084-46af-889a-7a8c307bb9ce", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "c9d9b362-002d-4c64-861c-70df7cf3a042", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061156Z:ceab26a2-8084-46af-889a-7a8c307bb9ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "066004da45a2cb89d6c376a98f7c68aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12d10f6c-2ff4-464f-8644-5b6c93c91a86", + "x-ms-client-request-id": "066004da45a2cb89d6c376a98f7c68aa", + "x-ms-correlation-request-id": "1b576615-b126-4881-ba63-aa5531498dbc", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "b005a222-2f6a-451d-b894-6f45c81babd1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061157Z:1b576615-b126-4881-ba63-aa5531498dbc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45a4f4cf636acc2edb4e33975d2a20dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe5ff50c-89b5-485a-bdfa-035c39da3b35", + "x-ms-client-request-id": "45a4f4cf636acc2edb4e33975d2a20dc", + "x-ms-correlation-request-id": "478ea58a-370f-49d9-bb04-6b123a342979", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "7ada5770-5742-4b7e-b134-373dc21f14ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061158Z:478ea58a-370f-49d9-bb04-6b123a342979" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03a06d9cbfc00d208286a98be063b187", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:11:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "90273134-3b73-496c-9779-32b8516ad34f", + "x-ms-client-request-id": "03a06d9cbfc00d208286a98be063b187", + "x-ms-correlation-request-id": "36e691ef-50c0-49dc-9d8e-99e49086cf9c", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "b1af09e7-d453-4d87-b0d9-8c39d0ac05d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061159Z:36e691ef-50c0-49dc-9d8e-99e49086cf9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b96a764dee47670d6942b5412f16dac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81ebbf2a-d6da-472d-813b-294dc3e45415", + "x-ms-client-request-id": "3b96a764dee47670d6942b5412f16dac", + "x-ms-correlation-request-id": "47c3e1e0-0755-4fbd-b9c3-6970350de6f8", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "1372a3f6-bfc3-4c0e-b01e-4a58e02bcebf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061201Z:47c3e1e0-0755-4fbd-b9c3-6970350de6f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "220d9aa365db10e9d397c2e4b9a3eb77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b419d09-fe1c-4553-b19c-54009d507d68", + "x-ms-client-request-id": "220d9aa365db10e9d397c2e4b9a3eb77", + "x-ms-correlation-request-id": "42b75df4-ffed-4f34-809d-a0fd4c10d812", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "29d1a0f2-1c88-4dca-bea1-67578848488d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061202Z:42b75df4-ffed-4f34-809d-a0fd4c10d812" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b633ab9de494bdf7fd2a2d2c94ccfb90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "230d0e43-d3ab-4450-b75d-ab82ac0bd875", + "x-ms-client-request-id": "b633ab9de494bdf7fd2a2d2c94ccfb90", + "x-ms-correlation-request-id": "7121b91c-ac75-4df4-9e8d-b984190809ce", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "00db7dc5-4a4c-4fa5-be8e-e22b921d9d2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061203Z:7121b91c-ac75-4df4-9e8d-b984190809ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45e7fd188e56feabbd85684d1b8cbc32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3eb6be5-ecf3-44da-b5c8-e986f08a978d", + "x-ms-client-request-id": "45e7fd188e56feabbd85684d1b8cbc32", + "x-ms-correlation-request-id": "f02b630d-37d0-4338-a2f5-dc07335b1d47", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "9beeed4c-c77a-4dad-b2a5-fc3ff42674b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061204Z:f02b630d-37d0-4338-a2f5-dc07335b1d47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66b6b3a8b7bebe18a24f25b038bd7c07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c2353b52-2e70-4514-9dbd-9af742cdd7e4", + "x-ms-client-request-id": "66b6b3a8b7bebe18a24f25b038bd7c07", + "x-ms-correlation-request-id": "2f2f22ad-e2a9-44f7-bdfd-d3ef9e1087b8", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "44ad5130-2e00-46f8-b1a1-90a389d44160", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061206Z:2f2f22ad-e2a9-44f7-bdfd-d3ef9e1087b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bccb319ba5bb0e210034f80e7caaa271", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "03bf427d-c002-405b-a2aa-a9025d0dbd9a", + "x-ms-client-request-id": "bccb319ba5bb0e210034f80e7caaa271", + "x-ms-correlation-request-id": "094edb99-ad47-46f0-8ebe-ea475252c67a", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "63e3ae27-c5b4-4240-9d32-d37cd3588f6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061207Z:094edb99-ad47-46f0-8ebe-ea475252c67a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e083fa6e941561d2e428a30769fbc6ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "455b94fc-4694-43a7-bdd0-bb62cc2ccd90", + "x-ms-client-request-id": "e083fa6e941561d2e428a30769fbc6ff", + "x-ms-correlation-request-id": "c133e6c2-e237-4467-9357-5bc1b3cf01a4", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "4afb107e-3325-46e1-aea4-e8374f09f61f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061208Z:c133e6c2-e237-4467-9357-5bc1b3cf01a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9b1610800c0037691a86689be0942f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e02c115d-5469-4aee-95c2-50a8f9d46ec2", + "x-ms-client-request-id": "e9b1610800c0037691a86689be0942f8", + "x-ms-correlation-request-id": "7f2c04e5-20a5-4cd8-8ead-41f6ada1ffe2", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "2aed8f6c-1997-4fa7-b428-d49e66808a5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061210Z:7f2c04e5-20a5-4cd8-8ead-41f6ada1ffe2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d42b4ad9b3907f15f6ad792021aa404", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5693c6e2-b365-4f20-86e0-ad0c1e0844f8", + "x-ms-client-request-id": "3d42b4ad9b3907f15f6ad792021aa404", + "x-ms-correlation-request-id": "323423c3-cac0-4afd-aa3c-fa677815ee72", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "85e8d686-7735-479b-9677-c2ddd6b6fb65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061211Z:323423c3-cac0-4afd-aa3c-fa677815ee72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a05f86eb8f96eb083804f6d2e48a2db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc3d811c-48dd-4174-92b9-1b561b893574", + "x-ms-client-request-id": "1a05f86eb8f96eb083804f6d2e48a2db", + "x-ms-correlation-request-id": "a50adcc4-6442-4785-acc5-4c0edca79bbf", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "518cee71-af87-457d-bdec-7054dbf658c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061212Z:a50adcc4-6442-4785-acc5-4c0edca79bbf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b559abe688b86dc66fa98a5628e40077", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "593ad841-d368-40d7-a8c6-acd32ca2bf32", + "x-ms-client-request-id": "b559abe688b86dc66fa98a5628e40077", + "x-ms-correlation-request-id": "64ac9a55-e27d-40ef-9149-b3a1ca514bb9", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "b6daa373-00a4-429d-85ef-f519195f86eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061213Z:64ac9a55-e27d-40ef-9149-b3a1ca514bb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c51b61032703f5fe03d4bab84c84d817", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e791e587-55e5-4359-a655-6615eb658633", + "x-ms-client-request-id": "c51b61032703f5fe03d4bab84c84d817", + "x-ms-correlation-request-id": "7519103a-10b2-40b3-9dca-26747df7bd6f", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "8b3a3086-0609-4df0-90ee-8a1c1c663acd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061215Z:7519103a-10b2-40b3-9dca-26747df7bd6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57acfcc7efc0e54b3298ab4f2d5a459f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4968ad34-d95d-4dcb-89fe-99913938eccb", + "x-ms-client-request-id": "57acfcc7efc0e54b3298ab4f2d5a459f", + "x-ms-correlation-request-id": "9580d686-6ba8-41e8-a98b-7ac2a8de9ba2", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "32f46c3d-e365-4480-9f27-a62f7465a8a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061216Z:9580d686-6ba8-41e8-a98b-7ac2a8de9ba2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc69d780dc2cbfd7ac64b1e4ce0d20eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f788cd19-4b8f-4056-b8f2-3799aef36444", + "x-ms-client-request-id": "cc69d780dc2cbfd7ac64b1e4ce0d20eb", + "x-ms-correlation-request-id": "5a5d356d-63e7-417e-974d-4aa7b5d7c559", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "52a992fc-5964-476e-9009-88bbf4e3e87f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061217Z:5a5d356d-63e7-417e-974d-4aa7b5d7c559" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c8f73d0a93714b61536936b7caec7a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8759aee5-8f14-4c4e-ae0c-c232eaeeae7d", + "x-ms-client-request-id": "2c8f73d0a93714b61536936b7caec7a9", + "x-ms-correlation-request-id": "081d3da8-c0a0-4c0f-a70d-9b458987784e", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "9cf0f624-79da-4797-a2fd-9335da637852", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061219Z:081d3da8-c0a0-4c0f-a70d-9b458987784e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74381a8e0c1beaea25edaa5b3d671724", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d615d63-cb25-4b69-8dd6-7794c5687a6a", + "x-ms-client-request-id": "74381a8e0c1beaea25edaa5b3d671724", + "x-ms-correlation-request-id": "63b9e16e-7612-4634-a23c-8793edaf578a", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "4cc9b17a-fd18-4412-a453-1390b40f0887", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061220Z:63b9e16e-7612-4634-a23c-8793edaf578a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba7ebf7819cbd6672055b6f6496b42fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb0c09d3-f87e-4441-889b-c5f83d96391a", + "x-ms-client-request-id": "ba7ebf7819cbd6672055b6f6496b42fd", + "x-ms-correlation-request-id": "db7747d8-e470-4f9c-a39f-2ea4bebad015", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "8b30456b-cda4-4f7d-b862-4084bb8621fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061221Z:db7747d8-e470-4f9c-a39f-2ea4bebad015" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b355089dabd5c4d088a4074afe5ad6ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6321e53-1bb3-46d7-9e21-9029587877c1", + "x-ms-client-request-id": "b355089dabd5c4d088a4074afe5ad6ae", + "x-ms-correlation-request-id": "b93d7dde-bbf3-499f-885d-2578a84abcb9", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "6ab4e9be-c4d8-4fc9-b187-fddc1c8b7d5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061222Z:b93d7dde-bbf3-499f-885d-2578a84abcb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcf36e1e0c3075deb26153c555f4a0b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54256872-162b-48ea-aaf7-77ade37cf9b8", + "x-ms-client-request-id": "bcf36e1e0c3075deb26153c555f4a0b9", + "x-ms-correlation-request-id": "574091e3-1e8f-4b82-9fff-e93f8d410d85", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "36a00acc-fd77-4fa8-95a0-603987c2b356", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061224Z:574091e3-1e8f-4b82-9fff-e93f8d410d85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35beadaa6411cc4fefba3226121dd7c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6fa5102-ff11-43be-aae7-ca78f2e4a6e9", + "x-ms-client-request-id": "35beadaa6411cc4fefba3226121dd7c5", + "x-ms-correlation-request-id": "e2690f8f-54f3-4adc-a9e4-4088ece1a345", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "ecb9bbb1-850e-434b-8759-f74db7e34f80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061225Z:e2690f8f-54f3-4adc-a9e4-4088ece1a345" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbd7087e857890cd29e00073570a6e93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71320458-66d2-481e-b01c-1c20b8a784d1", + "x-ms-client-request-id": "dbd7087e857890cd29e00073570a6e93", + "x-ms-correlation-request-id": "8129f3bd-cae7-4ecd-8ea7-fd24073b26f2", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "9a993c7a-7356-4535-8c4b-fd1283ea88d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061226Z:8129f3bd-cae7-4ecd-8ea7-fd24073b26f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "519f4d03a09cba9c1f26cd75d9b76395", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9279cce0-e4cb-424a-be20-02c250a40a39", + "x-ms-client-request-id": "519f4d03a09cba9c1f26cd75d9b76395", + "x-ms-correlation-request-id": "51fbbc76-7baa-4e61-b32a-dbfed332f7c5", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "a8d465e5-0aa4-457e-a2e5-10977c580dea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061228Z:51fbbc76-7baa-4e61-b32a-dbfed332f7c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d478e8ac51d2441df2d0c3163db74e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17c461f7-16e3-42e1-a4f2-ac2963c3ab80", + "x-ms-client-request-id": "4d478e8ac51d2441df2d0c3163db74e4", + "x-ms-correlation-request-id": "614355d4-4415-4320-9784-33349c873da5", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "a2c7e1b3-84bb-4ec0-88c8-711dfda91f9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061229Z:614355d4-4415-4320-9784-33349c873da5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4229f4b867dde296b1cbc51b857b671", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea447218-115e-4dd9-85f6-48b70fc25daf", + "x-ms-client-request-id": "c4229f4b867dde296b1cbc51b857b671", + "x-ms-correlation-request-id": "deec3c45-839e-4483-8f9f-5c40dbc318f5", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "230445c6-2382-4d1d-8c3b-6a3caba4d3bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061230Z:deec3c45-839e-4483-8f9f-5c40dbc318f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9e96a7c21c33e760c7a726f936a5643", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6aed7984-32c9-448a-a716-2226df37d97c", + "x-ms-client-request-id": "c9e96a7c21c33e760c7a726f936a5643", + "x-ms-correlation-request-id": "5d7d7a87-3be3-4479-9176-7b795d56ec2d", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "eb5b87dc-afdb-498b-acd4-78ce0e1a1a53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061231Z:5d7d7a87-3be3-4479-9176-7b795d56ec2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a2ae9b29e9503176468e20009ef6c87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e53d1e06-e133-4a37-a0b1-988c935352fe", + "x-ms-client-request-id": "3a2ae9b29e9503176468e20009ef6c87", + "x-ms-correlation-request-id": "06333876-b254-45e9-b0be-ea99abf9a338", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "b54d0d9d-bafe-4a14-be15-f59a10228f24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061233Z:06333876-b254-45e9-b0be-ea99abf9a338" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9b59a76abf22a2129e4b80214ba4a00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ce645af-6221-479a-9c04-f264c63551a0", + "x-ms-client-request-id": "f9b59a76abf22a2129e4b80214ba4a00", + "x-ms-correlation-request-id": "672b8bd6-b212-4199-89aa-67cdc2346d64", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "73f18976-b847-444b-9401-9c42b256952a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061234Z:672b8bd6-b212-4199-89aa-67cdc2346d64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf9f78c67c2ddddc52e5645a3f75351c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67c60e6b-ad66-4fff-bf69-3e9fad849a3f", + "x-ms-client-request-id": "cf9f78c67c2ddddc52e5645a3f75351c", + "x-ms-correlation-request-id": "4b15a9c4-ed90-4d2a-a743-c03194b92c12", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "61233baf-de50-4a1c-b2ab-dd9a2fb9ca65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061236Z:4b15a9c4-ed90-4d2a-a743-c03194b92c12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9f8ea0d5db50650c70011b0e615efaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "936b0011-8c24-4097-8545-40f69699ac9d", + "x-ms-client-request-id": "f9f8ea0d5db50650c70011b0e615efaa", + "x-ms-correlation-request-id": "f7776c18-e325-4ccc-92ad-a59fd28ebd9c", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "e7f6d6c6-9ca4-4d49-8ac3-0aa275de59a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061237Z:f7776c18-e325-4ccc-92ad-a59fd28ebd9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "903ae11e9d50fa5abed7a60d46c6ebb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "816bc7ee-e754-4da3-908f-69c849afe46f", + "x-ms-client-request-id": "903ae11e9d50fa5abed7a60d46c6ebb3", + "x-ms-correlation-request-id": "6657c8ef-c344-4859-a615-94feccca9577", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "14da2bfc-48be-43c1-8f1d-bfeacb3269de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061238Z:6657c8ef-c344-4859-a615-94feccca9577" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29f49baf51c1684a2798072d6a2bf73d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1488198a-59ad-4709-89f2-7375196f7e3a", + "x-ms-client-request-id": "29f49baf51c1684a2798072d6a2bf73d", + "x-ms-correlation-request-id": "ef497f83-d127-4c80-a98a-22fed0610eb4", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "eb88f7b0-eb5e-46f8-9e52-3df6abb6bf85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061240Z:ef497f83-d127-4c80-a98a-22fed0610eb4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d3cbaf5a43b6fcc90fe3adeb743c000", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bced2863-91e2-4939-958a-c33d9889d06f", + "x-ms-client-request-id": "5d3cbaf5a43b6fcc90fe3adeb743c000", + "x-ms-correlation-request-id": "42e73012-287a-45e2-9182-6a7e611f770c", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "383cc4f7-18da-44f4-bb6c-2f9bbfa6863c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061241Z:42e73012-287a-45e2-9182-6a7e611f770c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b015e14c620cce997d169b8962d8f92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd6f7a7c-400c-4e25-844b-9cc43629055f", + "x-ms-client-request-id": "4b015e14c620cce997d169b8962d8f92", + "x-ms-correlation-request-id": "5e79a4d8-0442-4241-9f46-2efe75e938c4", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "8b5378fa-cd1a-4c86-b681-3158364c2a68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061242Z:5e79a4d8-0442-4241-9f46-2efe75e938c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b1768e08d8a0b77ce8499c2166bb1e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8464f1fa-8878-4a26-b3d3-6f653eabe0ae", + "x-ms-client-request-id": "8b1768e08d8a0b77ce8499c2166bb1e4", + "x-ms-correlation-request-id": "85f8ea29-6f90-4ebd-ba56-fcf4e8ddd516", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "0c9648f9-9c57-4f01-9392-8f953aca0155", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061243Z:85f8ea29-6f90-4ebd-ba56-fcf4e8ddd516" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b1806d7ab292f1dd16fc66a3b14d963", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "728a8abe-d244-43bd-aa2e-614f73513c7f", + "x-ms-client-request-id": "0b1806d7ab292f1dd16fc66a3b14d963", + "x-ms-correlation-request-id": "383a9036-4e82-4b86-a229-f44a75333a6c", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "c08f88e0-29d8-45e5-a98c-5a24e87919b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061245Z:383a9036-4e82-4b86-a229-f44a75333a6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4efea86e342b8676e6f67c9b2c26b62b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84303783-a2fe-4996-a6c5-d1ec3ec5f56f", + "x-ms-client-request-id": "4efea86e342b8676e6f67c9b2c26b62b", + "x-ms-correlation-request-id": "29eff698-de0d-49a4-89a0-632a59616909", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "0051e017-4140-4433-aecb-c104a12b5ed3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061246Z:29eff698-de0d-49a4-89a0-632a59616909" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90e0841f831434694be8ba1ac70dcfba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd6d1c43-4e9f-49e4-a901-11864781ec51", + "x-ms-client-request-id": "90e0841f831434694be8ba1ac70dcfba", + "x-ms-correlation-request-id": "8ff842fc-f98c-49b7-8c4f-a11c152ef69c", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "964aa997-c2f5-4233-bc7e-00242c07d5d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061247Z:8ff842fc-f98c-49b7-8c4f-a11c152ef69c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e5336ab636da2b88f9125332e8202aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f64d0433-c53e-4e0d-9320-e254394e412a", + "x-ms-client-request-id": "6e5336ab636da2b88f9125332e8202aa", + "x-ms-correlation-request-id": "2577f5e2-074e-484c-92a3-a6b29042c999", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "7b205895-fb05-41fd-8534-1663a69b2dff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061249Z:2577f5e2-074e-484c-92a3-a6b29042c999" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b64a9ab94933eb4e3fca0243795cbfd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1e54325-291a-47bb-a90e-2834683bdc8e", + "x-ms-client-request-id": "b64a9ab94933eb4e3fca0243795cbfd9", + "x-ms-correlation-request-id": "d222d617-2c04-48c0-a56a-f6e987d7f286", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "e4e81919-f0c7-4e0c-8f38-27b72cadffdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061250Z:d222d617-2c04-48c0-a56a-f6e987d7f286" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6efc22647d2bcbecc3d00835e3505c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3bcdd776-b964-45b3-ac41-7aba97c91943", + "x-ms-client-request-id": "f6efc22647d2bcbecc3d00835e3505c9", + "x-ms-correlation-request-id": "5369eaae-97f3-449c-a904-68619e1b40e3", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "51df60ce-7edb-4eae-adc1-2e740bf12dd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061251Z:5369eaae-97f3-449c-a904-68619e1b40e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c6010e519c36286e7682fa360752933", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5296b58-a60f-485a-ba9c-0422dd1ad61e", + "x-ms-client-request-id": "2c6010e519c36286e7682fa360752933", + "x-ms-correlation-request-id": "1fb826ca-5349-4b76-8673-df3dca44c97c", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "abf1f9f7-18ac-4a85-9b65-ebba795d637f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061253Z:1fb826ca-5349-4b76-8673-df3dca44c97c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c0c4bd20c9271d7dc8de9f549cb8c09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f835c7a-ca78-4c31-b900-8613859a3d1b", + "x-ms-client-request-id": "6c0c4bd20c9271d7dc8de9f549cb8c09", + "x-ms-correlation-request-id": "4d140494-dffe-4e6d-9104-0517ebc6ffde", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "8f46c778-338c-4844-a307-966196da4a0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061254Z:4d140494-dffe-4e6d-9104-0517ebc6ffde" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "695d39c492fb0c163b8d0e6a181a5b57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c551a1c-2659-4457-924e-d5f48072cc9e", + "x-ms-client-request-id": "695d39c492fb0c163b8d0e6a181a5b57", + "x-ms-correlation-request-id": "ba3f29e1-af34-4787-a732-3dc9d729f843", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "66d97d12-92b5-4921-898f-9a33692436ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061255Z:ba3f29e1-af34-4787-a732-3dc9d729f843" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12b0cd149928d83639ef4f352f91191c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c8218d2-8424-4cca-962b-d829bb57207d", + "x-ms-client-request-id": "12b0cd149928d83639ef4f352f91191c", + "x-ms-correlation-request-id": "cda16e82-0a75-47fe-abf5-b1c0064a7f85", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "0cc8b3e3-0bb1-4ab9-a29c-5dd95f4ea2e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061256Z:cda16e82-0a75-47fe-abf5-b1c0064a7f85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26de25dcbf173f3735ff3004fe6d58c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b588d1de-ef89-4c30-88b8-eb36d5a824d8", + "x-ms-client-request-id": "26de25dcbf173f3735ff3004fe6d58c1", + "x-ms-correlation-request-id": "af764ddd-7ca0-4cc3-9b68-282240732b2a", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "2599cf55-05b2-4885-a1f2-74babe97b008", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061258Z:af764ddd-7ca0-4cc3-9b68-282240732b2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7be09231791a2ae00385300c42e0ddaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:12:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4dc4529-bcd4-427f-8225-59fc6e904305", + "x-ms-client-request-id": "7be09231791a2ae00385300c42e0ddaa", + "x-ms-correlation-request-id": "b9ad9fb1-ae7e-42f2-985b-1e36c4e5d1ce", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "ee03854f-cc1d-4479-a25e-8147212e64ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061259Z:b9ad9fb1-ae7e-42f2-985b-1e36c4e5d1ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f28df274353c55409671dc286931dacb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6447539-9108-4cfd-9546-4924837e051f", + "x-ms-client-request-id": "f28df274353c55409671dc286931dacb", + "x-ms-correlation-request-id": "67930239-daea-43c3-abfd-eb4332ef4a29", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "b7f32281-9082-403f-9928-f5e43b694be1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061300Z:67930239-daea-43c3-abfd-eb4332ef4a29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d038d969db0620145b423928f2afd55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e96ee7ae-e6b7-4ed9-a0f8-eb7996e221fb", + "x-ms-client-request-id": "9d038d969db0620145b423928f2afd55", + "x-ms-correlation-request-id": "f67775fa-d63e-4e33-9163-da2fa16b0cba", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "7797eccc-125a-448a-8591-97eed77347f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061301Z:f67775fa-d63e-4e33-9163-da2fa16b0cba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c90862266dffc85528be5a99db7c1d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea74c120-331f-4ef0-816a-c51441a530ca", + "x-ms-client-request-id": "0c90862266dffc85528be5a99db7c1d1", + "x-ms-correlation-request-id": "1706ce44-e899-4e0d-a362-a7034cf33fda", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "fbae719a-7263-46bc-9560-50d198c0cf15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061303Z:1706ce44-e899-4e0d-a362-a7034cf33fda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b47664aa40ddd7faf02bad8811aec56c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27ce9509-9f9d-47b3-9636-12409a55ec0c", + "x-ms-client-request-id": "b47664aa40ddd7faf02bad8811aec56c", + "x-ms-correlation-request-id": "5d07161d-2a90-4eb5-a21a-6d5e519b8667", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "f7eb15f5-a489-49e7-93c1-9966f0eafc4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061304Z:5d07161d-2a90-4eb5-a21a-6d5e519b8667" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2068773cea130ec08064a24b758c58d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f59f969f-6c6a-4a52-8ea8-085247a0d9a1", + "x-ms-client-request-id": "e2068773cea130ec08064a24b758c58d", + "x-ms-correlation-request-id": "fbc01323-2efb-496f-8d8b-3757908a1754", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "01af0699-1b44-4913-b462-1c9573e4eb4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061305Z:fbc01323-2efb-496f-8d8b-3757908a1754" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2be752f248b3e2778cb91bb3b8fdeba4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a19d35c5-31dc-4e30-aa0c-1cf332e52a79", + "x-ms-client-request-id": "2be752f248b3e2778cb91bb3b8fdeba4", + "x-ms-correlation-request-id": "b3a58d83-b452-4025-9c81-ccd0286a01e4", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "cdda5b63-e7a5-4ab8-a3f4-739b45e86263", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061307Z:b3a58d83-b452-4025-9c81-ccd0286a01e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "153579c6deb1db307746acd6f5d51f97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3df35e8c-fbec-4cbe-bc37-178d977a7cfd", + "x-ms-client-request-id": "153579c6deb1db307746acd6f5d51f97", + "x-ms-correlation-request-id": "fa7d2a25-0c2d-48e2-90bd-1d651e2bb863", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "6a829f72-cf4c-4860-ae66-235a8756210f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061308Z:fa7d2a25-0c2d-48e2-90bd-1d651e2bb863" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf951f6699c62bb80f2356e8b238770a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dfc778d4-28bd-4364-a43f-3e1d78065c72", + "x-ms-client-request-id": "bf951f6699c62bb80f2356e8b238770a", + "x-ms-correlation-request-id": "e5f3bf08-74aa-4f09-ab55-b44b0be59c22", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "2e9c599b-45f3-4142-9cee-824067519534", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061309Z:e5f3bf08-74aa-4f09-ab55-b44b0be59c22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e5da61baf2213dc220cb36d9ba0edb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99ec0ce5-0433-404e-bb85-488c0968a4fb", + "x-ms-client-request-id": "3e5da61baf2213dc220cb36d9ba0edb6", + "x-ms-correlation-request-id": "52aa65df-97f1-4e0b-97f8-0825eaa74a64", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "df69b188-5ddd-4f14-b3f8-ff75973a077c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061310Z:52aa65df-97f1-4e0b-97f8-0825eaa74a64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "994d84992b682cddc00a058e8847283e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46cc86da-90b8-47b2-838b-4ec6e6fcbedf", + "x-ms-client-request-id": "994d84992b682cddc00a058e8847283e", + "x-ms-correlation-request-id": "bbd8ea75-b8aa-4d97-9b9a-68c5b57d05df", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "337a3423-fb8c-46de-8733-906e6f29fd73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061312Z:bbd8ea75-b8aa-4d97-9b9a-68c5b57d05df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ebba2cfe078b67443819db9e64b8f6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3a09014-8bf0-4140-b196-14e64336fdaf", + "x-ms-client-request-id": "4ebba2cfe078b67443819db9e64b8f6e", + "x-ms-correlation-request-id": "2032e02f-3110-4394-94d2-dd16bb8a7992", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "ea820dc6-6c2f-42ee-aeae-3b418356262a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061313Z:2032e02f-3110-4394-94d2-dd16bb8a7992" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e4ea035ddebefa2c9307d18aa4e8bda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13d162aa-d238-4f41-917b-ccbb488f6306", + "x-ms-client-request-id": "2e4ea035ddebefa2c9307d18aa4e8bda", + "x-ms-correlation-request-id": "eceb0445-281a-447b-8df3-8f6206e6f551", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "41f5a2a7-05b9-4a07-9213-ee9233abf050", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061314Z:eceb0445-281a-447b-8df3-8f6206e6f551" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f99d74e49fe5b83d0f9656e68e234675", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d52e3fc9-eaff-4745-8f82-17de84fb8812", + "x-ms-client-request-id": "f99d74e49fe5b83d0f9656e68e234675", + "x-ms-correlation-request-id": "00ae7378-2cf3-498b-b938-96e0e1b9b98b", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "a3938b50-7474-49ea-9937-9bf10c0db35e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061316Z:00ae7378-2cf3-498b-b938-96e0e1b9b98b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e858967af9f8f153ffcb8547625b0cf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4341847f-2678-47e3-a70f-df9f2372de5c", + "x-ms-client-request-id": "e858967af9f8f153ffcb8547625b0cf5", + "x-ms-correlation-request-id": "3bb83084-a0d2-4d4d-9214-a4f28608e895", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "e5f16161-d9ef-44cd-91d9-554f95040f28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061317Z:3bb83084-a0d2-4d4d-9214-a4f28608e895" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71d5c2f696ad968962961f5487bb61a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0bcfc10-da69-46f9-bfe3-187fd7fcae2e", + "x-ms-client-request-id": "71d5c2f696ad968962961f5487bb61a5", + "x-ms-correlation-request-id": "03e35125-27fb-4888-82bf-53dd82852aa2", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "a48cbd6f-468f-4ad8-ab04-d66ee7728a7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061319Z:03e35125-27fb-4888-82bf-53dd82852aa2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "139e08eaa3f6eae121abf91a19f655b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7601b814-370a-42a4-8ecf-d7094cf94926", + "x-ms-client-request-id": "139e08eaa3f6eae121abf91a19f655b3", + "x-ms-correlation-request-id": "f11fabc2-a95f-451e-a5ef-ca08cce1f788", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "437a3467-e567-453b-a6e7-7fc8736d8e4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061320Z:f11fabc2-a95f-451e-a5ef-ca08cce1f788" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbef618ad54ee4c70dc18562daff6a43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78a9159a-0e36-4cc3-9093-d2221290b1c8", + "x-ms-client-request-id": "cbef618ad54ee4c70dc18562daff6a43", + "x-ms-correlation-request-id": "571d73de-8bbd-45db-b664-c777b8fae47c", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "ceb25572-0fbf-4525-a46e-c0f000932d5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061321Z:571d73de-8bbd-45db-b664-c777b8fae47c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a5ddf6af9bd53fee1eb50029c6e7d6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a78860b-2c98-4cc9-9c2e-486a279d1ad8", + "x-ms-client-request-id": "5a5ddf6af9bd53fee1eb50029c6e7d6c", + "x-ms-correlation-request-id": "5ad58b71-993f-4136-9b8c-6c167a404c93", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "4d8cdb1f-0ea4-4e99-98cf-86e2493569fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061323Z:5ad58b71-993f-4136-9b8c-6c167a404c93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26c96b4095cc145741b905341d7e0f22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64682cdf-1b4b-4337-ac63-d1844854f2f5", + "x-ms-client-request-id": "26c96b4095cc145741b905341d7e0f22", + "x-ms-correlation-request-id": "762c1b0c-e615-4ab3-8fd9-da520906f817", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "13c70c59-665a-4bc5-9684-7c336cda9fb1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061324Z:762c1b0c-e615-4ab3-8fd9-da520906f817" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39b0b541fb9891f6629cea6385c5479e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5f07f6d-85d6-41d9-b6e6-febda78ea6db", + "x-ms-client-request-id": "39b0b541fb9891f6629cea6385c5479e", + "x-ms-correlation-request-id": "15ecd109-3b40-4e5a-a4b1-d89bbbcce419", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "b5b33565-cd9b-4869-be4d-64d8a5aa14f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061325Z:15ecd109-3b40-4e5a-a4b1-d89bbbcce419" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f2219434335d57788481803f3c93562", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4389192-d9fb-4375-a300-f53f5cedc60b", + "x-ms-client-request-id": "6f2219434335d57788481803f3c93562", + "x-ms-correlation-request-id": "ccf31b79-c179-4f2e-bfeb-48a8a2c3542b", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "e0662743-c95b-4fdb-9014-ebcf4b702c59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061327Z:ccf31b79-c179-4f2e-bfeb-48a8a2c3542b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6c02ddb43be44d47438c42faaf38f7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1826644-a40f-4da7-8f4f-7b3eca42839e", + "x-ms-client-request-id": "e6c02ddb43be44d47438c42faaf38f7c", + "x-ms-correlation-request-id": "d4b45a5a-0b75-4cb0-a868-6ee93db52a9b", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "58a07092-3af2-4ee4-9e5a-98b5beabb7a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061328Z:d4b45a5a-0b75-4cb0-a868-6ee93db52a9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04f16672a05cfdec3ddab04fe3f29d98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8684c77b-abac-49c7-ba9a-94fc42ccae99", + "x-ms-client-request-id": "04f16672a05cfdec3ddab04fe3f29d98", + "x-ms-correlation-request-id": "8dad3ecb-a967-4de7-87e5-1054efddf1e8", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "6c1dc691-90e6-45cf-8743-256980e4bf17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061329Z:8dad3ecb-a967-4de7-87e5-1054efddf1e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57878866600400e045ddfafc7f482a95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e540562-100b-4566-ae82-00264ba8dbbe", + "x-ms-client-request-id": "57878866600400e045ddfafc7f482a95", + "x-ms-correlation-request-id": "47ce607e-850d-4052-9b88-585791c542fa", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "55adcbc1-a6ba-4e8a-a76d-87cae873ae19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061331Z:47ce607e-850d-4052-9b88-585791c542fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c919bb831d83a0640c2a9e392846182", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2338586c-c4b2-4f9b-8ab1-76d9f25990d4", + "x-ms-client-request-id": "8c919bb831d83a0640c2a9e392846182", + "x-ms-correlation-request-id": "7fe34567-b6a6-4303-a1eb-5df9555acace", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "616a494e-f504-4085-bffb-4db68b33cd0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061332Z:7fe34567-b6a6-4303-a1eb-5df9555acace" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21c92c9a386b117786f0bf7ea5f07ef5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b40149d-12ee-4335-a3aa-af2bfb896ad4", + "x-ms-client-request-id": "21c92c9a386b117786f0bf7ea5f07ef5", + "x-ms-correlation-request-id": "b9dd5f01-e637-4435-853f-0eae4b19b0a4", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "5a63c104-1b28-444c-81ca-f91ed8f0d59e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061333Z:b9dd5f01-e637-4435-853f-0eae4b19b0a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47961bb0106134bf824d1642b7fc6dc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "358bc066-563f-4e6d-a40a-54d48029a6e1", + "x-ms-client-request-id": "47961bb0106134bf824d1642b7fc6dc0", + "x-ms-correlation-request-id": "b09d5cee-2540-4344-a7a1-aa3f4197698d", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "1508de73-bd40-4882-b7c3-5ed24bd9187a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061335Z:b09d5cee-2540-4344-a7a1-aa3f4197698d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5361787b087e8029238006e872879450", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08080ae6-c9d5-41e5-8e44-c845d3684cc1", + "x-ms-client-request-id": "5361787b087e8029238006e872879450", + "x-ms-correlation-request-id": "36c7904e-e8cf-4f60-8ae2-d3128bd56619", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "eac01aaf-393d-416f-8e1e-7965da5acb17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061336Z:36c7904e-e8cf-4f60-8ae2-d3128bd56619" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7633b3431aed89206c949f1e2135598a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddcd0e1c-d667-4517-b13c-81eabe1152fe", + "x-ms-client-request-id": "7633b3431aed89206c949f1e2135598a", + "x-ms-correlation-request-id": "1facad7a-6742-43a4-bf85-346e26fa9d73", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "74ad6fc2-68c4-4554-9a8a-eaca08c41e47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061337Z:1facad7a-6742-43a4-bf85-346e26fa9d73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d03fe822a8ea776f21623e00ad7c2fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd6408b0-d408-4dbc-8dfa-1d4da251b3fa", + "x-ms-client-request-id": "2d03fe822a8ea776f21623e00ad7c2fb", + "x-ms-correlation-request-id": "1ca26384-40e2-47a9-ba2f-32e6a6eb8054", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "c6f93eac-496c-4f25-932a-ef057a7012b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061339Z:1ca26384-40e2-47a9-ba2f-32e6a6eb8054" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04fec5b8f7c860d357d8e6ea690a5eee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7534bd2-916c-4db6-aab3-1695aa7a4228", + "x-ms-client-request-id": "04fec5b8f7c860d357d8e6ea690a5eee", + "x-ms-correlation-request-id": "b9a42375-286c-4479-8071-de74041fe108", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "3a6bb0e3-eaae-4849-b910-f1d6922e2656", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061340Z:b9a42375-286c-4479-8071-de74041fe108" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73657b27678319c23c8c84d7f73f7e95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91baabb4-fae0-41f6-a8a5-f60215aedd43", + "x-ms-client-request-id": "73657b27678319c23c8c84d7f73f7e95", + "x-ms-correlation-request-id": "bc4badfe-4316-43c9-b39a-91c6a75fc2a8", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "d44b0b1f-6c63-4904-8a34-15410c318f62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061341Z:bc4badfe-4316-43c9-b39a-91c6a75fc2a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c66a4d154368bc12aa2d5b6438c3de8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93543ab8-9064-45e2-9462-b57e0ba71052", + "x-ms-client-request-id": "5c66a4d154368bc12aa2d5b6438c3de8", + "x-ms-correlation-request-id": "7a813155-aa9e-4066-a6e8-0bcd2efb99e5", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "95950b43-af6b-4e1d-8aa6-37b2c4adc72c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061343Z:7a813155-aa9e-4066-a6e8-0bcd2efb99e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fb934b74e71507703e5c73c72fc6917", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "185b33ce-5b11-4aa4-bc83-08aea8982f15", + "x-ms-client-request-id": "8fb934b74e71507703e5c73c72fc6917", + "x-ms-correlation-request-id": "8035bdd6-3311-4993-b591-702944db20ec", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "16bdbcdb-7f3e-4c3d-b6e3-8b0d2d4de973", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061344Z:8035bdd6-3311-4993-b591-702944db20ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c519515902a3d2b7b9da48e1920cd5b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e799e75-29a7-438b-85d6-c3f29c4f00d3", + "x-ms-client-request-id": "c519515902a3d2b7b9da48e1920cd5b0", + "x-ms-correlation-request-id": "6ebdb3ed-b78c-4296-9f1c-6b3eee910995", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "7b068f92-e79a-49f7-9547-54d7e307cba6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061345Z:6ebdb3ed-b78c-4296-9f1c-6b3eee910995" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c21f9c4eef8682242c1658518d85182e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d24b990-bb32-4624-b0e5-f698e61299d4", + "x-ms-client-request-id": "c21f9c4eef8682242c1658518d85182e", + "x-ms-correlation-request-id": "d51ae668-da3f-459b-9343-bae91053ed9f", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "fc9d9c23-68cd-421a-bc53-507dfe7f7697", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061346Z:d51ae668-da3f-459b-9343-bae91053ed9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f25cbd387873b4447ce7d5970596bef6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "227d5bd8-20bc-4cbd-9f1d-665521bb21ea", + "x-ms-client-request-id": "f25cbd387873b4447ce7d5970596bef6", + "x-ms-correlation-request-id": "9ae37c87-ca61-4fcd-a761-7b5b3e46dc9a", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "751b20ba-f41c-4142-88a5-4d7acf4e9a8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061348Z:9ae37c87-ca61-4fcd-a761-7b5b3e46dc9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6ed170fa7dc69912c96998da9664434", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a3ed001-a2f6-4c25-b5b2-7c799a69423b", + "x-ms-client-request-id": "d6ed170fa7dc69912c96998da9664434", + "x-ms-correlation-request-id": "009207b2-c30f-4ed7-99ee-eca83442b191", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "629379b2-516c-4882-be0e-2d5526c33666", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061349Z:009207b2-c30f-4ed7-99ee-eca83442b191" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4a81ac1e2afd63d576b459e1a8d7c95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae532d18-412f-4e12-8ca7-7972ebfcbee2", + "x-ms-client-request-id": "d4a81ac1e2afd63d576b459e1a8d7c95", + "x-ms-correlation-request-id": "23d6fe46-f422-4df7-9f4a-b3f06d75d987", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "dfcdde77-11ce-4e80-8f72-47442d8b411b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061351Z:23d6fe46-f422-4df7-9f4a-b3f06d75d987" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75416158419791522bf2c5dcdfb70a16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de162e7e-d7a3-4d2f-a636-462c2bfc88bd", + "x-ms-client-request-id": "75416158419791522bf2c5dcdfb70a16", + "x-ms-correlation-request-id": "3f3a9164-7e7f-446e-b69a-bfc4a6cc7ced", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "3d3432de-d13b-443f-b84b-90bb2acc5aed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061352Z:3f3a9164-7e7f-446e-b69a-bfc4a6cc7ced" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebd5a1a2e9ee2d47da177f7161f34f9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af94f0aa-1eaa-4790-a046-efaab83244b5", + "x-ms-client-request-id": "ebd5a1a2e9ee2d47da177f7161f34f9f", + "x-ms-correlation-request-id": "89f3a7c5-4121-4b38-b774-f49efe8ace2e", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "0ba2bbdd-af1c-470e-b828-dee0bf63020d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061353Z:89f3a7c5-4121-4b38-b774-f49efe8ace2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48350319cf24809cc816a8bc1c60f7a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc464ab5-9866-4e3f-ac38-829d2fadf988", + "x-ms-client-request-id": "48350319cf24809cc816a8bc1c60f7a0", + "x-ms-correlation-request-id": "922d8903-deb3-470e-8815-1d40dc071a50", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "9cd102f9-7b5b-4eb8-bbd9-1817584c7201", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061355Z:922d8903-deb3-470e-8815-1d40dc071a50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78fb2f6091b76ea71a149b80c2e03038", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "19cae9cd-9103-4aed-83b3-adfcd7c811ed", + "x-ms-client-request-id": "78fb2f6091b76ea71a149b80c2e03038", + "x-ms-correlation-request-id": "7e5aa6cc-3e90-40c4-a291-69869ea13f04", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "235c8803-e2d0-4e82-a417-b4b457e14f83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061356Z:7e5aa6cc-3e90-40c4-a291-69869ea13f04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbc326a3c282d3f1055523d7418a1079", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be2671b4-fb14-4dd0-8663-ab263775bc17", + "x-ms-client-request-id": "dbc326a3c282d3f1055523d7418a1079", + "x-ms-correlation-request-id": "354b54c6-1328-412e-a2f7-d6afe578c0a2", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "4911403b-913b-4b85-9f61-f8740635e58a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061357Z:354b54c6-1328-412e-a2f7-d6afe578c0a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3111df20d7f787e75bc62d10331bbee7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c1fc5a2-f3dc-4d9d-862f-32e0c77af404", + "x-ms-client-request-id": "3111df20d7f787e75bc62d10331bbee7", + "x-ms-correlation-request-id": "d24b04e7-f581-489b-8079-a883c43000c3", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "5193b3a6-999c-4626-b534-e4b050cf560d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061358Z:d24b04e7-f581-489b-8079-a883c43000c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6196fe51b9c9d1e3e2873626ed02d90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:13:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40216a7d-6ef0-4bdc-80b5-6dfbf0af4408", + "x-ms-client-request-id": "f6196fe51b9c9d1e3e2873626ed02d90", + "x-ms-correlation-request-id": "d0448589-039a-457a-9e41-c97b22847422", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "58458669-2278-4830-99b9-3c228eb91313", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061400Z:d0448589-039a-457a-9e41-c97b22847422" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2602103ffcfcc413e3b80bb95e0a0e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "288ef5f6-4899-4197-aa48-a5e2be58d75c", + "x-ms-client-request-id": "e2602103ffcfcc413e3b80bb95e0a0e9", + "x-ms-correlation-request-id": "41030325-89b4-41c8-a45c-2ffc59e451a4", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "6a27b868-b57d-4fa1-8f9b-7b9cc99ca54b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061401Z:41030325-89b4-41c8-a45c-2ffc59e451a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1f13b97197004dcc173f3ce6385198b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "848f96f6-d37b-4846-9585-27dce049dcac", + "x-ms-client-request-id": "d1f13b97197004dcc173f3ce6385198b", + "x-ms-correlation-request-id": "5098d39f-99a6-4f09-adfc-85d6e940bd03", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "1a0ff6d4-5dae-47e7-a502-7f89589dd050", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061403Z:5098d39f-99a6-4f09-adfc-85d6e940bd03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "110c9d99dbbbe6182e4db8619b62085d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e49e2f4-0925-42ca-9645-569faf409039", + "x-ms-client-request-id": "110c9d99dbbbe6182e4db8619b62085d", + "x-ms-correlation-request-id": "b8f27f04-1def-4bfd-a623-8ad12eb76f52", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "284f7b32-6af9-4480-8539-ca346e79526f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061404Z:b8f27f04-1def-4bfd-a623-8ad12eb76f52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32cb8a885cdeea1f455b215b0b7268b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c5c0564-e1b9-4695-ba4f-819813f436fc", + "x-ms-client-request-id": "32cb8a885cdeea1f455b215b0b7268b9", + "x-ms-correlation-request-id": "abb0d8f2-313e-4406-bd6a-67876a90d007", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "9ea5b1cb-8386-4b9c-8165-98158f9f046e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061405Z:abb0d8f2-313e-4406-bd6a-67876a90d007" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f722f5218ed4bb2d230aa322617b695e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "810116e9-66bf-4176-9ef3-26cd74774b9b", + "x-ms-client-request-id": "f722f5218ed4bb2d230aa322617b695e", + "x-ms-correlation-request-id": "43490fc2-9cd4-426b-ae7f-0b8e1e78bfc5", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "870645a2-98e4-40d8-a840-3807e3722acf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061407Z:43490fc2-9cd4-426b-ae7f-0b8e1e78bfc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d946966be7b93cac7d22cc60b9bcdbbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "acac1c11-7cf4-4bc2-8065-0ded22a8e45b", + "x-ms-client-request-id": "d946966be7b93cac7d22cc60b9bcdbbb", + "x-ms-correlation-request-id": "69249ee7-f1d9-4741-889c-e5d4df6d6f64", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "ab30b152-7efb-4b17-a568-d94df5e986ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061408Z:69249ee7-f1d9-4741-889c-e5d4df6d6f64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a53ffee51040f9895c0f0fd3b9fc88c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73d620cb-34ec-49e6-a6f8-7d5b1eb43e4f", + "x-ms-client-request-id": "a53ffee51040f9895c0f0fd3b9fc88c9", + "x-ms-correlation-request-id": "cace390d-ec6d-4c9e-8cca-939ab963523b", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "025a0de7-831a-4694-bcfb-5df24cb28868", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061409Z:cace390d-ec6d-4c9e-8cca-939ab963523b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75f0c2f18f2c3aff48e57ab1c2cc0266", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23b513b3-31de-44bf-b39a-f3d727c2dc65", + "x-ms-client-request-id": "75f0c2f18f2c3aff48e57ab1c2cc0266", + "x-ms-correlation-request-id": "498a5b8c-d1f2-4ab6-bfd2-0ecb7aac3153", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "5ebcea16-6c94-4eed-a0b9-d52b95bbd472", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061410Z:498a5b8c-d1f2-4ab6-bfd2-0ecb7aac3153" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "623de72fc33c5a1e0c4d7caad7d88380", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee6ee8a7-5bda-47b1-8a84-7ef59a6fab7b", + "x-ms-client-request-id": "623de72fc33c5a1e0c4d7caad7d88380", + "x-ms-correlation-request-id": "0e14fba1-1b3e-424f-abcf-e81b073e0fe8", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "ef20c1c5-66f5-4455-877b-cd36d7e37d3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061412Z:0e14fba1-1b3e-424f-abcf-e81b073e0fe8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f76f029965cc558fff045d5b96d73790", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fae1ee4-a115-481a-96f9-281efce115eb", + "x-ms-client-request-id": "f76f029965cc558fff045d5b96d73790", + "x-ms-correlation-request-id": "52a9d214-6b73-4f56-b339-71064f91ee8c", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "8886d93b-9d78-4b01-a97d-fa2b49a01652", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061413Z:52a9d214-6b73-4f56-b339-71064f91ee8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1a3a80d26be2d8da49668de1255626f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccb2eaa2-4973-4808-9134-b779a67fd9db", + "x-ms-client-request-id": "d1a3a80d26be2d8da49668de1255626f", + "x-ms-correlation-request-id": "58e89407-2878-4e5f-bd77-bb6191586951", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "c63b8acc-f7dc-4e42-9ff7-f639e198dc59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061414Z:58e89407-2878-4e5f-bd77-bb6191586951" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf18f9610a5dca9a58e7633766c3c335", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91145448-8d69-45a5-ab80-3a89598afb6a", + "x-ms-client-request-id": "bf18f9610a5dca9a58e7633766c3c335", + "x-ms-correlation-request-id": "fd1d797f-9606-4101-844b-f294c2da7b68", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "26ca7104-09a8-42d3-a721-14f7fb34570f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061416Z:fd1d797f-9606-4101-844b-f294c2da7b68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f9dec16b23473c175415235fcb043aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8b4faf0-c55f-4588-b8d8-2062dc7f220b", + "x-ms-client-request-id": "2f9dec16b23473c175415235fcb043aa", + "x-ms-correlation-request-id": "99eb7a7e-e01a-4bda-a6f2-d0ac02e8673d", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "53c77185-906e-4c91-abdb-1e91f87a55bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061417Z:99eb7a7e-e01a-4bda-a6f2-d0ac02e8673d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9df9eda177bf02330ed978d6c256c6e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eff33021-f6a2-4c98-a5b0-bf8a28486a13", + "x-ms-client-request-id": "9df9eda177bf02330ed978d6c256c6e1", + "x-ms-correlation-request-id": "0501c1b9-e8ef-4c09-b04e-0e0052398357", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "5ab9b33b-10c0-41d0-a223-cd4db767792b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061418Z:0501c1b9-e8ef-4c09-b04e-0e0052398357" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26c833d233b7ae3a37a5491bb864cea7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eced7508-1daa-40bc-ad9b-b6bdf45482b1", + "x-ms-client-request-id": "26c833d233b7ae3a37a5491bb864cea7", + "x-ms-correlation-request-id": "3cba3db4-92cd-4b43-ba36-d1ce5ef2b890", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "aa591be6-0adf-4a96-aa29-78e63e287d38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061419Z:3cba3db4-92cd-4b43-ba36-d1ce5ef2b890" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7995b9a426c99e76b89a215b39eab01f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a875c054-abcb-45a4-82c8-1a7aa96cc744", + "x-ms-client-request-id": "7995b9a426c99e76b89a215b39eab01f", + "x-ms-correlation-request-id": "0c5bf156-0857-4ed1-86e9-106df199f859", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "d0751afd-9fff-4705-8d1b-8fa59a116ef4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061421Z:0c5bf156-0857-4ed1-86e9-106df199f859" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c863717b1ce86ef2b24a65192d184aa9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d49924f-7ed6-4f1d-bea5-1115f86a5db6", + "x-ms-client-request-id": "c863717b1ce86ef2b24a65192d184aa9", + "x-ms-correlation-request-id": "5afb2b6d-3376-4540-8af0-2a417a287d98", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "ef8f5b9b-2c4f-43db-a5bd-ecb825d0de56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061422Z:5afb2b6d-3376-4540-8af0-2a417a287d98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0932d10b4dc0ac18bd296e1c12df754c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "11f65bba-8cc5-498b-977a-0487974ac876", + "x-ms-client-request-id": "0932d10b4dc0ac18bd296e1c12df754c", + "x-ms-correlation-request-id": "c81d49b3-9ffc-410b-a065-1d6dbcf1b318", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "b7d5a07b-3982-48c7-93b1-f0e5db88c5d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061423Z:c81d49b3-9ffc-410b-a065-1d6dbcf1b318" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "469f2af4050188bfc726c67ec05c70a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06ead5cf-f9fa-4f3d-a626-90d29d3004bb", + "x-ms-client-request-id": "469f2af4050188bfc726c67ec05c70a0", + "x-ms-correlation-request-id": "1b67e732-7078-43a2-9b36-4bfb27d8507c", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "444406b6-4ab9-49c3-9331-788fa36b7b20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061425Z:1b67e732-7078-43a2-9b36-4bfb27d8507c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68507750a7b82d5e59b60bbeaed55bd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea447f68-ec31-463d-8b44-dac11c4bf954", + "x-ms-client-request-id": "68507750a7b82d5e59b60bbeaed55bd3", + "x-ms-correlation-request-id": "b3a7f0ef-3123-4b47-b7d1-25dc4755a788", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "3142c185-f795-4332-8254-c8b770ec1933", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061426Z:b3a7f0ef-3123-4b47-b7d1-25dc4755a788" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "032519d5037805a811a941998799ec61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1fdb178-972a-4741-8f0d-9b9f3b46b6fa", + "x-ms-client-request-id": "032519d5037805a811a941998799ec61", + "x-ms-correlation-request-id": "ac53d67d-5d79-401c-a8a9-274dd52875b0", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "fa8adec2-2116-45eb-9b44-7de573c41e3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061427Z:ac53d67d-5d79-401c-a8a9-274dd52875b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bcbcdb90c8e4d94cb72ed4af901daf2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f7f99e1-4c92-418d-933a-890f9998017e", + "x-ms-client-request-id": "9bcbcdb90c8e4d94cb72ed4af901daf2", + "x-ms-correlation-request-id": "ea321e37-3607-446d-9dbe-eda9238c6a42", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "88aaee46-b725-4344-b5bc-7b6a97f5dc41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061428Z:ea321e37-3607-446d-9dbe-eda9238c6a42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7a9f2cb6d364d28ce4a570f65c4a6bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ffd0e85a-6296-4b17-a774-da7a8619e439", + "x-ms-client-request-id": "a7a9f2cb6d364d28ce4a570f65c4a6bf", + "x-ms-correlation-request-id": "34d89698-4610-4a65-b1a7-fdadf5774929", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "05b13c11-410a-488a-8e99-e1fc747b320a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061430Z:34d89698-4610-4a65-b1a7-fdadf5774929" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e005aacac009c84484d83706155d0b10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ca6c987-172b-4928-b2eb-33cb151a0b84", + "x-ms-client-request-id": "e005aacac009c84484d83706155d0b10", + "x-ms-correlation-request-id": "7210480f-0fbb-49cb-8b3f-a5bbdd2d817e", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "7ab23cf1-027d-4373-ab93-6cc3edb71773", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061431Z:7210480f-0fbb-49cb-8b3f-a5bbdd2d817e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94ce4fcf45f04b2aa57ecc44b584e706", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "889cf2fe-0de7-4b76-a5bc-8906b6db684d", + "x-ms-client-request-id": "94ce4fcf45f04b2aa57ecc44b584e706", + "x-ms-correlation-request-id": "cc771ebc-425f-4239-b6a2-49726d1b99ea", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "700d15e5-1af7-43b3-b238-1f2bfd168456", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061432Z:cc771ebc-425f-4239-b6a2-49726d1b99ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f802ecbf9fb0ae8ade0225e35223870", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9347f3bd-1300-4443-91ad-8e14578c5810", + "x-ms-client-request-id": "4f802ecbf9fb0ae8ade0225e35223870", + "x-ms-correlation-request-id": "15af5443-6bfa-41b3-9c73-eb4e64e97364", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "5365b9e7-a7f9-49af-b041-e1d9ec3c3443", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061433Z:15af5443-6bfa-41b3-9c73-eb4e64e97364" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "153f463e12f684ce80b93b8af4001200", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee2be984-b3b7-4749-a532-ae9a8411ddf5", + "x-ms-client-request-id": "153f463e12f684ce80b93b8af4001200", + "x-ms-correlation-request-id": "a43c204f-0544-4f0d-9e5d-78da88491e4a", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "2840512b-23c0-44e2-8d19-468ddfdaf760", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061435Z:a43c204f-0544-4f0d-9e5d-78da88491e4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e73a30f0bcddd51466c4e60f22cb1682", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c57d9b87-c07e-4117-8e9b-e46d78c66db8", + "x-ms-client-request-id": "e73a30f0bcddd51466c4e60f22cb1682", + "x-ms-correlation-request-id": "68f2d771-3c65-4a03-b034-5ababe5faef8", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "bc604b45-f046-4434-8ef1-8b13d5837936", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061436Z:68f2d771-3c65-4a03-b034-5ababe5faef8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f065b45d245b9105ffbcf41bd5d16ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c0aade1-fb4a-48f4-aae7-0bae2178fa73", + "x-ms-client-request-id": "6f065b45d245b9105ffbcf41bd5d16ad", + "x-ms-correlation-request-id": "36316ed9-b878-4b78-8e17-073c64e7673a", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "3e81a5bb-af2a-4f14-80e2-2f43d8f68fca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061437Z:36316ed9-b878-4b78-8e17-073c64e7673a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "046e22ce51e782933269ae312bbe62b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fe6146a-61c5-4ac4-bf9f-07de045e23c9", + "x-ms-client-request-id": "046e22ce51e782933269ae312bbe62b5", + "x-ms-correlation-request-id": "d59e805f-bf99-4cde-a51b-b4fc26cb4ced", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "829c2349-5895-42d1-bbf1-e58176a5cac3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061439Z:d59e805f-bf99-4cde-a51b-b4fc26cb4ced" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9845b9a2a3fa1ebb208187e1ecd21809", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "695733d5-784f-48ea-a38d-0b7e794b35d2", + "x-ms-client-request-id": "9845b9a2a3fa1ebb208187e1ecd21809", + "x-ms-correlation-request-id": "77a6ab56-fa06-4ca9-959c-0889f78dfbe2", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "c9f0461f-10a0-4546-a6a3-83519ddef143", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061440Z:77a6ab56-fa06-4ca9-959c-0889f78dfbe2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "004138ae125cf49ac8833ddb23df8da0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9f19b5d-a05d-491b-8375-73b6cb5402fc", + "x-ms-client-request-id": "004138ae125cf49ac8833ddb23df8da0", + "x-ms-correlation-request-id": "e475de88-caea-472b-baa2-ff00ddc76d70", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "392928d8-f6f1-447a-bea4-58c11594eaaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061441Z:e475de88-caea-472b-baa2-ff00ddc76d70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "049f1a997d182bb36750e466c9b1955f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "486683f5-42bd-46f1-b2b7-27b2788fd50a", + "x-ms-client-request-id": "049f1a997d182bb36750e466c9b1955f", + "x-ms-correlation-request-id": "39ad3f79-d2bd-47e6-be62-05ce49e21350", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "4027ad2a-d1db-40b7-8d8c-8c9142df5f8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061442Z:39ad3f79-d2bd-47e6-be62-05ce49e21350" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f283a551617d90581e50d07666dffa41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56c512bc-ad85-4df5-aedb-dd365a6ef016", + "x-ms-client-request-id": "f283a551617d90581e50d07666dffa41", + "x-ms-correlation-request-id": "1835e709-9056-44bc-b340-cf6455571762", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "2784a406-fcdf-4409-a4b2-c7102be14590", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061444Z:1835e709-9056-44bc-b340-cf6455571762" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d248e7f3143330f08516990c2d342b16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17d921b3-793d-4ea2-a2c0-69fdf3895704", + "x-ms-client-request-id": "d248e7f3143330f08516990c2d342b16", + "x-ms-correlation-request-id": "d9fea49a-da10-403b-8ee6-ae2b82f1a4ff", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "5278ff22-310f-4b35-b277-8f9278a2075c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061445Z:d9fea49a-da10-403b-8ee6-ae2b82f1a4ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d89ddee9a5b3823c20ee6c8ad3cc487", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7fc39db-b027-43a7-be4f-29ca1b5fa1e9", + "x-ms-client-request-id": "7d89ddee9a5b3823c20ee6c8ad3cc487", + "x-ms-correlation-request-id": "8808ad65-7aa8-4c60-b315-dac6495a9a19", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "445706c5-4377-4e87-bff0-6157e12d3e85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061446Z:8808ad65-7aa8-4c60-b315-dac6495a9a19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e273a355c2693d2bb5526d66c84c63ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d1810f4d-8e23-4612-9d0f-170663e57af4", + "x-ms-client-request-id": "e273a355c2693d2bb5526d66c84c63ea", + "x-ms-correlation-request-id": "fc27e251-c3ec-4f70-958c-623d7d42fcfa", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "c2fb85cd-1dda-4225-addb-9e1a7a5d9a59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061448Z:fc27e251-c3ec-4f70-958c-623d7d42fcfa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8887b9247d5658e5c30f10252d278348", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee5636d8-7982-4231-9011-92490335cfa9", + "x-ms-client-request-id": "8887b9247d5658e5c30f10252d278348", + "x-ms-correlation-request-id": "c9115fb6-7697-4909-89a6-2ec2c0bb9e57", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "017480e6-ba18-4927-ab6c-fdc0cb6b017d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061449Z:c9115fb6-7697-4909-89a6-2ec2c0bb9e57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ab6125148c02bacb24cc8082dbc7075", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c1c44128-89c6-451e-83b5-0609a3e7a664", + "x-ms-client-request-id": "8ab6125148c02bacb24cc8082dbc7075", + "x-ms-correlation-request-id": "7b7fbbc5-252f-4836-a716-953ff2fe259a", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "f8ae3f46-25c2-4104-aac2-adcad64577a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061450Z:7b7fbbc5-252f-4836-a716-953ff2fe259a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3a3fbab3cb5d830bd1a1e59b2060f8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89e70477-c0de-4049-8f8e-34aac875cc77", + "x-ms-client-request-id": "f3a3fbab3cb5d830bd1a1e59b2060f8d", + "x-ms-correlation-request-id": "f00da24c-2639-4866-a326-5e8f4434e4f0", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "1434153f-0f0e-45e6-bd6f-ad1c83fe9984", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061451Z:f00da24c-2639-4866-a326-5e8f4434e4f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b51524cfd896db290d5bd60ab4dc2b07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1092cb3f-8578-4bf6-ada6-873f56a091ce", + "x-ms-client-request-id": "b51524cfd896db290d5bd60ab4dc2b07", + "x-ms-correlation-request-id": "7dcdf91c-9a27-429d-9389-774f232a4d8b", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "ad067258-4ce2-4f05-a63f-9bd00a2d3588", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061453Z:7dcdf91c-9a27-429d-9389-774f232a4d8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "317a9a9f8f831593e1ddcca62a5279ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e9a6a77-11b3-4ee2-a563-2e7177308937", + "x-ms-client-request-id": "317a9a9f8f831593e1ddcca62a5279ac", + "x-ms-correlation-request-id": "71ee8beb-fbd7-4dfb-aa56-8ed5df631d66", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "27351435-3a68-4a74-bde6-8790e36d596b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061454Z:71ee8beb-fbd7-4dfb-aa56-8ed5df631d66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08383a3cbaa7d2dfd2c8e659662624e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d2d387e-cb99-48ad-b51d-a4251d07dba3", + "x-ms-client-request-id": "08383a3cbaa7d2dfd2c8e659662624e0", + "x-ms-correlation-request-id": "17a6cffc-f167-48b6-a93e-8ade18c87161", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "f6a6de5d-e2ab-4337-9cce-b94f6d4fe2e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061455Z:17a6cffc-f167-48b6-a93e-8ade18c87161" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17ba16efdd8b3f099100d4b80c83b1ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "567b7ed9-a159-49d9-b915-6ff512626c09", + "x-ms-client-request-id": "17ba16efdd8b3f099100d4b80c83b1ba", + "x-ms-correlation-request-id": "6fcaabf7-e0be-45ce-abbe-8ffa4b7305ea", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "94ed3eb2-8c52-45fb-8900-eb839ae836de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061456Z:6fcaabf7-e0be-45ce-abbe-8ffa4b7305ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79cd29e222a3e560bba85fbba93aaeba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b3d07b91-6428-49a0-82c2-c2bcfb0418a1", + "x-ms-client-request-id": "79cd29e222a3e560bba85fbba93aaeba", + "x-ms-correlation-request-id": "65336b70-5399-44f2-8ba9-b15931a19d62", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "efac7fd6-abe1-4f46-979a-637631dfdb8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061458Z:65336b70-5399-44f2-8ba9-b15931a19d62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13b7ebb961985f2031f977a7e527c54f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:14:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4949b1b-2385-4a85-8030-1fa487d910ba", + "x-ms-client-request-id": "13b7ebb961985f2031f977a7e527c54f", + "x-ms-correlation-request-id": "ec05e814-95a7-4d85-8e5f-b3abb44fafa5", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "2ba46a77-f8ef-4d69-9abb-782ec13d53bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061459Z:ec05e814-95a7-4d85-8e5f-b3abb44fafa5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c762c16aa59cc3cb6d45ce37e4d9656", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc7a1b30-8a79-4881-a3ea-4468ef40ea0e", + "x-ms-client-request-id": "3c762c16aa59cc3cb6d45ce37e4d9656", + "x-ms-correlation-request-id": "485b7276-5fc9-46a6-9023-45a152aecc5e", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "14c19e5e-3889-4f97-ae8b-0462e4c59c9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061501Z:485b7276-5fc9-46a6-9023-45a152aecc5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21fe1a519dcb8121096e48aaaab90093", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0040faa-66e2-4e82-a960-974e82527d6a", + "x-ms-client-request-id": "21fe1a519dcb8121096e48aaaab90093", + "x-ms-correlation-request-id": "dbf81b36-7787-482a-9e63-eeb989c1ef53", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "3135db40-8650-471c-ad76-b11ef14401be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061503Z:dbf81b36-7787-482a-9e63-eeb989c1ef53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ca50fe271c30f61aeea5cc3043de0e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6cab81a-1d5c-4686-856d-f5e6bde458ed", + "x-ms-client-request-id": "7ca50fe271c30f61aeea5cc3043de0e3", + "x-ms-correlation-request-id": "c7960a5a-02cf-4e58-b1c5-57960622b76b", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "9daeef37-45aa-425e-892f-b04e63746e6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061504Z:c7960a5a-02cf-4e58-b1c5-57960622b76b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca552062a42879830af533ea629221fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe075e98-ed25-4ac5-b3dc-3714fd3bc921", + "x-ms-client-request-id": "ca552062a42879830af533ea629221fd", + "x-ms-correlation-request-id": "e93d57ef-9309-49c9-b839-edfb8bdf4575", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "efa1225b-9b57-48e8-89f7-a90c018caf97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061505Z:e93d57ef-9309-49c9-b839-edfb8bdf4575" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e00c8d419a8df93b9ee72e1405e7ccb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "335c4fa3-0d88-4895-a236-e217c5c4249f", + "x-ms-client-request-id": "6e00c8d419a8df93b9ee72e1405e7ccb", + "x-ms-correlation-request-id": "626a27a2-cecd-4614-aaee-bf628b1c69cd", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "9ddcc616-0dc0-4c0a-a7f3-ef43aa4de247", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061507Z:626a27a2-cecd-4614-aaee-bf628b1c69cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a48648d35633d6a8b2b72cd3e76ad1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8164a14-f6dd-4970-983e-bc5871b3b2e1", + "x-ms-client-request-id": "8a48648d35633d6a8b2b72cd3e76ad1c", + "x-ms-correlation-request-id": "d9c32eec-0838-477d-a59d-c3b15238d6a3", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "875cece2-2632-4f7b-a90b-51bf0b91bab4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061508Z:d9c32eec-0838-477d-a59d-c3b15238d6a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cee5fc9723d483a8d76113a32a238ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a6af6b5-9be1-45e1-9845-fac1311c9488", + "x-ms-client-request-id": "3cee5fc9723d483a8d76113a32a238ac", + "x-ms-correlation-request-id": "b3f61f20-90c0-4401-ade7-21f601494e22", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "765c8c74-ef4d-492d-bf1b-449782200bef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061509Z:b3f61f20-90c0-4401-ade7-21f601494e22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd5c687997499f9a5dc2e27ca7c6a142", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "286f7aae-434c-4dbd-9a8f-8a854eb89640", + "x-ms-client-request-id": "fd5c687997499f9a5dc2e27ca7c6a142", + "x-ms-correlation-request-id": "a7902075-71c7-4f32-9a25-77835d972b16", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "ac882374-a3b7-4c71-888f-9b353099d3a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061511Z:a7902075-71c7-4f32-9a25-77835d972b16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1185641406f1b8e2a00fdec23300be9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3adf8755-d79f-4fe9-abf4-a0af3d72708c", + "x-ms-client-request-id": "e1185641406f1b8e2a00fdec23300be9", + "x-ms-correlation-request-id": "e4cf378f-66cd-4448-8e26-d78ad1e7db55", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "5173b17c-0cee-4096-b4ef-552b76d0d781", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061512Z:e4cf378f-66cd-4448-8e26-d78ad1e7db55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d653c5f3af1931d3c54fde7a8fbda0c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bef850ba-2397-42ee-b110-ca39bb30b24b", + "x-ms-client-request-id": "d653c5f3af1931d3c54fde7a8fbda0c6", + "x-ms-correlation-request-id": "ad96449b-d227-4d16-aae9-f47a68fcefe5", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "5111ec9f-4902-4ec6-b147-0d08ad848ee0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061513Z:ad96449b-d227-4d16-aae9-f47a68fcefe5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dcf8ced5578a393cd941d34999ad7b2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e74dbef-bca3-4958-9af9-557293396c3c", + "x-ms-client-request-id": "dcf8ced5578a393cd941d34999ad7b2c", + "x-ms-correlation-request-id": "dd44e008-d8f7-48ee-94f1-32477332d979", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "55305054-6d17-44cb-bc7e-ec28faf7e95d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061514Z:dd44e008-d8f7-48ee-94f1-32477332d979" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e189f9b6ca72912882e61c2061138c6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4995df5-a64b-4c10-9827-8cacb22e92fa", + "x-ms-client-request-id": "e189f9b6ca72912882e61c2061138c6c", + "x-ms-correlation-request-id": "dde8018e-16f2-4fc0-b17d-94e27449ab30", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "a021b7e4-12bc-4d3d-ba4f-71e68597382b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061516Z:dde8018e-16f2-4fc0-b17d-94e27449ab30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5517365f2f389c5e891afcd8dc8a9817", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12c71cf5-59e1-448e-9553-c6418eb28aba", + "x-ms-client-request-id": "5517365f2f389c5e891afcd8dc8a9817", + "x-ms-correlation-request-id": "77002b73-9cf2-4d1c-9400-9f044d7de248", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "b29201e4-3ef7-41c4-99ed-723627b25bf4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061517Z:77002b73-9cf2-4d1c-9400-9f044d7de248" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96c3b1d3bf340a54a56659a43b1cd7c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d689dc6f-4fee-4b4c-ac42-61069efa73e3", + "x-ms-client-request-id": "96c3b1d3bf340a54a56659a43b1cd7c5", + "x-ms-correlation-request-id": "befc75b4-4c1c-4739-94fa-fe42ff79a004", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "500ebf0d-eb46-4790-86e6-859c25f8d57b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061518Z:befc75b4-4c1c-4739-94fa-fe42ff79a004" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63e966b5269587f49aed5857ce50b5f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2495e209-1def-4e45-8dff-b9e2c8e60802", + "x-ms-client-request-id": "63e966b5269587f49aed5857ce50b5f8", + "x-ms-correlation-request-id": "237618f1-76bf-4630-abe5-02236679aac5", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "9a57efc9-98fc-4d06-9d76-df1cb13bd90b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061520Z:237618f1-76bf-4630-abe5-02236679aac5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b04c044ef550a038e10dafd2d6ba606c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5395743d-c556-43ca-a8a3-1b4cd5707fe1", + "x-ms-client-request-id": "b04c044ef550a038e10dafd2d6ba606c", + "x-ms-correlation-request-id": "5daa6980-d307-4d44-b10d-2e7a64d4a12a", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "e090c042-8b75-480b-9a0c-ca9ca163e842", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061521Z:5daa6980-d307-4d44-b10d-2e7a64d4a12a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7523364234a0ad82bc3cfb4666fc3c55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af429677-d01a-464c-9b82-9a52168e2783", + "x-ms-client-request-id": "7523364234a0ad82bc3cfb4666fc3c55", + "x-ms-correlation-request-id": "e4c691f4-f6b6-4acd-b050-006f759aef12", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "8cb4ead7-1242-4f5a-bb6b-37d9ebcd26fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061522Z:e4c691f4-f6b6-4acd-b050-006f759aef12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "375660b127cfbf752e4981887622b0df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a96bcc7f-5348-48b4-a4c2-12fb3705b905", + "x-ms-client-request-id": "375660b127cfbf752e4981887622b0df", + "x-ms-correlation-request-id": "fd70e0dd-576f-4076-aba0-7c3ed155f917", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "0a081edf-7c87-4600-86d3-b50e415a77d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061523Z:fd70e0dd-576f-4076-aba0-7c3ed155f917" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9715ec8c3f2c1958819ff313f9f139e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad824353-3e23-4d2c-ba6b-982c2746f3fb", + "x-ms-client-request-id": "9715ec8c3f2c1958819ff313f9f139e5", + "x-ms-correlation-request-id": "e5705bc9-955b-425a-96ac-9be6fa4cb6eb", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "d945642a-d826-4797-a3eb-f40bb1385648", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061525Z:e5705bc9-955b-425a-96ac-9be6fa4cb6eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76215ad029641b9cc1644757b2fa369a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "451b96ec-a970-42b4-b474-43349ea4a043", + "x-ms-client-request-id": "76215ad029641b9cc1644757b2fa369a", + "x-ms-correlation-request-id": "d2edd01b-21a9-43f1-8946-056ef0245f79", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "8b5b6918-a711-458c-a84b-9a97dcadc076", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061526Z:d2edd01b-21a9-43f1-8946-056ef0245f79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7aba1c8ca5e77128083cb5303361c53d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d267df90-b844-4fdd-893a-9a88f0b72490", + "x-ms-client-request-id": "7aba1c8ca5e77128083cb5303361c53d", + "x-ms-correlation-request-id": "b7818dd1-ed07-4457-81b1-550468eff078", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "d9111f5b-fcf6-4514-9978-a06832350383", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061527Z:b7818dd1-ed07-4457-81b1-550468eff078" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bb79c0f3901627b4ff9d5c8f8006687", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93671f5b-1a06-40ff-8a0e-d9da4815d81c", + "x-ms-client-request-id": "1bb79c0f3901627b4ff9d5c8f8006687", + "x-ms-correlation-request-id": "ce15b1c5-859a-42ea-ae21-43c7bc36c926", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "468b6c78-f1e0-4786-a84a-43d5ec3c9101", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061529Z:ce15b1c5-859a-42ea-ae21-43c7bc36c926" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd875968bf372bfd31af6e27746ce860", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a66de07-61ca-41a6-9d24-710a84f69083", + "x-ms-client-request-id": "dd875968bf372bfd31af6e27746ce860", + "x-ms-correlation-request-id": "3488daed-9be4-495e-8d6d-9da523a88f83", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "a418b027-a214-4e58-a785-3cb0e0ae0e6f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061530Z:3488daed-9be4-495e-8d6d-9da523a88f83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1648099e1b425299a1572bedcf607907", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20e69c49-7e01-41c4-ac1c-ddc517ae7582", + "x-ms-client-request-id": "1648099e1b425299a1572bedcf607907", + "x-ms-correlation-request-id": "5069d7f7-98a4-4e44-a772-c04b8bc91566", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "c37f6e84-4194-4f19-9b90-30b11177976a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061531Z:5069d7f7-98a4-4e44-a772-c04b8bc91566" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dac82ed5e8d950069e8ce951cb53eee3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72a5d26d-f497-44b0-a9e6-b703eb49a95e", + "x-ms-client-request-id": "dac82ed5e8d950069e8ce951cb53eee3", + "x-ms-correlation-request-id": "f26da44d-d543-4223-b7e1-76a60f1c1a3b", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "46ddd44d-4862-4d99-be2d-666346800dd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061532Z:f26da44d-d543-4223-b7e1-76a60f1c1a3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee29751150b84d45bf353cdf93105bd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a80bb09f-0baa-4dd4-b1e7-855a920394e3", + "x-ms-client-request-id": "ee29751150b84d45bf353cdf93105bd1", + "x-ms-correlation-request-id": "b450412a-2391-4a05-a76f-6c4c278396c1", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "9240b343-e936-45f0-9dfc-c9f3d5a075f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061534Z:b450412a-2391-4a05-a76f-6c4c278396c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "465267360ea3b68603f778b63147864e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d13f0f8e-7d41-4665-a7ef-72b95fa2b2a0", + "x-ms-client-request-id": "465267360ea3b68603f778b63147864e", + "x-ms-correlation-request-id": "e69f4119-33bd-4462-a494-5de56c6b1f34", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "e8303904-357a-4f10-9090-23621ec6ea53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061535Z:e69f4119-33bd-4462-a494-5de56c6b1f34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5adc47698a36854ee97a1aa3ab26bc8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ed631b1-46e2-46d7-a193-4d3e1e01c914", + "x-ms-client-request-id": "5adc47698a36854ee97a1aa3ab26bc8e", + "x-ms-correlation-request-id": "1c82c74f-a956-4c08-8fcf-a804d8fd2ddd", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "4effca6a-bebd-4949-b813-ee5672d821ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061537Z:1c82c74f-a956-4c08-8fcf-a804d8fd2ddd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "641b1730a801023fee73ebc0d78e1c78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4407340-72d0-4681-b8ce-f005e05a87f4", + "x-ms-client-request-id": "641b1730a801023fee73ebc0d78e1c78", + "x-ms-correlation-request-id": "8f39137c-99a7-4c36-90e4-1e3ec90bdb9b", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "bba6f12d-6c71-4f12-a085-8ea00e10ee71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061538Z:8f39137c-99a7-4c36-90e4-1e3ec90bdb9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c75eeaf0133ab9b18cc5d29f3e30adc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "945ec523-760f-42c0-8246-168b4f861fa7", + "x-ms-client-request-id": "4c75eeaf0133ab9b18cc5d29f3e30adc", + "x-ms-correlation-request-id": "9c4a5623-e5d5-44ec-9545-25a987aeab0a", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "0cfe9a72-eafd-449f-ba72-8787dd70b428", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061539Z:9c4a5623-e5d5-44ec-9545-25a987aeab0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1986e93b222bc14c08d96cc29f8ead5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e4c5c6b-859d-4fa2-b665-e0182fc301cf", + "x-ms-client-request-id": "1986e93b222bc14c08d96cc29f8ead5a", + "x-ms-correlation-request-id": "86a18b87-61b1-4063-8568-76c15a3499e3", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "86946601-d256-498b-93e3-508fa53fe4d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061540Z:86a18b87-61b1-4063-8568-76c15a3499e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdf4a25e70b02e5b7c6f4c344a160e0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59c550fe-406a-47e5-b3f2-af175acdde1d", + "x-ms-client-request-id": "bdf4a25e70b02e5b7c6f4c344a160e0a", + "x-ms-correlation-request-id": "560ff682-1221-46f8-b0ee-82904f2908a2", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "12f8a387-002b-4026-8221-23d7870415ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061542Z:560ff682-1221-46f8-b0ee-82904f2908a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed850e6902088d4ca1b4435995d90c8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5aa1b5e-1fa2-4bca-8241-c6c377e9e6de", + "x-ms-client-request-id": "ed850e6902088d4ca1b4435995d90c8a", + "x-ms-correlation-request-id": "1eab476d-6ea4-45c4-964c-a5428aee7110", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "b3b03440-291d-49cd-b52b-07d5aab56e41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061543Z:1eab476d-6ea4-45c4-964c-a5428aee7110" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51ca021e4cefca2b8e579dbcd51776f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5eb6cb96-e16d-4dea-ad54-23859bb57b6d", + "x-ms-client-request-id": "51ca021e4cefca2b8e579dbcd51776f2", + "x-ms-correlation-request-id": "b4969e6b-c03a-4347-bfe5-46847bb0ed66", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "ac663a80-b5d9-41dc-98b2-d7ce53f7bb8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061544Z:b4969e6b-c03a-4347-bfe5-46847bb0ed66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "905961cbc0085c5255661cfc2c0198a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5f28a68-4883-496d-b5ef-9bfd9c16bdb4", + "x-ms-client-request-id": "905961cbc0085c5255661cfc2c0198a2", + "x-ms-correlation-request-id": "69a89cde-5dd9-4609-b45a-2e9d3c145298", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "a0dde3c4-64d7-4b6a-9af5-f77cd5d6a467", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061546Z:69a89cde-5dd9-4609-b45a-2e9d3c145298" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4716c263bd4c1c1be2ba5eb06590b789", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45a6019a-c9cc-4fd4-8d6c-3be76d685831", + "x-ms-client-request-id": "4716c263bd4c1c1be2ba5eb06590b789", + "x-ms-correlation-request-id": "9e5938a3-5638-402a-8e5e-892c263ce47d", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "6276797a-6f1f-4212-9562-82b7876a7075", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061547Z:9e5938a3-5638-402a-8e5e-892c263ce47d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "348e513e7b805e81b06dfb882f2f9e8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a78a470f-c726-4438-9257-487412751962", + "x-ms-client-request-id": "348e513e7b805e81b06dfb882f2f9e8d", + "x-ms-correlation-request-id": "a8c4f9ed-f60c-405d-b927-a15d20dcf667", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "d391ff39-5443-468a-b1a2-c61663813fe0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061548Z:a8c4f9ed-f60c-405d-b927-a15d20dcf667" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1359fabe2e010ea5463cae4e61a1f6c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b79b991a-1ca8-424d-8fbc-835379b81784", + "x-ms-client-request-id": "1359fabe2e010ea5463cae4e61a1f6c5", + "x-ms-correlation-request-id": "988db6c7-6d92-447b-b91d-d6a7b8d8afb8", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "07aec145-8a7a-4bcf-a65f-7b5fccaa38c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061549Z:988db6c7-6d92-447b-b91d-d6a7b8d8afb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbbe93af6473e72241b897dec192ecb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0b26d35-bb6e-4dfb-9d00-a376a02dc2fc", + "x-ms-client-request-id": "dbbe93af6473e72241b897dec192ecb2", + "x-ms-correlation-request-id": "91e366d6-a832-419a-b1de-e1d0f097684b", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "f5292ed0-335d-43ab-a12b-fd7b27e5c1aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061551Z:91e366d6-a832-419a-b1de-e1d0f097684b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6af1d11ca4360f88ab80ee43cd32fc0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d24e522c-fad1-4bef-b3c5-764180d5b18a", + "x-ms-client-request-id": "6af1d11ca4360f88ab80ee43cd32fc0f", + "x-ms-correlation-request-id": "d8208bf8-b206-4ffd-bb58-0ca6063d7bca", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "cd43f3c1-4802-4143-a1c5-6812a4a0dae0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061552Z:d8208bf8-b206-4ffd-bb58-0ca6063d7bca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cd93677c2715a19d871d24897c74cb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1be7d34d-8847-4f8f-b12b-ee98648f9d23", + "x-ms-client-request-id": "9cd93677c2715a19d871d24897c74cb3", + "x-ms-correlation-request-id": "abaaed87-83ac-4945-9f33-8a4dd14f63a6", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "b372e493-b24b-467b-9d5a-4cd3843ea3cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061553Z:abaaed87-83ac-4945-9f33-8a4dd14f63a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f32fb508baf0a8e0bae2ff376df190e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "44d52059-a883-4db5-8cf8-6eac758122f2", + "x-ms-client-request-id": "8f32fb508baf0a8e0bae2ff376df190e", + "x-ms-correlation-request-id": "a163f192-fb08-4d76-86f7-b100e8695a01", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "ea299883-1be6-4544-9b2d-61b28d4206a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061555Z:a163f192-fb08-4d76-86f7-b100e8695a01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a6787bb50b85940b89792c4d13f77e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a3824b2-1a08-4a82-8722-4b0ab30610c3", + "x-ms-client-request-id": "8a6787bb50b85940b89792c4d13f77e4", + "x-ms-correlation-request-id": "9a2e7709-e088-4b77-8aab-2da8c279a633", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "8a30e972-25d0-42cf-a615-45e83978a767", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061556Z:9a2e7709-e088-4b77-8aab-2da8c279a633" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1f33a336d00eb5fa7ce91c39325e3f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0744622-99de-4dbf-9c0d-16e2dfb0eb1b", + "x-ms-client-request-id": "d1f33a336d00eb5fa7ce91c39325e3f8", + "x-ms-correlation-request-id": "abf0f1ab-1590-43e7-aff4-489cc36198fd", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "63d8ac9d-ca4d-4d6a-bfed-d21f2d5aae4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061557Z:abf0f1ab-1590-43e7-aff4-489cc36198fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f8cc358c160fffbbbd9d717f9ca39cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:15:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "949a1f97-df60-499a-8ff4-bf2029354c16", + "x-ms-client-request-id": "0f8cc358c160fffbbbd9d717f9ca39cb", + "x-ms-correlation-request-id": "aa875c68-f96e-4bdf-ab18-715e1cbfe384", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "e5689803-7631-432b-bcaf-ade8b139eca3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061558Z:aa875c68-f96e-4bdf-ab18-715e1cbfe384" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cc04b3648ec4e0e277be3e9bf7dc592", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d267e65d-a1e9-4e27-bc68-f8852f7274f3", + "x-ms-client-request-id": "3cc04b3648ec4e0e277be3e9bf7dc592", + "x-ms-correlation-request-id": "70f786c8-1ba1-4bfe-a581-96f70ba95b29", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "8cc48cff-59ed-4d1f-bde0-5c47e71f4410", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061600Z:70f786c8-1ba1-4bfe-a581-96f70ba95b29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d6c99b467b271833ef316269548f2dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1fd1f5eb-8e09-4689-8bc6-8748ca24e739", + "x-ms-client-request-id": "0d6c99b467b271833ef316269548f2dd", + "x-ms-correlation-request-id": "56546b72-f8d0-47b6-a720-c2c7049c3d0f", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "e8e64f9d-fc9d-41a4-bfe4-57f0bc20bf7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061601Z:56546b72-f8d0-47b6-a720-c2c7049c3d0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "488cc595a7650f0cb53de8e4de12403d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9cbf5d81-8ebd-4855-8492-3b9e16e38fd6", + "x-ms-client-request-id": "488cc595a7650f0cb53de8e4de12403d", + "x-ms-correlation-request-id": "0701038c-02b7-48ff-a0a9-c04f79f298cb", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "69df9af7-2dcb-4e2f-95b6-b1c8be756be3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061602Z:0701038c-02b7-48ff-a0a9-c04f79f298cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f6345132b5dce18c74ffdf832e7b8df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "814f2066-4f13-4830-aa30-9e8c857856de", + "x-ms-client-request-id": "5f6345132b5dce18c74ffdf832e7b8df", + "x-ms-correlation-request-id": "bef04e0e-ffdc-46df-814a-e08bbe63b49c", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "f0d75926-c591-432d-bb97-d1e75b92b0f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061603Z:bef04e0e-ffdc-46df-814a-e08bbe63b49c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f95306897df10d2c8d5d58757f9f922c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a5825e2-0236-47b4-ae71-8a5b466da64e", + "x-ms-client-request-id": "f95306897df10d2c8d5d58757f9f922c", + "x-ms-correlation-request-id": "5d9c5a9b-1e21-4c7d-8d28-c7225da50115", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "db44cf2c-6429-472b-a08d-51731608b068", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061605Z:5d9c5a9b-1e21-4c7d-8d28-c7225da50115" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5013d8b392e46a7facbd8115a914ddcd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40208c24-9db6-49c2-ad30-4869140657a9", + "x-ms-client-request-id": "5013d8b392e46a7facbd8115a914ddcd", + "x-ms-correlation-request-id": "d3e2da83-ae1e-4350-ad7b-d8e3a65da905", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "3b810d66-e77c-4f52-9b66-5d2904234d56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061606Z:d3e2da83-ae1e-4350-ad7b-d8e3a65da905" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d75b088446be954b1856d200d2a34f27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f6ec652-239a-4a9f-87f1-66839f0e5596", + "x-ms-client-request-id": "d75b088446be954b1856d200d2a34f27", + "x-ms-correlation-request-id": "25ffb307-27ca-4136-9d73-b39003e46052", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "d679fb23-6fab-435f-824b-029bfb3a7e6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061607Z:25ffb307-27ca-4136-9d73-b39003e46052" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5945d1bc68d4f6fa86e94d34fc166378", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eae842c8-aef1-43a2-b23a-60e74d80a90f", + "x-ms-client-request-id": "5945d1bc68d4f6fa86e94d34fc166378", + "x-ms-correlation-request-id": "1c4480ec-9d52-4908-9bcb-91ddf23e1007", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "67785942-daec-4002-8ca1-ce027da87c3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061609Z:1c4480ec-9d52-4908-9bcb-91ddf23e1007" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77f08a7fbb436c6d8c7d388ec07f9708", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57b1d124-7ee1-4d93-8d80-69044329ae8c", + "x-ms-client-request-id": "77f08a7fbb436c6d8c7d388ec07f9708", + "x-ms-correlation-request-id": "7ab4adcf-fe1f-4252-aa11-0a0dd24cde9c", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "671d2370-7a09-4aab-aea5-4db71f7135b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061610Z:7ab4adcf-fe1f-4252-aa11-0a0dd24cde9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d759596e83ce1cf90d6450d5f9179901", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "142adac4-7bb1-465e-87ef-0c5c79efc34b", + "x-ms-client-request-id": "d759596e83ce1cf90d6450d5f9179901", + "x-ms-correlation-request-id": "42eceb72-b46d-4a4a-93c9-a8293962e428", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "59cf0079-7563-4cda-8ba8-b62c6297e100", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061611Z:42eceb72-b46d-4a4a-93c9-a8293962e428" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "478059f2d7b301e463d9cc562f6b3507", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd4c80f9-1638-4093-b173-85f9f27cda37", + "x-ms-client-request-id": "478059f2d7b301e463d9cc562f6b3507", + "x-ms-correlation-request-id": "775a18ee-ec87-4d0a-a5dd-d97a9dfe3d35", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "273fb34f-7a9e-43d2-a98a-8687cb7b11f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061612Z:775a18ee-ec87-4d0a-a5dd-d97a9dfe3d35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3c644518cbdfcaa91d369df6a987275", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "517dd3fd-4f0a-4859-9818-0afab3fcf43c", + "x-ms-client-request-id": "a3c644518cbdfcaa91d369df6a987275", + "x-ms-correlation-request-id": "df53dee5-5d86-4d72-8115-4b250cce6243", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "3e8151dd-a53c-4689-b587-7d7d0b778f92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061614Z:df53dee5-5d86-4d72-8115-4b250cce6243" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "679c37e44fff9655755873f5b7a2eca2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f3b53de-2c66-4b46-a1fc-65c46e7c7baf", + "x-ms-client-request-id": "679c37e44fff9655755873f5b7a2eca2", + "x-ms-correlation-request-id": "8ae18afe-924f-4b4e-80bf-c78f4b8d54f0", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "8fbc9de2-9c9b-44a6-8efb-7999e1955bea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061615Z:8ae18afe-924f-4b4e-80bf-c78f4b8d54f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b583492ff5516543ae83b6e06e0496cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0570e175-f668-44d0-a830-6d00334c222b", + "x-ms-client-request-id": "b583492ff5516543ae83b6e06e0496cb", + "x-ms-correlation-request-id": "2acc2645-4715-4391-8191-45278f28ded1", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "2abde58f-3366-4ca8-bb3c-ff5c26c377f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061616Z:2acc2645-4715-4391-8191-45278f28ded1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8725766cdcf0207ee2f2e6518b545ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86bedf4b-26f8-4d9c-aa0f-63908457b8d9", + "x-ms-client-request-id": "f8725766cdcf0207ee2f2e6518b545ee", + "x-ms-correlation-request-id": "0736e1ee-b38b-4a75-846e-e0a18c123d60", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "3f49ca83-59bc-4e33-8d77-5b227b43412c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061618Z:0736e1ee-b38b-4a75-846e-e0a18c123d60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21b0c7e6bc15ee24f336b87c99742870", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c0eb9ea-f56c-4a6d-9399-a7a9278aa831", + "x-ms-client-request-id": "21b0c7e6bc15ee24f336b87c99742870", + "x-ms-correlation-request-id": "c0e32530-b3cc-4339-8eca-1a65295aa0e4", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "f5087d76-1cef-4cf8-8b36-33430a02daee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061619Z:c0e32530-b3cc-4339-8eca-1a65295aa0e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f8ea8c2f42f61d34280c621c7de4df9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "673d9cb6-003b-47b0-8172-b8d75853fd71", + "x-ms-client-request-id": "5f8ea8c2f42f61d34280c621c7de4df9", + "x-ms-correlation-request-id": "536d6907-0b22-408e-ad23-c165db981e84", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "e5c57186-e56e-4a3a-9fa7-636085b65873", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061620Z:536d6907-0b22-408e-ad23-c165db981e84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7f9c73e7454aab532840498148b6979", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ee0b04e-9cbf-4ffb-8ab8-4b2bd979848e", + "x-ms-client-request-id": "a7f9c73e7454aab532840498148b6979", + "x-ms-correlation-request-id": "8bf378ce-07c5-4b82-84dd-fb26b285b38f", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "200e8d71-c7ef-4165-9a2b-b4c1907ffba7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061621Z:8bf378ce-07c5-4b82-84dd-fb26b285b38f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70a3be07e526f2bef44edf95f5022615", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4ad4056-3dfa-4618-94e0-fd10e2feda34", + "x-ms-client-request-id": "70a3be07e526f2bef44edf95f5022615", + "x-ms-correlation-request-id": "1fa6add9-901e-420a-b7cf-1c414b81b08b", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "2df5d672-08ad-40fc-b7c5-3a62ed80a7e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061623Z:1fa6add9-901e-420a-b7cf-1c414b81b08b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d13dbfe9817a4d1bf3e42cabef3a4cb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18f0da7b-c875-4854-9844-7fc07daa348d", + "x-ms-client-request-id": "d13dbfe9817a4d1bf3e42cabef3a4cb6", + "x-ms-correlation-request-id": "4b2b5bdc-7928-4916-a1c0-614113846c50", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "9d1ea489-68b0-4cf7-ada3-75c946da3a17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061624Z:4b2b5bdc-7928-4916-a1c0-614113846c50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09194c17dd3b59d30807b2059420b430", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a1f2710-ef34-4be7-9c98-e3125e0ede22", + "x-ms-client-request-id": "09194c17dd3b59d30807b2059420b430", + "x-ms-correlation-request-id": "ee12b06b-8e2f-419b-8beb-45325a36af28", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "024ec314-da74-46a6-a19e-2394f6e50025", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061625Z:ee12b06b-8e2f-419b-8beb-45325a36af28" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55afef5d974d86fea2557c42b81303b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed9912c3-3414-419e-8435-4b8f86929e56", + "x-ms-client-request-id": "55afef5d974d86fea2557c42b81303b9", + "x-ms-correlation-request-id": "2c80be75-fd37-4d78-8129-2bf6b4dbf8b7", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "5ff24cda-04ff-4b78-8bd0-32c071100e25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061626Z:2c80be75-fd37-4d78-8129-2bf6b4dbf8b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a87d28021de90bdaebe4c973ce15b8d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c772ec8d-8624-457b-89fd-947b01af6fbe", + "x-ms-client-request-id": "a87d28021de90bdaebe4c973ce15b8d2", + "x-ms-correlation-request-id": "92660f6d-9432-495a-99a7-acc9159ae62c", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "c998f461-3926-4af8-91c3-a2ba7eb0bc73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061628Z:92660f6d-9432-495a-99a7-acc9159ae62c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff4dfc2ff68a7f684d9367e66090a0f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "137a97a1-991a-4c23-b2eb-43b88df5e617", + "x-ms-client-request-id": "ff4dfc2ff68a7f684d9367e66090a0f4", + "x-ms-correlation-request-id": "8e33da51-696a-4df5-8492-ecb7686f09c4", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "14acf998-d63a-474f-a060-4bbf4a0313d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061629Z:8e33da51-696a-4df5-8492-ecb7686f09c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b03f9040ba2404715a36969ce8bb88c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8125eea8-3685-43b6-9f1a-2983495b17e3", + "x-ms-client-request-id": "6b03f9040ba2404715a36969ce8bb88c", + "x-ms-correlation-request-id": "2df584ac-31ca-4b8c-b1c1-dd90883e5ef9", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "7d254598-5397-4007-be36-6e34ca99ca0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061630Z:2df584ac-31ca-4b8c-b1c1-dd90883e5ef9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb12a99c03c60b2ebffe5a55b6f3ab5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99ecb6e5-be62-4a59-ac9b-f8e2592e3050", + "x-ms-client-request-id": "bb12a99c03c60b2ebffe5a55b6f3ab5a", + "x-ms-correlation-request-id": "f7526760-2e58-45d8-a1ee-bbd2782d8313", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "99919547-8993-494d-8f05-eeda6c4f57d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061632Z:f7526760-2e58-45d8-a1ee-bbd2782d8313" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d46fd4444c122430b50ceae78cffb1c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ac142af-81ef-4d97-ba17-088b12894d18", + "x-ms-client-request-id": "d46fd4444c122430b50ceae78cffb1c2", + "x-ms-correlation-request-id": "4fcb9365-ad9e-411b-8504-81f0e16ce160", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "3f94b9cf-01f5-4191-b7d9-54f529e9adc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061633Z:4fcb9365-ad9e-411b-8504-81f0e16ce160" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b649dadbe47e002ecaf7aca4b0f18a21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f3d35b6-946c-416d-a7fb-9e637476a203", + "x-ms-client-request-id": "b649dadbe47e002ecaf7aca4b0f18a21", + "x-ms-correlation-request-id": "7f5f0ef9-c5ca-44c1-b0ad-cc77bb7ef1c2", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "cde28be7-63cb-4fc8-ac0f-b499a69b659a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061634Z:7f5f0ef9-c5ca-44c1-b0ad-cc77bb7ef1c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa240ef7e31c4f7979ed06b919477fc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "24999901-fd40-4306-91b2-5e9cdcb3a7b6", + "x-ms-client-request-id": "fa240ef7e31c4f7979ed06b919477fc0", + "x-ms-correlation-request-id": "5da7fca5-a6b3-4e07-84ed-7e90814907f8", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "96751905-ca77-47cf-ad99-66df70b64447", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061635Z:5da7fca5-a6b3-4e07-84ed-7e90814907f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db7a984df5aa5fdca56e0a1ba08c73c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46132bb8-fc1e-4acd-a3f7-01cf880018d3", + "x-ms-client-request-id": "db7a984df5aa5fdca56e0a1ba08c73c4", + "x-ms-correlation-request-id": "e85c2a02-be66-455e-8111-a9445a3472c5", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "c63f11ca-4bfb-4044-be8a-d54de85ac832", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061637Z:e85c2a02-be66-455e-8111-a9445a3472c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7defc882b6daf8a560fa3d90de75e783", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8bc4a4c-fbc1-4cc6-9c7b-6ffab2d680e7", + "x-ms-client-request-id": "7defc882b6daf8a560fa3d90de75e783", + "x-ms-correlation-request-id": "5a42e1a8-1a8f-4ed7-9e08-bb1e2b3de814", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "55842177-3d7b-47f2-acc7-93e5babe743c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061638Z:5a42e1a8-1a8f-4ed7-9e08-bb1e2b3de814" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1857ec78ae77027732c554aed85eaeec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "774956b8-6b6c-412d-ba44-13e20d507015", + "x-ms-client-request-id": "1857ec78ae77027732c554aed85eaeec", + "x-ms-correlation-request-id": "5623a62f-4f63-4d65-81d0-95174669212b", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "f03b2632-22f1-429e-b914-1029d4d7d854", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061639Z:5623a62f-4f63-4d65-81d0-95174669212b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51374179015796e5f2817bb0b84b8130", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd340d3d-d1ff-440e-a907-c1e69b5afa1f", + "x-ms-client-request-id": "51374179015796e5f2817bb0b84b8130", + "x-ms-correlation-request-id": "d6377ee9-edb8-4026-bbe5-45d37f2b3152", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "443cee42-b51b-4fdd-ac73-e2e27142738d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061641Z:d6377ee9-edb8-4026-bbe5-45d37f2b3152" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4a387865b35d34c51ed4b1562f71f01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e4c2774-ef0f-4ce1-b512-7b79e9e9d123", + "x-ms-client-request-id": "b4a387865b35d34c51ed4b1562f71f01", + "x-ms-correlation-request-id": "ca8712c6-4892-4773-9e98-bc940919ef1b", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "c2f11655-3c89-4b62-9b45-11589190944e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061642Z:ca8712c6-4892-4773-9e98-bc940919ef1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c16504b963d762b06c125f533c74ae6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a07bca4-dcaa-45a5-952c-8be36a806fff", + "x-ms-client-request-id": "9c16504b963d762b06c125f533c74ae6", + "x-ms-correlation-request-id": "be2ce2c1-1763-437b-a218-391029999afd", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "1c15855f-9f99-4116-a0aa-46d5abf42595", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061643Z:be2ce2c1-1763-437b-a218-391029999afd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51272444f9bb1db7f464ff6ab5cf33fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69f0262f-58be-47df-aae0-4b94d6972ed6", + "x-ms-client-request-id": "51272444f9bb1db7f464ff6ab5cf33fa", + "x-ms-correlation-request-id": "6e3a0d03-c4ef-42fc-99b4-6db894c5a397", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "1ef5bb96-6cf0-4032-a0a8-c10ca2828e9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061644Z:6e3a0d03-c4ef-42fc-99b4-6db894c5a397" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67647962e434f0f25b2cad7436579f8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65301a17-4881-4ce1-8420-4de75be83fc5", + "x-ms-client-request-id": "67647962e434f0f25b2cad7436579f8a", + "x-ms-correlation-request-id": "21686ca7-7699-4eef-a048-fe6ee094acc0", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "d084c035-0e1d-4cfc-8cb8-1b7f3b9256f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061646Z:21686ca7-7699-4eef-a048-fe6ee094acc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3dd164a2ced0514698f8a7d996c1c037", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab7e964a-1499-4e6d-a995-9291ced02be0", + "x-ms-client-request-id": "3dd164a2ced0514698f8a7d996c1c037", + "x-ms-correlation-request-id": "2e73622a-4132-43cf-b01d-7ea6bd30b8e3", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "353221cb-9d7a-42f3-a926-bb34ad1e865d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061647Z:2e73622a-4132-43cf-b01d-7ea6bd30b8e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba922a8de2625fb13136f58e4c42e79d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89d0c2d6-4c41-47fe-9597-0ae5175b3a70", + "x-ms-client-request-id": "ba922a8de2625fb13136f58e4c42e79d", + "x-ms-correlation-request-id": "a25f85bf-0681-4529-8478-43cc13cc6471", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "402b8b94-dfbf-41a8-a6e8-15e873536a8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061648Z:a25f85bf-0681-4529-8478-43cc13cc6471" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51c775c5f5fe942a3213cf3b3c195a9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8d81b65-2dc9-4962-be36-cf423f56d11d", + "x-ms-client-request-id": "51c775c5f5fe942a3213cf3b3c195a9a", + "x-ms-correlation-request-id": "5dbdf65b-eacf-4e76-ae4b-aba7a6012214", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "73cc65e2-8e98-4497-9363-9b2a181bf44f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061650Z:5dbdf65b-eacf-4e76-ae4b-aba7a6012214" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0be7766be5c4c027b2710c99d8b70555", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ced31f95-45a1-4c17-8529-43482057ad19", + "x-ms-client-request-id": "0be7766be5c4c027b2710c99d8b70555", + "x-ms-correlation-request-id": "a0d6fc48-3c78-4f72-97b8-348907e989ad", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "d450a2a5-7b14-4a54-bc34-0cc8da755e25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061651Z:a0d6fc48-3c78-4f72-97b8-348907e989ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20140a116ff99739fffe874f13752218", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a69a8b1-8a34-44df-b5c8-b4d0f3b55bf8", + "x-ms-client-request-id": "20140a116ff99739fffe874f13752218", + "x-ms-correlation-request-id": "79a1be42-ca80-41af-9fdb-54c97ae7358f", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "fb3634b6-7145-4582-aaba-a702964c4117", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061652Z:79a1be42-ca80-41af-9fdb-54c97ae7358f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5235adcdb5bdfd84e069e8ce991bb7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1417fa58-e9e5-45cf-8860-5903467ff7a6", + "x-ms-client-request-id": "d5235adcdb5bdfd84e069e8ce991bb7b", + "x-ms-correlation-request-id": "b50c204c-1346-4324-8614-b0e9f32a5b57", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "03dd7276-af1a-43fe-a222-ff3b357c8069", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061653Z:b50c204c-1346-4324-8614-b0e9f32a5b57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "322a790d3a05fba03d4f0cc65dd8ad3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5932e7b6-8bcd-4d2a-8ca7-5694aa4f0be0", + "x-ms-client-request-id": "322a790d3a05fba03d4f0cc65dd8ad3c", + "x-ms-correlation-request-id": "f1f29f11-aac1-4ecb-8c75-a0c299c4f109", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "a5a4beec-a394-49b9-baf8-32e87c4468ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061655Z:f1f29f11-aac1-4ecb-8c75-a0c299c4f109" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dbcf44f2f9435fa3134d1f3d1acad6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6000a38a-24ab-4766-96f1-1491224947f1", + "x-ms-client-request-id": "7dbcf44f2f9435fa3134d1f3d1acad6d", + "x-ms-correlation-request-id": "aef6bea8-117b-47e7-8490-7af0be41b8b7", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "f373f02d-67dc-4380-bdf5-9f3e9c34473f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061656Z:aef6bea8-117b-47e7-8490-7af0be41b8b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a410c42ef4ba213ba27980bcf128276", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dddb9dff-dc60-46ea-bb58-606b12538cc1", + "x-ms-client-request-id": "9a410c42ef4ba213ba27980bcf128276", + "x-ms-correlation-request-id": "134ba142-bc4b-47f1-990f-ca16b456b5e1", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "16240e12-0964-4d0b-93a4-6e457d49e390", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061657Z:134ba142-bc4b-47f1-990f-ca16b456b5e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f53d61593ed5dde67ef501d068ad2990", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e70fd51c-9f75-4cd8-b750-8c492687dc48", + "x-ms-client-request-id": "f53d61593ed5dde67ef501d068ad2990", + "x-ms-correlation-request-id": "db18f614-6a45-41d1-904a-b664fd929259", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "8d0a710a-ab33-45e8-8df9-28ff7cee6aed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061659Z:db18f614-6a45-41d1-904a-b664fd929259" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51839ea213965ff1e019c36c97ee661e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:16:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "357a644d-51d5-4021-acd3-201db365c925", + "x-ms-client-request-id": "51839ea213965ff1e019c36c97ee661e", + "x-ms-correlation-request-id": "dff068b7-2313-4161-b21f-300ecd0d4646", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "f113d2fc-c781-49fa-93a7-55dbec1561e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061700Z:dff068b7-2313-4161-b21f-300ecd0d4646" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70995bb2b86f049825631b56ee423a0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4618da8-1da0-4f60-8fa3-ed827db203c7", + "x-ms-client-request-id": "70995bb2b86f049825631b56ee423a0c", + "x-ms-correlation-request-id": "87b2e7ed-f4cb-4d83-be5b-56e670a27e64", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "5d3fa737-e9d8-4f6f-9f59-b226113d246b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061701Z:87b2e7ed-f4cb-4d83-be5b-56e670a27e64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "306907fe308f45e06fdd14bb7a7a4690", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3cf896d-464b-4f42-832e-1f5e45e4a93b", + "x-ms-client-request-id": "306907fe308f45e06fdd14bb7a7a4690", + "x-ms-correlation-request-id": "eba4fe0d-2d86-4520-b546-ae4649e778de", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "5eec5af2-8e0d-4e5d-b1ec-f695beb75d71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061702Z:eba4fe0d-2d86-4520-b546-ae4649e778de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c1ee38eb913ea21067f2b32f89b719e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23aa2c79-8de1-4a3c-ba86-71f63d155967", + "x-ms-client-request-id": "0c1ee38eb913ea21067f2b32f89b719e", + "x-ms-correlation-request-id": "3d2a3e95-fcb7-42d9-b206-90557e2ac7f7", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "4aea2534-c722-48a3-9a54-b315b72653d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061704Z:3d2a3e95-fcb7-42d9-b206-90557e2ac7f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "906eb6df3584818e7b540191a3dc89ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20043af7-f900-4797-8068-f4d5c07223e2", + "x-ms-client-request-id": "906eb6df3584818e7b540191a3dc89ab", + "x-ms-correlation-request-id": "9e9eeb94-d99f-4cb2-959d-c7f14f5c95af", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "cac3897c-a1d4-46bd-a674-3c58e24ab8a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061705Z:9e9eeb94-d99f-4cb2-959d-c7f14f5c95af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ac78a1d2d2344f8e67f2a1004ad4dd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96c670f8-3ca0-4d2d-89ae-a6cdb333e6d5", + "x-ms-client-request-id": "0ac78a1d2d2344f8e67f2a1004ad4dd3", + "x-ms-correlation-request-id": "2eb7b731-f389-481a-acdc-5984970011a2", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "422bee5b-a062-4825-b90d-6e9d91683c85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061706Z:2eb7b731-f389-481a-acdc-5984970011a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4dc756cb60b580b549d91bfb78f462a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1b83e8f-1728-4674-bd05-f0187dec5921", + "x-ms-client-request-id": "c4dc756cb60b580b549d91bfb78f462a", + "x-ms-correlation-request-id": "bb864e60-8161-4448-af76-5205c201e547", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "84184cdc-a1ec-45a3-936b-f56613a82aa8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061708Z:bb864e60-8161-4448-af76-5205c201e547" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d1480f566d4b17bbd29a9050b7e7ccd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "313d4627-67be-4662-8ace-1d2e1ec33c2b", + "x-ms-client-request-id": "6d1480f566d4b17bbd29a9050b7e7ccd", + "x-ms-correlation-request-id": "dd4d6b00-6d92-4221-93f7-5829c1395b65", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "ab30bd44-bb0f-4625-aa9c-9137fb4ba3e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061709Z:dd4d6b00-6d92-4221-93f7-5829c1395b65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d252d06c500679f7f6eb5859b398c57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a535e84d-e067-4f9e-8984-dc8c423a084a", + "x-ms-client-request-id": "2d252d06c500679f7f6eb5859b398c57", + "x-ms-correlation-request-id": "c716f4d3-19ad-4c0b-918d-e5ff17860c3f", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "8f4e2236-1660-40e7-bc80-3506c759ebaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061710Z:c716f4d3-19ad-4c0b-918d-e5ff17860c3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "841aff38e09905fffa2a06e20c054dd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df3a1bc5-c456-4808-b905-18685f033d8c", + "x-ms-client-request-id": "841aff38e09905fffa2a06e20c054dd6", + "x-ms-correlation-request-id": "6cc7cfa0-01ec-4390-928f-65c9afc3f8b1", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "0b2e4344-2c3c-4fbf-b335-1f72c7fb7ea5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061711Z:6cc7cfa0-01ec-4390-928f-65c9afc3f8b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ab8c421196a302ae1aded66b1f61584", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f17121ea-b4ef-40e8-887f-a244c3c16172", + "x-ms-client-request-id": "8ab8c421196a302ae1aded66b1f61584", + "x-ms-correlation-request-id": "87dae6f7-0b2a-43aa-9129-89bbd82cfd86", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "a8f51284-2678-4459-bb22-ff6452078609", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061713Z:87dae6f7-0b2a-43aa-9129-89bbd82cfd86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0bcd529cf86326342d1f33d5bfbd5b79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e582e3da-5953-4b59-9bbb-91bd15a03ec9", + "x-ms-client-request-id": "0bcd529cf86326342d1f33d5bfbd5b79", + "x-ms-correlation-request-id": "bf474ce2-1a0b-4542-9c4b-4dd6dd63343f", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "c445f800-619c-41e6-a71e-e1e62b9d9789", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061714Z:bf474ce2-1a0b-4542-9c4b-4dd6dd63343f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d763df2102801fecd5eaa2ecf2995404", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b79c4576-ea3f-4f2c-904d-07989a9542bb", + "x-ms-client-request-id": "d763df2102801fecd5eaa2ecf2995404", + "x-ms-correlation-request-id": "176a924d-ea58-4c8f-a69f-6d1caf54b0d9", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "ac663d49-5c10-4b3c-9310-fb8db8e6040a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061715Z:176a924d-ea58-4c8f-a69f-6d1caf54b0d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b94581144138297290925c4ae5547024", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b083e221-979e-4b1e-b8d3-cf9b230d3568", + "x-ms-client-request-id": "b94581144138297290925c4ae5547024", + "x-ms-correlation-request-id": "ef915a14-6f98-4793-9565-df507f9d704b", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "2f94a3e1-e1a0-4d3a-ae44-c19b712ccf82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061717Z:ef915a14-6f98-4793-9565-df507f9d704b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d14474523e929a0465ad357955483394", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c58b561-5de5-442b-bd05-cc60c2c103f5", + "x-ms-client-request-id": "d14474523e929a0465ad357955483394", + "x-ms-correlation-request-id": "9afc9f73-e015-49ea-9937-616c0b723f1d", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "c16cb826-3487-48f3-af0a-47d486dd0e22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061718Z:9afc9f73-e015-49ea-9937-616c0b723f1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3dc02fcaa177df406d3a46eda5a23981", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57aa728f-02c7-4526-aa74-e21241e0070b", + "x-ms-client-request-id": "3dc02fcaa177df406d3a46eda5a23981", + "x-ms-correlation-request-id": "6db8abe0-a15f-48b1-bce2-f543b23e1325", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "3c265998-6cfa-44d3-a074-6474d0750ee1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061719Z:6db8abe0-a15f-48b1-bce2-f543b23e1325" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e997d798354d5717dab538b0bf9d348", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5212c462-3ca3-4e46-a10d-d1901ecf3331", + "x-ms-client-request-id": "7e997d798354d5717dab538b0bf9d348", + "x-ms-correlation-request-id": "1c854427-fe7a-4de7-af74-911cbf3f7639", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "8d8b19c6-599f-4185-ae10-53b93eeb7fab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061721Z:1c854427-fe7a-4de7-af74-911cbf3f7639" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b67fc75e3394b0ad33656457f716f4c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58a77430-2240-47b2-bb6a-64104424da10", + "x-ms-client-request-id": "b67fc75e3394b0ad33656457f716f4c3", + "x-ms-correlation-request-id": "6e2d033f-60fe-468f-8741-25e877636747", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "3085e389-cccb-4d42-94a8-e25fc70da9b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061722Z:6e2d033f-60fe-468f-8741-25e877636747" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8ffb473b5ae4740bdeac0cc4db5d473", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d1142e5-7ad3-431f-ab99-71ea2f3f7059", + "x-ms-client-request-id": "d8ffb473b5ae4740bdeac0cc4db5d473", + "x-ms-correlation-request-id": "69b54fb1-c6fc-4902-a576-14a723f66c7c", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "13c92466-92aa-4ac2-b948-5321a66605a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061723Z:69b54fb1-c6fc-4902-a576-14a723f66c7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd8efe66832346ecd0e84aef1e1ade66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf3bb3c2-15b5-49e0-b022-2ee88d2dbe7e", + "x-ms-client-request-id": "dd8efe66832346ecd0e84aef1e1ade66", + "x-ms-correlation-request-id": "cda33b84-d649-4e35-91dc-0a0ebd61dda2", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "dc33553c-8f1c-4ed0-96ad-d92d92a77f63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061724Z:cda33b84-d649-4e35-91dc-0a0ebd61dda2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "561790b6fbf9a99a8737f9a972e1637d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d02e510f-3fb1-411c-a413-94d865827ac3", + "x-ms-client-request-id": "561790b6fbf9a99a8737f9a972e1637d", + "x-ms-correlation-request-id": "74bb3395-88e1-46ba-8cf5-a17eeaf1fa56", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "5f62bffc-79cf-4032-8be0-f005e4327dbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061726Z:74bb3395-88e1-46ba-8cf5-a17eeaf1fa56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9f1f0911687f0a0c7b907c56a5029a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53ad5a58-5da9-4d7a-94ff-d3c7758348bf", + "x-ms-client-request-id": "f9f1f0911687f0a0c7b907c56a5029a3", + "x-ms-correlation-request-id": "fcc030ed-c3aa-4848-876a-7531496e9d37", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "f403b381-4c39-4c03-a4ed-5220a401617e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061727Z:fcc030ed-c3aa-4848-876a-7531496e9d37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc155a0c7d9e6a7a63e555eb8943d4ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3131a2d8-cf24-492a-8d58-f8d4a8789f81", + "x-ms-client-request-id": "bc155a0c7d9e6a7a63e555eb8943d4ef", + "x-ms-correlation-request-id": "19947753-a016-4469-9b98-5cf5b544fa24", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "a8a138ea-f51d-4423-876c-5b44c4dd5c92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061728Z:19947753-a016-4469-9b98-5cf5b544fa24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d5dcc85e428a0def0268e40f4d53e36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d223035e-f53b-4c68-8dac-8ea18a9b86b0", + "x-ms-client-request-id": "2d5dcc85e428a0def0268e40f4d53e36", + "x-ms-correlation-request-id": "fc863725-d42c-4108-81a9-c9703844c5fd", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "1f481638-8235-4d15-9eeb-300e3bad2a5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061730Z:fc863725-d42c-4108-81a9-c9703844c5fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "179c560ea6cb13df768695a2c0b46784", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51c63d8b-581a-4d73-b41a-b89d23a19941", + "x-ms-client-request-id": "179c560ea6cb13df768695a2c0b46784", + "x-ms-correlation-request-id": "317d8bc1-14ce-4dc6-a9d0-baa034cc6536", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "7e0aee59-7613-46fb-a576-e5bdd6662ac7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061731Z:317d8bc1-14ce-4dc6-a9d0-baa034cc6536" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e3f18e5fbf3287a7c74cc77ee39768e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53586e32-3bf2-4be9-8a7d-fdea529ffa91", + "x-ms-client-request-id": "9e3f18e5fbf3287a7c74cc77ee39768e", + "x-ms-correlation-request-id": "37ad2671-dbc0-405e-8d92-bbae6467224c", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "6721335f-d10a-4442-bc73-8d584ea9ac63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061733Z:37ad2671-dbc0-405e-8d92-bbae6467224c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33dc1fa7bca6de23ec4ab7a24e3cdf3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1a4e3e2-5f33-443a-aafb-f9ecf0dfc6a5", + "x-ms-client-request-id": "33dc1fa7bca6de23ec4ab7a24e3cdf3b", + "x-ms-correlation-request-id": "70d505b1-4b10-4edb-a46d-8a550e9890ba", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "a4e0f419-0898-4bff-a7d1-d581ee00559d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061734Z:70d505b1-4b10-4edb-a46d-8a550e9890ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc5b0abf9f951343db749b57da68243c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98226254-b2be-4db5-bb41-b290f2c8b6b5", + "x-ms-client-request-id": "dc5b0abf9f951343db749b57da68243c", + "x-ms-correlation-request-id": "601903fb-2968-4f34-8f2a-a684eb5966d1", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "96791e94-d849-4986-9e8d-e873975f27ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061735Z:601903fb-2968-4f34-8f2a-a684eb5966d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1fa070f33d828ddf460b1a843d8d940", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5366eae1-950f-40cb-9c81-ae9889f601d7", + "x-ms-client-request-id": "a1fa070f33d828ddf460b1a843d8d940", + "x-ms-correlation-request-id": "2457d3f9-0219-4413-81a2-6b0c8ed112fa", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "b94baad1-096d-482b-8fd1-9234597fb3e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061736Z:2457d3f9-0219-4413-81a2-6b0c8ed112fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4b890959ade07f9dbc9573221cc0484", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "996cc4b8-964c-4eb6-b702-2451741d42ee", + "x-ms-client-request-id": "e4b890959ade07f9dbc9573221cc0484", + "x-ms-correlation-request-id": "0df41ef3-7e91-493f-8191-4095ec4200a1", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "123f7c07-20f7-4a61-a497-d6cd9231ccd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061738Z:0df41ef3-7e91-493f-8191-4095ec4200a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47927a253e418b632c32e734ee9acf03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e753eef2-5f07-4831-85af-6b144a197aed", + "x-ms-client-request-id": "47927a253e418b632c32e734ee9acf03", + "x-ms-correlation-request-id": "942ed7ec-6b83-4b82-8997-639bb3dd5c25", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "9174327f-546b-4848-b144-d5a192a00e51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061739Z:942ed7ec-6b83-4b82-8997-639bb3dd5c25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49c15b9a40af755e0df2c60edcaa0727", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7cfea401-b278-4327-b2d3-b68a30c0b293", + "x-ms-client-request-id": "49c15b9a40af755e0df2c60edcaa0727", + "x-ms-correlation-request-id": "d291a1f6-ba91-43df-b3ba-a045084de0e1", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "ddc4a8a3-e8fa-43be-a894-9a761ad65569", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061741Z:d291a1f6-ba91-43df-b3ba-a045084de0e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9832c5c924657fe2d2db7abb2c41840", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1e3f6ee-540d-4cbd-8413-9b434ffefc8e", + "x-ms-client-request-id": "c9832c5c924657fe2d2db7abb2c41840", + "x-ms-correlation-request-id": "4be7fc30-8320-4bee-aaac-8351a57e4e04", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "83fb0927-9135-4360-886e-c0de8cbc4033", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061742Z:4be7fc30-8320-4bee-aaac-8351a57e4e04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c69854f9bb0ae5d51c1c394e7754af82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0b0a914-0df4-4e33-aab2-10d4e0acd49e", + "x-ms-client-request-id": "c69854f9bb0ae5d51c1c394e7754af82", + "x-ms-correlation-request-id": "fa85cb1a-abca-4b80-ba3a-ff23993591c2", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "9397ac94-439a-4e8b-81da-a671ffb51c39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061743Z:fa85cb1a-abca-4b80-ba3a-ff23993591c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2d8bf2b061707bd5c6a1b8288b2c249", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53ebfe78-d82f-464e-a002-e1ae3b211c81", + "x-ms-client-request-id": "c2d8bf2b061707bd5c6a1b8288b2c249", + "x-ms-correlation-request-id": "1fc14ece-ad56-4b10-8878-240bf13bfd79", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "7836de89-b16e-419a-abcf-34f5938e96d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061744Z:1fc14ece-ad56-4b10-8878-240bf13bfd79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "881486d94112a11d569eac2959afdfd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30366e66-3350-4136-ad2d-701158926077", + "x-ms-client-request-id": "881486d94112a11d569eac2959afdfd8", + "x-ms-correlation-request-id": "4690a2eb-a8f6-401a-8421-f13791f3280c", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "328eed44-88d4-4ac8-97f2-22386bef1ad0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061746Z:4690a2eb-a8f6-401a-8421-f13791f3280c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f280357d56ecf328969069a09f525c6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e96b842-0116-4d86-acda-ea712dafe9d0", + "x-ms-client-request-id": "f280357d56ecf328969069a09f525c6a", + "x-ms-correlation-request-id": "f8ddb5d1-1625-4a72-b65c-83193d10acda", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "e94e0c7b-6611-49e4-8e80-8372559c8a6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061747Z:f8ddb5d1-1625-4a72-b65c-83193d10acda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f174ef592740ea6fa2366b795a93aead", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb5f9539-95d4-49a4-87a4-bf483f90cb8f", + "x-ms-client-request-id": "f174ef592740ea6fa2366b795a93aead", + "x-ms-correlation-request-id": "9ad648ee-51db-411d-bb38-b26c6a1e59af", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "7e1c489f-6389-40af-85bb-baa08316e5b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061748Z:9ad648ee-51db-411d-bb38-b26c6a1e59af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5304438bd032835d5d21f182d77d0204", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8cf809e4-b9f3-48ed-905c-e5b7398a1186", + "x-ms-client-request-id": "5304438bd032835d5d21f182d77d0204", + "x-ms-correlation-request-id": "b07ef501-dbb8-4a6c-afcc-f94c870a334c", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "18a362cb-c93e-44d6-bc47-1c4cbbb98618", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061749Z:b07ef501-dbb8-4a6c-afcc-f94c870a334c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69cf4141ee3a5698c69550b5ebaf9803", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e871d7c8-e3b4-4bd6-a6d2-57af9ef654c5", + "x-ms-client-request-id": "69cf4141ee3a5698c69550b5ebaf9803", + "x-ms-correlation-request-id": "9ac26b91-d856-4b5e-b639-68eb16105e8f", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "e922e95a-8fb7-4cde-a93e-44800fac25cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061751Z:9ac26b91-d856-4b5e-b639-68eb16105e8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b14bce1094d893892f1931e36ed1225", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f272b1d1-406a-41b7-9368-7f2ffe6bae91", + "x-ms-client-request-id": "5b14bce1094d893892f1931e36ed1225", + "x-ms-correlation-request-id": "cca2fa61-e175-4155-8770-6486d5526c98", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "744e4e87-3ba9-4e42-90c5-2d96d5c89efe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061752Z:cca2fa61-e175-4155-8770-6486d5526c98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1837673445c39c72aaae8c9c7fa898ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b86b5d4-e153-4266-9fcd-793abb4026aa", + "x-ms-client-request-id": "1837673445c39c72aaae8c9c7fa898ae", + "x-ms-correlation-request-id": "8c86c979-7763-4ad2-b240-eacdec1c03ac", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "56da8330-005e-479c-824d-e09130b49d1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061753Z:8c86c979-7763-4ad2-b240-eacdec1c03ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ba0ed88a66838b60946d6495a7920d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3659aea1-5cc3-466c-8b94-276d899600a0", + "x-ms-client-request-id": "1ba0ed88a66838b60946d6495a7920d9", + "x-ms-correlation-request-id": "1a5015a6-cfb9-40eb-9c41-e04eb7e757e3", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "ad5eec5a-e7e1-4ad9-a045-b3a9c9e7342a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061755Z:1a5015a6-cfb9-40eb-9c41-e04eb7e757e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83802a8380789b3f4978b19f7c9c09ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ada6ad50-eec5-4356-8672-13429afb8a9b", + "x-ms-client-request-id": "83802a8380789b3f4978b19f7c9c09ea", + "x-ms-correlation-request-id": "63d0f3f9-adc1-4249-b6ea-edf53acaf135", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "6809a391-0f44-4bd6-94c9-57d54b63c879", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061756Z:63d0f3f9-adc1-4249-b6ea-edf53acaf135" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4896e559f64c8ebdb0fe0f7d6f294130", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2cc4838-80ac-40e4-8770-725d3eb64ad0", + "x-ms-client-request-id": "4896e559f64c8ebdb0fe0f7d6f294130", + "x-ms-correlation-request-id": "6779e554-44c0-4fbe-a95a-3865341397fb", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "2329b638-0f95-4826-add2-9d615463b98d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061757Z:6779e554-44c0-4fbe-a95a-3865341397fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5518b38d14270735ae05d1f0f516bb6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1ccf5df-2453-46dd-9ac1-aad119c20db1", + "x-ms-client-request-id": "5518b38d14270735ae05d1f0f516bb6d", + "x-ms-correlation-request-id": "c880fa95-e313-4ea1-bd81-bd87866846a0", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "5370eb0e-3be5-4961-8095-39227e3b3fe5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061758Z:c880fa95-e313-4ea1-bd81-bd87866846a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75f0eb3cd8e38c8c6df2d27971c22c20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:17:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74b9e73a-4851-4cd7-86da-630910b5db97", + "x-ms-client-request-id": "75f0eb3cd8e38c8c6df2d27971c22c20", + "x-ms-correlation-request-id": "820b7f6d-17d3-4f19-aac3-24d4aa98b508", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "32e3d9b2-5e02-42a4-9664-4b7cbe688440", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061800Z:820b7f6d-17d3-4f19-aac3-24d4aa98b508" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8118036b48344c2af8e994624cd999a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da05a3ca-b674-4a05-9bf5-d402e90d646f", + "x-ms-client-request-id": "c8118036b48344c2af8e994624cd999a", + "x-ms-correlation-request-id": "a731eba0-c1ff-4ebf-b2cc-a04469c76aee", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "8b1907a5-052f-4346-9109-b9ec209b78b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061801Z:a731eba0-c1ff-4ebf-b2cc-a04469c76aee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8340a143cc38b54d268be83541bc96ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "949e1d43-973b-4d30-9588-679a9a443a95", + "x-ms-client-request-id": "8340a143cc38b54d268be83541bc96ec", + "x-ms-correlation-request-id": "23d1faab-8347-422c-8474-79c1050e0144", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "4f67f481-870e-4867-8321-ae2c6683cf65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061802Z:23d1faab-8347-422c-8474-79c1050e0144" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74b9b0d8f20488e929abc6543e45679f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61be53ff-fec8-4b39-be26-c0f73e7a1065", + "x-ms-client-request-id": "74b9b0d8f20488e929abc6543e45679f", + "x-ms-correlation-request-id": "9d3a8ad2-4762-4b29-9298-608a1aacb3dc", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "41fb687e-7496-40f8-9b28-0751311b9e6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061804Z:9d3a8ad2-4762-4b29-9298-608a1aacb3dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf363858a9816ae7325ca1f7cc8d03f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d822c1f9-351c-4d11-92da-1a347e4a3be8", + "x-ms-client-request-id": "cf363858a9816ae7325ca1f7cc8d03f3", + "x-ms-correlation-request-id": "4f4e6238-6a02-4f49-a069-20d6e2479cea", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "fc6ecc2e-ad97-4958-b618-f32512bd6271", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061805Z:4f4e6238-6a02-4f49-a069-20d6e2479cea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "736eadf724135095b8b75a8d06f876e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87079c6c-b631-4320-a088-3583c4a09756", + "x-ms-client-request-id": "736eadf724135095b8b75a8d06f876e0", + "x-ms-correlation-request-id": "30189c7f-b76b-47d7-ac41-9d84e4ebf37f", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "27bb6d1a-6bf7-4be7-a86f-918bdf00fe8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061806Z:30189c7f-b76b-47d7-ac41-9d84e4ebf37f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09dd4824c6862f6ac84f42a851f2bc9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a065b99-0678-4a63-bef6-8e2a79f698ec", + "x-ms-client-request-id": "09dd4824c6862f6ac84f42a851f2bc9c", + "x-ms-correlation-request-id": "fb90f0ef-d797-4945-9f44-3a39f2551acb", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "6b62e33d-cace-4894-b3ed-3eb6f8c2e2e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061807Z:fb90f0ef-d797-4945-9f44-3a39f2551acb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "915cd2a8f4d7348ca2e517ca4f5a6339", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "866f5298-6113-4e90-857b-8327adeef3dd", + "x-ms-client-request-id": "915cd2a8f4d7348ca2e517ca4f5a6339", + "x-ms-correlation-request-id": "6b6e849b-81b5-480e-a5ca-6b0e414cbb3c", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "28159c9e-ede1-4beb-99b5-3d2ed7e5a55b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061809Z:6b6e849b-81b5-480e-a5ca-6b0e414cbb3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83d3c0e5f9b0316c433eaac3e2edffc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f00daeb-ac3d-470a-aa74-fc993eaf49b5", + "x-ms-client-request-id": "83d3c0e5f9b0316c433eaac3e2edffc6", + "x-ms-correlation-request-id": "f855b335-a8b5-4053-8601-dd9187187626", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "1ac075c9-7a78-4848-ae1b-f312dbb47ddb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061810Z:f855b335-a8b5-4053-8601-dd9187187626" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33e5befae59b2f09bba866a0af9fe06e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc3aef36-a6fb-45bc-88a0-d7997d1efec8", + "x-ms-client-request-id": "33e5befae59b2f09bba866a0af9fe06e", + "x-ms-correlation-request-id": "d8785234-2036-4a7c-819c-4ac92fc62c6f", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "c6439d2f-4d3e-4cbc-aa10-b67a4174155a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061811Z:d8785234-2036-4a7c-819c-4ac92fc62c6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90c208eb381eaeeb652b4e9949c851b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49e478da-2aec-438d-8849-e610179e8f3a", + "x-ms-client-request-id": "90c208eb381eaeeb652b4e9949c851b4", + "x-ms-correlation-request-id": "a77e5fbb-dd00-4a40-a509-84c1bb6501db", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "0e402f44-a133-4b42-8dfb-aab20784a247", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061813Z:a77e5fbb-dd00-4a40-a509-84c1bb6501db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90cf51e63075ff9eb7a3c80793cc81a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dbce610a-b160-437e-b1b2-66639bf08800", + "x-ms-client-request-id": "90cf51e63075ff9eb7a3c80793cc81a3", + "x-ms-correlation-request-id": "40dbe4db-be13-4505-9bff-0d8261b4356a", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "7dd34aae-8fbb-4ae6-97dd-609e0ddbd003", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061814Z:40dbe4db-be13-4505-9bff-0d8261b4356a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9d83c5d6e2ac1a7d236cd6f976fe6f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0948a2a4-6d03-4ad0-a39c-13e75022ab20", + "x-ms-client-request-id": "d9d83c5d6e2ac1a7d236cd6f976fe6f3", + "x-ms-correlation-request-id": "775990f3-dbfd-483d-ba79-51f3f9a46a22", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "c919e413-41ea-41d8-84d1-05a2075e58e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061815Z:775990f3-dbfd-483d-ba79-51f3f9a46a22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5eb9b1564fcfbbf969c2d87b70e41b99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df1f3494-356e-4b0d-a290-254cfb0279b2", + "x-ms-client-request-id": "5eb9b1564fcfbbf969c2d87b70e41b99", + "x-ms-correlation-request-id": "ee15c00a-295d-4f95-8c58-0e34f895a6fb", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "141d9500-e285-41c2-845e-933a5f0afb5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061816Z:ee15c00a-295d-4f95-8c58-0e34f895a6fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c3babaa77f07789a90ebe3e632e6847", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "941bbd52-9b30-4276-b424-1569ca87aac3", + "x-ms-client-request-id": "0c3babaa77f07789a90ebe3e632e6847", + "x-ms-correlation-request-id": "1b8ab316-62d4-4f5b-8406-ffb34628f941", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "04ba86df-333a-4bd2-8b6c-c8f9f0f046bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061818Z:1b8ab316-62d4-4f5b-8406-ffb34628f941" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1b0d4bc23130ed3421c7067962c50ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "177745e9-c84b-4b0f-b271-80f8f1c9a80c", + "x-ms-client-request-id": "e1b0d4bc23130ed3421c7067962c50ed", + "x-ms-correlation-request-id": "b77cd1ef-eb2f-4d64-87be-85959a5ad298", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "cf7ed3f2-40f2-4719-b13e-0ac32cfc1bdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061819Z:b77cd1ef-eb2f-4d64-87be-85959a5ad298" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecc5341bda34de032741b4c190bb583b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ed54a08-4e41-45d0-9091-4be331680414", + "x-ms-client-request-id": "ecc5341bda34de032741b4c190bb583b", + "x-ms-correlation-request-id": "0754d918-cd43-49bb-986c-fac7f10dc332", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "b4cd6169-25a0-48d7-8b1e-2ec10303466d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061820Z:0754d918-cd43-49bb-986c-fac7f10dc332" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cbe905a39348785d72dc9d30722e17d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "129fc3dc-9aa6-444d-a5c8-b57bbafe7beb", + "x-ms-client-request-id": "9cbe905a39348785d72dc9d30722e17d", + "x-ms-correlation-request-id": "eee9fb1e-f82c-42bf-962e-a272650c50e5", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "c7da2bda-a1d4-41ae-81cb-9de90a495821", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061821Z:eee9fb1e-f82c-42bf-962e-a272650c50e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f22d1bd7c69e213d1d1b9d16e117d87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31630af2-2143-41c2-b630-86d24b50ea3f", + "x-ms-client-request-id": "2f22d1bd7c69e213d1d1b9d16e117d87", + "x-ms-correlation-request-id": "afdc8f60-6494-49d7-b015-5f656e7c40b2", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "e41e4b5b-3f9f-4221-9bf3-2c4f54e8b711", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061823Z:afdc8f60-6494-49d7-b015-5f656e7c40b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "050d34c4b46de2b9ae3e1407102fd705", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74f24e65-0adb-481f-99a4-a5f2d84ce489", + "x-ms-client-request-id": "050d34c4b46de2b9ae3e1407102fd705", + "x-ms-correlation-request-id": "1cb53399-cbeb-413d-9490-b3c779b26eb8", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "4f79ef23-500b-4d10-a992-35aecdbf8352", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061824Z:1cb53399-cbeb-413d-9490-b3c779b26eb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf0336602998ded27ddccb637fb418c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "285c44a9-4a6b-444d-bf69-81cda85863f1", + "x-ms-client-request-id": "bf0336602998ded27ddccb637fb418c5", + "x-ms-correlation-request-id": "7a5785ac-e89f-43bf-a72d-7d964f190ab0", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "b6f1b6a2-3521-4351-ba21-1cff7773565f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061825Z:7a5785ac-e89f-43bf-a72d-7d964f190ab0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d30e42afdb1409101840802a670cd2a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec9a2734-db6d-4933-b05e-8ac846f2771e", + "x-ms-client-request-id": "d30e42afdb1409101840802a670cd2a1", + "x-ms-correlation-request-id": "acec156a-0061-4390-8803-36da101853e7", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "c3037970-7462-4321-a05f-437966c1e77c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061827Z:acec156a-0061-4390-8803-36da101853e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3871b4fabd0e9bee622f8891e95662fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25843259-3cc4-4fd7-8dda-05e4b15191e5", + "x-ms-client-request-id": "3871b4fabd0e9bee622f8891e95662fa", + "x-ms-correlation-request-id": "63e15b28-90ac-4665-8d98-4a38a7de63c4", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "5a502c6b-d5ee-498c-89e6-13bfdacd8ae7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061828Z:63e15b28-90ac-4665-8d98-4a38a7de63c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd574f26032184f126faa758a8a77770", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "62e83274-3b4e-46d2-8f4e-ecb16c79dca8", + "x-ms-client-request-id": "cd574f26032184f126faa758a8a77770", + "x-ms-correlation-request-id": "085974c3-8301-4ecf-8857-395af4f3379e", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "f92b32f2-6433-4d93-918f-5324fe3e0376", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061829Z:085974c3-8301-4ecf-8857-395af4f3379e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb682909df42f1b7537371e5537e1fc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e9ebd79-fe13-460b-b9ed-fb2f981e5054", + "x-ms-client-request-id": "cb682909df42f1b7537371e5537e1fc2", + "x-ms-correlation-request-id": "6badc4bb-f044-4530-9592-fd85a3119836", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "084cb42b-2dee-4e54-90d6-61abf58432c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061830Z:6badc4bb-f044-4530-9592-fd85a3119836" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "180486dd04b5f680c2ed11131695f3ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6db0359-e9f3-468f-9e96-689224ebd2e6", + "x-ms-client-request-id": "180486dd04b5f680c2ed11131695f3ba", + "x-ms-correlation-request-id": "707b10a9-14e5-4eea-a3f6-4f74cad39b09", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "f533e837-cf32-481e-b858-20d0c5c04db6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061832Z:707b10a9-14e5-4eea-a3f6-4f74cad39b09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf8717b796ed46b7976579ad920b31a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8ac046d-09d2-43bc-9ded-4f350fae4f09", + "x-ms-client-request-id": "bf8717b796ed46b7976579ad920b31a7", + "x-ms-correlation-request-id": "042173fc-c1b6-44c4-b091-49799bdf29cd", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "37f94bb7-89da-402b-819a-e8dea0077499", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061833Z:042173fc-c1b6-44c4-b091-49799bdf29cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "227be4db5ea304bba9720955cda4dbbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ecfc74c9-7913-4069-8e04-55f53531f0a6", + "x-ms-client-request-id": "227be4db5ea304bba9720955cda4dbbe", + "x-ms-correlation-request-id": "d04e1083-97b4-46f6-8b18-ee49fd784dab", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "b8ea5c27-06f0-407a-bd0c-d6a8bad8a68e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061834Z:d04e1083-97b4-46f6-8b18-ee49fd784dab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b2db67f5ff647d4cebe80508ad264b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6455443b-1999-4eb1-b2a1-7c730518ab8f", + "x-ms-client-request-id": "3b2db67f5ff647d4cebe80508ad264b7", + "x-ms-correlation-request-id": "18fd96ad-0286-4fa6-9a89-c1d11c233d56", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "b8c2e360-f20b-48f2-bdf9-5b6ffbdea025", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061838Z:18fd96ad-0286-4fa6-9a89-c1d11c233d56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31386abbd11a59175c83167b8d6278f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18ae9b43-3ce6-4410-8979-88c47c563138", + "x-ms-client-request-id": "31386abbd11a59175c83167b8d6278f3", + "x-ms-correlation-request-id": "6944c07d-125c-4637-82e6-e9e51c3555bc", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "868bdfdd-16a5-4ae1-a0e8-9ca14995f423", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061840Z:6944c07d-125c-4637-82e6-e9e51c3555bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db2ebb89f5de7bb00f3453e5de6b79d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ded2ea9-8dd6-40b9-89be-dc477986e52f", + "x-ms-client-request-id": "db2ebb89f5de7bb00f3453e5de6b79d6", + "x-ms-correlation-request-id": "7516a090-0ac4-435e-84b5-6a8db1caad57", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "b8547429-c2e8-49a0-9ac1-6bed46c0a233", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061841Z:7516a090-0ac4-435e-84b5-6a8db1caad57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6399520da96caea39fd4df734959b96c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c845db9a-03e6-4400-b61e-c185d552d8b5", + "x-ms-client-request-id": "6399520da96caea39fd4df734959b96c", + "x-ms-correlation-request-id": "add11b0c-dc17-4168-b1a7-8abae9632784", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "73c131e7-f3bf-439f-833d-5a4bfb33bbac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061843Z:add11b0c-dc17-4168-b1a7-8abae9632784" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfc68d4589a4c6d8b9bd21e67d327af0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54880f0e-4214-4362-b4c6-6c2fb35c55d8", + "x-ms-client-request-id": "cfc68d4589a4c6d8b9bd21e67d327af0", + "x-ms-correlation-request-id": "e7168c6e-4669-44b1-b62f-e64361d07ddc", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "99702608-976c-4dd4-b4c9-96e2a0e8a07a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061844Z:e7168c6e-4669-44b1-b62f-e64361d07ddc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b6d400914c8e086177f3b09153d32b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91cd244f-cbe6-4252-ab29-c0b732191311", + "x-ms-client-request-id": "3b6d400914c8e086177f3b09153d32b6", + "x-ms-correlation-request-id": "c917c9ba-741d-4a5d-b892-c8738af03675", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "fc6a49de-0bf7-49dd-aca6-4f920c928b0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061845Z:c917c9ba-741d-4a5d-b892-c8738af03675" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "519fe77aaaa5843179d2aaaf87bd306d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9dcf824-6371-484f-a2a7-770e5c13286e", + "x-ms-client-request-id": "519fe77aaaa5843179d2aaaf87bd306d", + "x-ms-correlation-request-id": "0bcd2396-b73d-485c-bea3-055448752d31", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "bccfd459-01df-428c-9521-5a42cb1459c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061847Z:0bcd2396-b73d-485c-bea3-055448752d31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "086aee597eeb30a306e5b7254dceb07c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4ed391e-d9f4-4e65-80f8-c83794a91d71", + "x-ms-client-request-id": "086aee597eeb30a306e5b7254dceb07c", + "x-ms-correlation-request-id": "4398af9f-5807-4c05-a7ea-43c48b2dee95", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "f3ab43ae-4440-4805-86ed-14dc895bc402", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061848Z:4398af9f-5807-4c05-a7ea-43c48b2dee95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "966c6b8b29925e4b0ee9c2f56ad7595a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "445d29c5-5bc4-4b45-a8a6-13e7b01f38f0", + "x-ms-client-request-id": "966c6b8b29925e4b0ee9c2f56ad7595a", + "x-ms-correlation-request-id": "5304f2cc-afc7-49f4-a395-21c246dab9f1", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "c1d62fa1-4cf2-4921-9e3e-29637642ebf7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061849Z:5304f2cc-afc7-49f4-a395-21c246dab9f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27b0cd4e29d2fcca436e4abff20c37aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6d59fe2-466f-488b-b3f9-04f486e78f8d", + "x-ms-client-request-id": "27b0cd4e29d2fcca436e4abff20c37aa", + "x-ms-correlation-request-id": "02eb4d37-dbe3-4926-a7c5-fe6556046306", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "7829b9e5-033f-4bb7-a72e-73aaa22df09c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061851Z:02eb4d37-dbe3-4926-a7c5-fe6556046306" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b242d229a5130dba30bfa02bbadc62e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "920fdd70-7e18-43c0-b2d9-e2ec8783ccb3", + "x-ms-client-request-id": "1b242d229a5130dba30bfa02bbadc62e", + "x-ms-correlation-request-id": "ded72983-48b5-45a5-ab25-d41ca30b26f0", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "d31ad58d-6f6b-4151-bac0-867cecda6881", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061852Z:ded72983-48b5-45a5-ab25-d41ca30b26f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fd65d8c891e61aaa16f5324de8b6b01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9285c527-bdb5-4075-b69c-e2e3e959aba2", + "x-ms-client-request-id": "7fd65d8c891e61aaa16f5324de8b6b01", + "x-ms-correlation-request-id": "b6a5981c-bd6c-48f7-97a6-469ac29495a1", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "b504d0cb-a343-4421-8274-85b4f1164e0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061853Z:b6a5981c-bd6c-48f7-97a6-469ac29495a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3dd317b23db3b409f27f83c62fc74096", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12f865b5-fc7c-4935-9a43-d54303436b03", + "x-ms-client-request-id": "3dd317b23db3b409f27f83c62fc74096", + "x-ms-correlation-request-id": "e4bcb58b-ded9-483b-b112-a61d94a6040c", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "8e9460ff-8b64-4b96-8ad1-2543d33ec7d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061855Z:e4bcb58b-ded9-483b-b112-a61d94a6040c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95331ca8b735988b83c27ae146b65117", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1433f946-d864-462b-8cad-ed7731a0b473", + "x-ms-client-request-id": "95331ca8b735988b83c27ae146b65117", + "x-ms-correlation-request-id": "4d81a23c-c272-4394-b441-ae537cc582f1", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "00ae93d0-90be-48a4-b1e0-ac38818012ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061856Z:4d81a23c-c272-4394-b441-ae537cc582f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a450f8a088d94e7a53228d9f05e332d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16097d83-e2c3-477e-b043-f689a72e361c", + "x-ms-client-request-id": "a450f8a088d94e7a53228d9f05e332d9", + "x-ms-correlation-request-id": "042f4e9e-064e-4ec7-b72d-fb5bb12e7263", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "b52ca480-34a3-413d-8ef5-672049326f6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061857Z:042f4e9e-064e-4ec7-b72d-fb5bb12e7263" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c27cbd2fd657facb8c3bb9f1c2276d3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:18:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd1f6398-648a-41bf-b909-1f0740216f3a", + "x-ms-client-request-id": "c27cbd2fd657facb8c3bb9f1c2276d3c", + "x-ms-correlation-request-id": "0ef96282-232d-40ef-9bee-0b17cf944af6", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "44ab2304-f9da-4ae5-8aeb-ec9014f8ab6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061858Z:0ef96282-232d-40ef-9bee-0b17cf944af6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36266c2e9c761fbca1e5411329ec929f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4135131-4ff4-4b17-8cc3-041da07f7d5f", + "x-ms-client-request-id": "36266c2e9c761fbca1e5411329ec929f", + "x-ms-correlation-request-id": "2fd7e866-93ef-4468-8dc6-e7098ab76fb2", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "938a29bb-2ce6-4266-9f4b-6e2b99f5378f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061900Z:2fd7e866-93ef-4468-8dc6-e7098ab76fb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89b2a18f8e3ac9bf2c55179ecf898b2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea35f8cb-f1bd-4967-9ffa-ffa627ba4403", + "x-ms-client-request-id": "89b2a18f8e3ac9bf2c55179ecf898b2c", + "x-ms-correlation-request-id": "0be5ef97-3a84-4350-bbde-1780d4321fc1", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "baa36f8b-dd56-475f-a61b-cfecdeb45c9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061901Z:0be5ef97-3a84-4350-bbde-1780d4321fc1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "997051b5fbbd9262015d217294b8d09f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aef261a4-3cf4-42b3-a73b-cff3a27ba21a", + "x-ms-client-request-id": "997051b5fbbd9262015d217294b8d09f", + "x-ms-correlation-request-id": "f4e600a5-76ba-472e-8f66-5e8aa92db1e2", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "17b98eb6-934c-4d21-94c2-dafdfe9e720e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061902Z:f4e600a5-76ba-472e-8f66-5e8aa92db1e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "216119a8e3759f01ac5c0a21841d4f17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3f9e7b5-d6ee-45e5-a3a0-94b2a80b6fc4", + "x-ms-client-request-id": "216119a8e3759f01ac5c0a21841d4f17", + "x-ms-correlation-request-id": "4b8cc92d-52a3-4fb1-b2f3-2de8715de535", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "c15499a3-507d-4766-92c0-1dbf922193fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061904Z:4b8cc92d-52a3-4fb1-b2f3-2de8715de535" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d85e1559f97b93e23e1f88dd6d4d3574", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77fbd0fc-f174-40a3-b397-999148d1fdc5", + "x-ms-client-request-id": "d85e1559f97b93e23e1f88dd6d4d3574", + "x-ms-correlation-request-id": "84f5e5e3-a99d-40af-9c90-fd4133e3425c", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "64ac8c86-5c82-4919-b823-1d66450c9e40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061905Z:84f5e5e3-a99d-40af-9c90-fd4133e3425c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5f678846927d1b64fd1ec60f1410ee3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "304e627c-5141-4771-b0d7-5cf1e2e08452", + "x-ms-client-request-id": "b5f678846927d1b64fd1ec60f1410ee3", + "x-ms-correlation-request-id": "cbde5c97-e2dc-43f6-b804-737adb5c55ac", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "316e4e7d-c091-42e1-9a69-736d0bfeb69a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061906Z:cbde5c97-e2dc-43f6-b804-737adb5c55ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f18090df859ae2337cde3565a24325f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b73f476-c235-4717-9de6-a89fd8e9e59d", + "x-ms-client-request-id": "7f18090df859ae2337cde3565a24325f", + "x-ms-correlation-request-id": "626c7ea7-db45-4f15-90bc-35470d80291e", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "1e4dbc08-7244-4143-8267-c4e9183f4494", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061907Z:626c7ea7-db45-4f15-90bc-35470d80291e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b9c96279a26f0ef5f8d89aa0c81a2fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac4cf3a3-1c0f-456c-8467-ab93ea230f9d", + "x-ms-client-request-id": "0b9c96279a26f0ef5f8d89aa0c81a2fd", + "x-ms-correlation-request-id": "d3417247-4fc4-4ee9-bbd0-d0d1b35c78a6", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "da5aac49-35af-49b2-99a8-ce9c7362223a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061909Z:d3417247-4fc4-4ee9-bbd0-d0d1b35c78a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63d0a410b5348c1a55487d5a865f762b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff595903-8244-462e-81e9-4c6e7f6fea91", + "x-ms-client-request-id": "63d0a410b5348c1a55487d5a865f762b", + "x-ms-correlation-request-id": "315e6e6b-ad50-48ae-8cf9-b7b9797a8b51", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "1378f168-236e-4359-b4ad-725d249a6207", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061910Z:315e6e6b-ad50-48ae-8cf9-b7b9797a8b51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b398d9e02a472bd1a2820cc6e78a1b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c56495d-baad-427a-b7d7-22afa1a92adc", + "x-ms-client-request-id": "5b398d9e02a472bd1a2820cc6e78a1b6", + "x-ms-correlation-request-id": "7496b704-d7f8-4ef7-9005-b62e7cc1487d", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "7e8682c5-f533-4f2c-9b98-6ca86f426734", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061911Z:7496b704-d7f8-4ef7-9005-b62e7cc1487d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b546e52bcf54712a7b0fb6dd1c9569ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b87120d-646e-4ab0-8532-b0277cc87c81", + "x-ms-client-request-id": "b546e52bcf54712a7b0fb6dd1c9569ff", + "x-ms-correlation-request-id": "7a7d9d55-cdff-4dc9-994b-8a63dcd7ac2a", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "d5894ae7-79ee-40d7-81c4-f480d604586f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061913Z:7a7d9d55-cdff-4dc9-994b-8a63dcd7ac2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f0c5d1646470d58e75d490b954d1ddc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee12ed0e-b931-4ddd-9b5a-9815fc60ed55", + "x-ms-client-request-id": "7f0c5d1646470d58e75d490b954d1ddc", + "x-ms-correlation-request-id": "98fbe8e7-759c-4dee-a1db-828723b52cec", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "91de8b6d-13ae-4500-aced-4d79f4500542", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061914Z:98fbe8e7-759c-4dee-a1db-828723b52cec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a02ec7a6c119cfd762c7e0954bdf5684", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8313b5d-1083-409d-981d-cbc0f6011621", + "x-ms-client-request-id": "a02ec7a6c119cfd762c7e0954bdf5684", + "x-ms-correlation-request-id": "c6807c48-af53-4a7f-9528-6e3da305addc", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "625d922b-f618-442a-ba9c-e9d2f4794f02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061915Z:c6807c48-af53-4a7f-9528-6e3da305addc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11b620be226ce56e8d38cef6861edc2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34d9e005-f257-4628-8c1d-3948cde47e6d", + "x-ms-client-request-id": "11b620be226ce56e8d38cef6861edc2d", + "x-ms-correlation-request-id": "9b764672-0018-4e69-8dbe-dd7877f5bd6d", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "eef36c17-cf61-4c25-93ff-33dac642e5fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061916Z:9b764672-0018-4e69-8dbe-dd7877f5bd6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5537daf1c86755e6863c1c8066c3c107", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d775a93a-24e6-411e-a986-73555c55063b", + "x-ms-client-request-id": "5537daf1c86755e6863c1c8066c3c107", + "x-ms-correlation-request-id": "7d3519e7-bed0-406f-ab00-8b4eb4a60fc6", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "0faa1504-ac55-4a05-8f96-664e82a4a3ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061918Z:7d3519e7-bed0-406f-ab00-8b4eb4a60fc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "754dc4070c978470594913e0f2e04943", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67da2d25-f9fb-4e3a-8899-9cd6b232c997", + "x-ms-client-request-id": "754dc4070c978470594913e0f2e04943", + "x-ms-correlation-request-id": "7e468d10-a094-4aed-b042-d0cf7bca65f2", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "771a3946-1249-431d-95fd-5dbea7a6558a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061919Z:7e468d10-a094-4aed-b042-d0cf7bca65f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71a3b2eb00a8f51d39618a2f05ee7ec9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9745ea5f-ae80-45f8-aeb0-1f4d962a75f7", + "x-ms-client-request-id": "71a3b2eb00a8f51d39618a2f05ee7ec9", + "x-ms-correlation-request-id": "b7266d2b-ad8e-4ca9-a0ab-361e4eec3d11", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "fbc7ec32-1a38-4633-a5ca-e80f5f944126", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061920Z:b7266d2b-ad8e-4ca9-a0ab-361e4eec3d11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1eec67667d1e4966ab2fb1db50662a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51c2b9f5-98c1-40c3-9377-d8be52b05b2f", + "x-ms-client-request-id": "c1eec67667d1e4966ab2fb1db50662a5", + "x-ms-correlation-request-id": "836db2c1-3600-47c5-998f-d8c98172999a", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "8b69113d-000d-4ec8-8302-83666b339065", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061922Z:836db2c1-3600-47c5-998f-d8c98172999a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b494d9f34f1f065fa6573b3582407f6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f85a05a-210a-4fcc-9093-284f30c65624", + "x-ms-client-request-id": "b494d9f34f1f065fa6573b3582407f6a", + "x-ms-correlation-request-id": "f6f33939-8f04-470f-85a4-9a5f0d597726", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "846109d8-ab73-4d38-8a9e-86a3d3851be7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061923Z:f6f33939-8f04-470f-85a4-9a5f0d597726" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c6949ca87f184711bbe07f505ff4033", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9abed8db-3dc0-4849-b778-1224c049bfc5", + "x-ms-client-request-id": "2c6949ca87f184711bbe07f505ff4033", + "x-ms-correlation-request-id": "69a8afe6-2d8b-4658-ba53-e4be8e8c140e", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "ebf83147-6374-49b8-82fd-b174cd502858", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061924Z:69a8afe6-2d8b-4658-ba53-e4be8e8c140e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b3ce4ffca5926aa66e81a7a2c606229", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0bd6f473-a2ce-457b-8736-b1f3c30e30b1", + "x-ms-client-request-id": "2b3ce4ffca5926aa66e81a7a2c606229", + "x-ms-correlation-request-id": "6e7a4819-cf97-4cd3-a46c-e20a17767be9", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "5057bedd-6f1b-4a91-9fce-d7e16803f58d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061925Z:6e7a4819-cf97-4cd3-a46c-e20a17767be9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b539133359c6bb367109860486901a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ef83a0d-3e67-44f6-a802-f93c0d7f0bc4", + "x-ms-client-request-id": "6b539133359c6bb367109860486901a7", + "x-ms-correlation-request-id": "b32096d7-e858-410a-9d5b-0c264563c5a8", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "614cd46b-8267-49c1-b116-33b6e0a28608", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061927Z:b32096d7-e858-410a-9d5b-0c264563c5a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d3607165303ff119f42c5096df758ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f9a3db3-fafb-458c-a03b-e00087b8e854", + "x-ms-client-request-id": "9d3607165303ff119f42c5096df758ba", + "x-ms-correlation-request-id": "a444bb84-6b81-4bbf-951a-9d7e29cdd0e7", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "9546642b-d264-4fe2-b8a5-18e79a1fb3c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061928Z:a444bb84-6b81-4bbf-951a-9d7e29cdd0e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73c2de5cd4acc99631d1c4493149defd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b333975-805d-4dd4-9dbd-6f4d5b676cc8", + "x-ms-client-request-id": "73c2de5cd4acc99631d1c4493149defd", + "x-ms-correlation-request-id": "a116f6fb-79dd-4e58-8a7a-defdeb466677", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "3d0beaf9-b385-4b4c-a4c0-2e2ae000a403", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061929Z:a116f6fb-79dd-4e58-8a7a-defdeb466677" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "246373e6c42adf258053cc5a6faafe70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "deb7d640-1bae-4b2f-9d89-a9e4884984bf", + "x-ms-client-request-id": "246373e6c42adf258053cc5a6faafe70", + "x-ms-correlation-request-id": "40a9c192-f148-4df1-bb40-3924b7506f79", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "719ff045-2371-4e13-a5ab-9634fb73ba1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061931Z:40a9c192-f148-4df1-bb40-3924b7506f79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a04deb88da641fb706c6c328fc7ce55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58e565d7-fb1c-4bb7-af06-191246ce721b", + "x-ms-client-request-id": "6a04deb88da641fb706c6c328fc7ce55", + "x-ms-correlation-request-id": "0ce8e11d-456d-4783-92a3-4ccd05ce535f", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "01cc63b8-e168-4de3-8f06-ee28b83d8216", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061932Z:0ce8e11d-456d-4783-92a3-4ccd05ce535f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f922c86333939790b8e3f358083c5a86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98343419-4406-4a32-8f41-784b49284d80", + "x-ms-client-request-id": "f922c86333939790b8e3f358083c5a86", + "x-ms-correlation-request-id": "a2895c93-d87c-45ec-a768-6176d3a65eda", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "2b74370b-aa1e-4431-ba63-4238eabd29d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061933Z:a2895c93-d87c-45ec-a768-6176d3a65eda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "539153d3744559567722b3bd58f350b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4eb1bd3f-4418-4fa4-a386-793281032555", + "x-ms-client-request-id": "539153d3744559567722b3bd58f350b8", + "x-ms-correlation-request-id": "28b44280-2118-4adc-b14e-c48143c0dd2d", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "e67b047c-e15f-421f-9b44-1ee90c7baf67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061934Z:28b44280-2118-4adc-b14e-c48143c0dd2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6f67685048784dd4e6cb1c399a33834", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cb27c08-68bb-4960-bf2d-6345563ccad4", + "x-ms-client-request-id": "a6f67685048784dd4e6cb1c399a33834", + "x-ms-correlation-request-id": "a43c298e-4754-49bd-a270-bd65948f33b1", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "b32b5720-f322-478f-a5cd-143145e74ad2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061936Z:a43c298e-4754-49bd-a270-bd65948f33b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b5fe5127a36ef1072c9827080d23ec5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b59fcc92-3c6f-4408-888b-e808487ebf30", + "x-ms-client-request-id": "3b5fe5127a36ef1072c9827080d23ec5", + "x-ms-correlation-request-id": "ef6d8fbb-2ba4-4b33-b036-3b86ab6911f6", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "f3ea0e8f-4daa-4b48-ba10-ffe6132f3cde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061937Z:ef6d8fbb-2ba4-4b33-b036-3b86ab6911f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92d23b92b346cfff760c05d8c293bfd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5b308e4-f235-4d39-88b0-0f23b3df518a", + "x-ms-client-request-id": "92d23b92b346cfff760c05d8c293bfd4", + "x-ms-correlation-request-id": "d9efd561-edb3-4972-9bda-964734ee3389", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "590d5427-4550-4ef3-89a0-82eacada6c7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061938Z:d9efd561-edb3-4972-9bda-964734ee3389" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73aa7ee915930a81650634be816c047b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a6cbf3b-2dc3-4214-a3f6-ec00280bdc13", + "x-ms-client-request-id": "73aa7ee915930a81650634be816c047b", + "x-ms-correlation-request-id": "97811157-1a92-4b2f-ba8b-f4f60f8b0bd0", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "f631d63f-10fb-4acc-a958-b2807606bad0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061940Z:97811157-1a92-4b2f-ba8b-f4f60f8b0bd0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e30ec2ea6d05feee58fc52975382cdf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16f26f75-13e6-40a2-86c7-19347239ce15", + "x-ms-client-request-id": "5e30ec2ea6d05feee58fc52975382cdf", + "x-ms-correlation-request-id": "e5e4dea3-1a97-4090-a04d-4aff81a9994c", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "79bf2600-2755-415a-9fee-17cc1f13eb52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061941Z:e5e4dea3-1a97-4090-a04d-4aff81a9994c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0187ad09cb287d31b9c82c3f7e414d09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "766d0c28-75d3-4df1-9e3c-629e062874d9", + "x-ms-client-request-id": "0187ad09cb287d31b9c82c3f7e414d09", + "x-ms-correlation-request-id": "78866914-06db-4afd-a5ea-376f41135349", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "f5f5a0e5-6d65-4560-8aa2-7b8e4c9ba9a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061942Z:78866914-06db-4afd-a5ea-376f41135349" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6aa8a0861624204904b8d035057942d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73abcb3a-17ce-4712-ba98-cff1c777ffe7", + "x-ms-client-request-id": "d6aa8a0861624204904b8d035057942d", + "x-ms-correlation-request-id": "f2f677c6-b98c-451c-8d3c-6fdd51292c56", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "83c20963-4408-4898-8fb2-96ae01e42f68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061943Z:f2f677c6-b98c-451c-8d3c-6fdd51292c56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4b455da02e56252bbb2a4077aafe0a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79eb569a-2bfa-4857-9c1b-ad4937d828b9", + "x-ms-client-request-id": "d4b455da02e56252bbb2a4077aafe0a4", + "x-ms-correlation-request-id": "df51fbd6-108f-4276-a091-56e111432dde", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "cdd0eb6c-f6a2-4ccc-99d4-d5c40bd34098", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061945Z:df51fbd6-108f-4276-a091-56e111432dde" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb21bb42568ea87ca84470dd3e2d2d61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "195bc904-c25b-4fef-b97c-fd7d6d31376d", + "x-ms-client-request-id": "eb21bb42568ea87ca84470dd3e2d2d61", + "x-ms-correlation-request-id": "d3515398-72fc-4437-b1ae-2b73da49f4d7", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "d4e7ddee-3105-47a0-ade1-3621b075e77c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061946Z:d3515398-72fc-4437-b1ae-2b73da49f4d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2964ff33788c052437471bafbcfcc8e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "375cf833-92e0-4fee-b0e9-aefc5f2ac9e4", + "x-ms-client-request-id": "2964ff33788c052437471bafbcfcc8e1", + "x-ms-correlation-request-id": "ef7dec5e-a090-4f34-901b-f20c2ce7172c", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "8823e22a-91be-4ffd-9544-64d546e1ae92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061947Z:ef7dec5e-a090-4f34-901b-f20c2ce7172c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94c1e86aa936849fd80b2ba09175248d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ec0f0d8-c8d2-40a3-97c7-6d12032f5759", + "x-ms-client-request-id": "94c1e86aa936849fd80b2ba09175248d", + "x-ms-correlation-request-id": "1f97fb78-8e64-4025-9450-97501bb24129", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "a186aaf2-1ec3-4e8d-9324-7526164ad4b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061949Z:1f97fb78-8e64-4025-9450-97501bb24129" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bd44385b74ac917961bb4463accecac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "183f6ce0-a9e9-4816-b8d9-bb23dbd7e6b1", + "x-ms-client-request-id": "7bd44385b74ac917961bb4463accecac", + "x-ms-correlation-request-id": "cb991c8f-a014-4279-8518-98adbf032dd5", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "75620a8e-e84a-42c9-a2f2-3b71c60f79d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061950Z:cb991c8f-a014-4279-8518-98adbf032dd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55728f7c986c8a2b5fe050814d8473c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eacab327-934c-467c-a8f6-3762e1732dd3", + "x-ms-client-request-id": "55728f7c986c8a2b5fe050814d8473c1", + "x-ms-correlation-request-id": "cf8fdaad-0bbd-4dd9-aead-e6be02b3206f", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "228f80d7-971b-4933-af22-25e1419946fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061951Z:cf8fdaad-0bbd-4dd9-aead-e6be02b3206f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "792a8d234d28b396d0f7fe1af458490c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1da76717-b44e-4b0b-9335-67aa0c11a488", + "x-ms-client-request-id": "792a8d234d28b396d0f7fe1af458490c", + "x-ms-correlation-request-id": "d5dfd6dc-6acf-4837-85a8-362a49880731", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "dbf6e919-62fd-4c5d-855e-a395bfd759d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061952Z:d5dfd6dc-6acf-4837-85a8-362a49880731" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02237f1fce02ec2118491b6a66967c12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e822ab88-5365-4679-8943-9e66ac94778f", + "x-ms-client-request-id": "02237f1fce02ec2118491b6a66967c12", + "x-ms-correlation-request-id": "15712921-e877-4f73-a304-c1c81f67491c", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "80834c7c-9df4-4a15-a27b-8aa0b52ddc7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061954Z:15712921-e877-4f73-a304-c1c81f67491c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad22f2a773a22f84f8bf84749a109506", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2bf422a6-3d42-4492-869a-75bb3a725778", + "x-ms-client-request-id": "ad22f2a773a22f84f8bf84749a109506", + "x-ms-correlation-request-id": "d81226b0-617b-48d8-882c-8f80a11aba1e", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "e19cc4f4-5f1f-4e57-9e18-ca2c81c282ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061955Z:d81226b0-617b-48d8-882c-8f80a11aba1e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd614497716054bf6b3e61de312c4c3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e7c0b9b-9450-469a-b2f6-cfb797f086c8", + "x-ms-client-request-id": "cd614497716054bf6b3e61de312c4c3a", + "x-ms-correlation-request-id": "bb9cfdeb-9c21-4b6d-84a3-334c4e13a01e", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "56eb6efd-826b-45c7-af30-c3b452f17559", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061956Z:bb9cfdeb-9c21-4b6d-84a3-334c4e13a01e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0273ec7a9c36ac69fbf40a4249ac5107", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a348fe1-76c0-4e6a-99df-e2641d708e80", + "x-ms-client-request-id": "0273ec7a9c36ac69fbf40a4249ac5107", + "x-ms-correlation-request-id": "50fc7b19-27f9-4793-ab8c-ceaea96a090c", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "ba5e397d-55a0-46c3-93a5-a23393eb6742", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061957Z:50fc7b19-27f9-4793-ab8c-ceaea96a090c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22d314b3af3436b133cd416312a5fdcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ab9f089-6f61-4752-ae44-cc0bbe7e0f4c", + "x-ms-client-request-id": "22d314b3af3436b133cd416312a5fdcb", + "x-ms-correlation-request-id": "e5e52e01-4ff1-40e9-9078-10ea4056b5c9", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "35042390-b433-40ea-971d-0b445490ff04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T061959Z:e5e52e01-4ff1-40e9-9078-10ea4056b5c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aefa4a73939dfad0dab5d26c677c0bbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:19:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1d6b14b-0cd3-4899-ab6e-9788d2c04524", + "x-ms-client-request-id": "aefa4a73939dfad0dab5d26c677c0bbf", + "x-ms-correlation-request-id": "ab5b3fcd-ea80-451a-9250-ea414a9dcb1b", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "0e41e1a6-3d23-47f9-9aed-fe50164fb780", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062000Z:ab5b3fcd-ea80-451a-9250-ea414a9dcb1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d2a59ed2959cb053a3cce685a059a55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81961c6b-f898-442d-b692-0f04c0e13e6a", + "x-ms-client-request-id": "1d2a59ed2959cb053a3cce685a059a55", + "x-ms-correlation-request-id": "4d65935d-e4d5-46fd-bed5-caeb878f2173", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "b90721b1-7ae6-4c83-9fdb-7f84b15f90bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062001Z:4d65935d-e4d5-46fd-bed5-caeb878f2173" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffce3ef6a2b21f6a43d8477fdd44cfb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88d833c7-92ed-49b1-83cc-9e56a83a75e8", + "x-ms-client-request-id": "ffce3ef6a2b21f6a43d8477fdd44cfb6", + "x-ms-correlation-request-id": "d356a7ec-30d0-4c3e-a9e5-43561d6fcfba", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "585814c2-957a-40d1-9b7d-61624dba8425", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062003Z:d356a7ec-30d0-4c3e-a9e5-43561d6fcfba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b87682c2e07b4a72452f7460c567a0d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "039eb76f-5ad3-48ff-aebd-3626070ca7de", + "x-ms-client-request-id": "b87682c2e07b4a72452f7460c567a0d4", + "x-ms-correlation-request-id": "ed4c8c17-3007-4783-b767-34fb91031c91", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "5adc1f8e-5491-4f34-9a7f-4ea1283729d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062004Z:ed4c8c17-3007-4783-b767-34fb91031c91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29757c1b0bae4a0cee0ad981e186edf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72e8cf0d-00ee-4a22-86c5-3ea10a2b4a33", + "x-ms-client-request-id": "29757c1b0bae4a0cee0ad981e186edf5", + "x-ms-correlation-request-id": "b3a6420f-f209-425f-9c9f-d61bf63e7d80", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "bd62fbaf-760e-4895-a610-79d7374bce9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062005Z:b3a6420f-f209-425f-9c9f-d61bf63e7d80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8a6186de18e16dacb84b9832e0a5adb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cdac20d2-69df-443f-834d-a55c27e8f4aa", + "x-ms-client-request-id": "d8a6186de18e16dacb84b9832e0a5adb", + "x-ms-correlation-request-id": "a1a5c897-27c8-461e-8558-481f0fb8fb51", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "f240b1ef-d3eb-47cc-8c4f-f05e340a2325", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062006Z:a1a5c897-27c8-461e-8558-481f0fb8fb51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60637337a6ceb607752cca7006f068be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4dfe6c29-714f-4a18-817f-60786fa6f5d8", + "x-ms-client-request-id": "60637337a6ceb607752cca7006f068be", + "x-ms-correlation-request-id": "e34f69a2-40a4-45d1-bad1-8c3dc3ddf6b0", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "abf53adb-1e1e-445e-abc6-a7448019d4e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062008Z:e34f69a2-40a4-45d1-bad1-8c3dc3ddf6b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acf27e41c7c13a45a25f5d2951891ce4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a6ffc67-a9c7-43e6-bb58-275d6300cf0b", + "x-ms-client-request-id": "acf27e41c7c13a45a25f5d2951891ce4", + "x-ms-correlation-request-id": "538796ae-9fff-4187-8f71-42f46b1844e2", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "17a5e89a-9e84-4842-a63d-8c39d55db6e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062009Z:538796ae-9fff-4187-8f71-42f46b1844e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e49fdaf8d23c72610ef6262166910db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d9e026b-3738-46d4-b563-8bfcf5699f21", + "x-ms-client-request-id": "6e49fdaf8d23c72610ef6262166910db", + "x-ms-correlation-request-id": "06863602-19e4-426a-a7fd-2af5596ab714", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "93089d99-3553-486a-988c-230a3b65c44b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062011Z:06863602-19e4-426a-a7fd-2af5596ab714" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b041fb1bae17701a2d28bd6f49de64eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79140720-f49d-4cea-bc98-446b41283bdd", + "x-ms-client-request-id": "b041fb1bae17701a2d28bd6f49de64eb", + "x-ms-correlation-request-id": "c401917d-e710-46d4-bfc7-112cb87a0603", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "5ae81d86-1f06-463d-a7b7-ab0587733804", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062012Z:c401917d-e710-46d4-bfc7-112cb87a0603" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08c1e60ffaa7b39b572b9bd264e32339", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "667d0833-a684-4b59-8b14-c58be599be68", + "x-ms-client-request-id": "08c1e60ffaa7b39b572b9bd264e32339", + "x-ms-correlation-request-id": "115fa197-6bfa-4dd0-aec0-2bbc1b82ad5e", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "5e89b13c-bd21-4fb0-994c-8493e8fa38fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062013Z:115fa197-6bfa-4dd0-aec0-2bbc1b82ad5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "560d814e6c4800cce3d941fad0b77e32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff9c05b3-074e-4557-9a81-95601ede70ef", + "x-ms-client-request-id": "560d814e6c4800cce3d941fad0b77e32", + "x-ms-correlation-request-id": "3969df4d-3c81-4198-8ae8-1445254331d4", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "455502e3-0322-42fb-9e53-b9c0dfc8b011", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062015Z:3969df4d-3c81-4198-8ae8-1445254331d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3052768a07a721345f8d58eb13470b4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e144ae0-fcde-4868-bbed-700bc8e026fa", + "x-ms-client-request-id": "3052768a07a721345f8d58eb13470b4a", + "x-ms-correlation-request-id": "20ddab49-77d8-4fe4-97a9-7fe4e1854a18", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "55ba3e97-6a7a-4533-8e21-aa867cd33e66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062016Z:20ddab49-77d8-4fe4-97a9-7fe4e1854a18" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c72083040dd0a3a319c025cdb9a1e3a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3625a5db-44b3-4896-a9f3-3f8599bc7c46", + "x-ms-client-request-id": "c72083040dd0a3a319c025cdb9a1e3a0", + "x-ms-correlation-request-id": "593c51c3-402d-4811-85d6-aa3ea63305c3", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "ab45f905-5cc7-4dc5-a47f-28585cf71692", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062017Z:593c51c3-402d-4811-85d6-aa3ea63305c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed4768adf39047914decf7ba13e1ed9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12ae98e6-bfa0-4111-a4e2-c7ead75f50b6", + "x-ms-client-request-id": "ed4768adf39047914decf7ba13e1ed9b", + "x-ms-correlation-request-id": "4bc9832c-302f-4e25-ae94-60cca61add87", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "16127f29-fce4-4ace-ad06-016eee861131", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062018Z:4bc9832c-302f-4e25-ae94-60cca61add87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cf5f6ceb7967d62d3af17e7e26668bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d4783c7-69bf-4137-90e6-41dc9f5b7e59", + "x-ms-client-request-id": "4cf5f6ceb7967d62d3af17e7e26668bd", + "x-ms-correlation-request-id": "5da9f756-3fbb-45c4-9ffe-266d3d3fd619", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "e97ff5f9-8e98-4177-945b-d0c667556009", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062020Z:5da9f756-3fbb-45c4-9ffe-266d3d3fd619" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab3eb8aa1d0011baf1d979e416e99037", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15082a9d-3ed8-42ae-bbb6-76e36054a315", + "x-ms-client-request-id": "ab3eb8aa1d0011baf1d979e416e99037", + "x-ms-correlation-request-id": "5bf63c66-717d-4423-a5ca-da753b1cf8ad", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "57585c23-2489-44df-aa3c-137b75780619", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062021Z:5bf63c66-717d-4423-a5ca-da753b1cf8ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2fe89d397abf60906ca1ae0dcaa65e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a2882095-950d-4a6c-abc8-dd8679ac7ed9", + "x-ms-client-request-id": "c2fe89d397abf60906ca1ae0dcaa65e7", + "x-ms-correlation-request-id": "bc65287b-76bf-4246-a53e-78356586dc02", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "3ecca030-46be-4299-8a50-62842bf5309f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062022Z:bc65287b-76bf-4246-a53e-78356586dc02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a10398442a3b19b3ce45abd3d7e66e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd7bfdca-d273-4b22-8f4e-2ad389c235bd", + "x-ms-client-request-id": "5a10398442a3b19b3ce45abd3d7e66e9", + "x-ms-correlation-request-id": "1fc37e53-b5ec-461e-93b7-b5ccc169ccf4", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "3af3e310-eb4c-451a-8cba-9f5deb7fb925", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062023Z:1fc37e53-b5ec-461e-93b7-b5ccc169ccf4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5814df1ea5671211af47a43602d93547", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78ae4c55-732e-468b-9a84-5929e254d5f2", + "x-ms-client-request-id": "5814df1ea5671211af47a43602d93547", + "x-ms-correlation-request-id": "de4b5f27-2fd7-4df5-8aaf-e46ece55c43e", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "b00df526-a805-4649-b9e6-18b8c4310644", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062025Z:de4b5f27-2fd7-4df5-8aaf-e46ece55c43e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc5f927336d99094ee4d86c73c4cb888", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ea92a4e-d67e-40f9-8fb4-67f89503bff2", + "x-ms-client-request-id": "dc5f927336d99094ee4d86c73c4cb888", + "x-ms-correlation-request-id": "728e4795-81cf-4161-9981-818a84138444", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "fba3cc85-8805-4857-8700-28976f4274db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062026Z:728e4795-81cf-4161-9981-818a84138444" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcc231630c95de7f27fdab5b9d64af62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be47c57a-b74e-4966-81c1-c9038aee107c", + "x-ms-client-request-id": "fcc231630c95de7f27fdab5b9d64af62", + "x-ms-correlation-request-id": "140f08c1-932b-4876-9447-f491fb2e2c1b", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "d5495b91-08e0-4077-a301-b73a095d05c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062027Z:140f08c1-932b-4876-9447-f491fb2e2c1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab4912ae8a1ee8104a836a191f4ad662", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6dcb962b-2548-4278-abed-e98362219403", + "x-ms-client-request-id": "ab4912ae8a1ee8104a836a191f4ad662", + "x-ms-correlation-request-id": "4e5e0a34-238f-4fa8-9004-b4d31eada546", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "3788a046-bf03-438b-9994-07394faf2874", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062029Z:4e5e0a34-238f-4fa8-9004-b4d31eada546" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1d31c8f381767b11281b5dc8b39f38a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76589814-ee89-407d-947c-3bd34be32984", + "x-ms-client-request-id": "d1d31c8f381767b11281b5dc8b39f38a", + "x-ms-correlation-request-id": "c80b9e96-3d17-4725-94d8-8e521c8790d3", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "7001039b-ae70-4e07-9335-f3252f9ba2e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062030Z:c80b9e96-3d17-4725-94d8-8e521c8790d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2918239e0d03d86a20d9b112a265bfdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "165802a6-d284-4664-9ce9-5e43119580c2", + "x-ms-client-request-id": "2918239e0d03d86a20d9b112a265bfdd", + "x-ms-correlation-request-id": "84f0c8c0-4970-4375-9809-0e42b36ba524", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "aeed9236-4166-4793-8734-b499d9df1e2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062031Z:84f0c8c0-4970-4375-9809-0e42b36ba524" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80cb4826de90764b61e2989cd5345d10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d23ccae7-e367-4d53-b05b-fd1a3c73b2cb", + "x-ms-client-request-id": "80cb4826de90764b61e2989cd5345d10", + "x-ms-correlation-request-id": "f222489e-5d02-4f99-b185-e4c02c96fda5", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "441d3e1d-d623-482e-979b-a24b1b005e07", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062032Z:f222489e-5d02-4f99-b185-e4c02c96fda5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc7bdf8fac31815fb2fab03e879fc4ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15075c63-66bd-480f-b71a-673b178ab47f", + "x-ms-client-request-id": "fc7bdf8fac31815fb2fab03e879fc4ac", + "x-ms-correlation-request-id": "8cf106b8-713a-48db-ace8-01158869580c", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "224aea75-c5be-4589-8713-58762b8cda4c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062034Z:8cf106b8-713a-48db-ace8-01158869580c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42b5d7c1726ec0f9d7a2c82174cd03ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73024913-8081-47a4-8c05-2c1efccf8517", + "x-ms-client-request-id": "42b5d7c1726ec0f9d7a2c82174cd03ec", + "x-ms-correlation-request-id": "ae9d65f3-ed5d-4671-aa5e-bba2a7c6ec1b", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "f799cbae-f831-41ba-8eb7-a5521497ffb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062035Z:ae9d65f3-ed5d-4671-aa5e-bba2a7c6ec1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c282a07bc2ea7aabe849ce962d0defc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f4d5ff3-2294-4a01-90cf-c27781bc49e5", + "x-ms-client-request-id": "c282a07bc2ea7aabe849ce962d0defc1", + "x-ms-correlation-request-id": "ab0bca05-02b0-4ec2-8853-9ea92b75d984", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "7ed27685-f12c-4c7f-9cce-fa22711cfb84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062036Z:ab0bca05-02b0-4ec2-8853-9ea92b75d984" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fddbeb1d1b7f1da2e6bb248ee33e0de5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6270fbf-064e-4887-9bf8-761f8b4afa9b", + "x-ms-client-request-id": "fddbeb1d1b7f1da2e6bb248ee33e0de5", + "x-ms-correlation-request-id": "9352aa4d-6169-43dc-b71a-88dac556e48f", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "cd5a1a33-f52e-40df-88ed-f45d6f1fcdcf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062038Z:9352aa4d-6169-43dc-b71a-88dac556e48f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6c2c3f6021dfec22b3a5924a46292ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "422e00f2-0bfb-489c-b444-e38ab2238d39", + "x-ms-client-request-id": "e6c2c3f6021dfec22b3a5924a46292ca", + "x-ms-correlation-request-id": "7c2bc81e-98ba-402d-bd3f-3f8b43e6dea8", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "9076ec65-e8ce-4c44-b548-1d89dd1a1ece", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062039Z:7c2bc81e-98ba-402d-bd3f-3f8b43e6dea8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "880306b306f2606dfe65db2e9e1c96aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddfd9594-25b1-418d-b616-013704d916d7", + "x-ms-client-request-id": "880306b306f2606dfe65db2e9e1c96aa", + "x-ms-correlation-request-id": "6d41d28c-be95-4275-98a7-a71b5c3409d5", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "8f159508-0c8d-422c-855f-7cfdeeb8bb5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062040Z:6d41d28c-be95-4275-98a7-a71b5c3409d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a9fe93c084b1ba428dcd144c17e7884", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4214eb48-c1dc-4e08-a4c5-2135086019cf", + "x-ms-client-request-id": "6a9fe93c084b1ba428dcd144c17e7884", + "x-ms-correlation-request-id": "bc312f3c-1483-47b5-aa40-0180c0849f49", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "96d5fb93-4d89-4957-8ec8-d419bbf59feb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062042Z:bc312f3c-1483-47b5-aa40-0180c0849f49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dddb5a28843af0f35561e8b72693600e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a24e8204-12e7-4613-94d3-d021e05638c4", + "x-ms-client-request-id": "dddb5a28843af0f35561e8b72693600e", + "x-ms-correlation-request-id": "5d43fc9d-0009-4630-bd88-80feeb94db42", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "37e12592-fe64-459b-93b5-cf71f7000f08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062043Z:5d43fc9d-0009-4630-bd88-80feeb94db42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbe7aea428c2aa7f62e8601534299f7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b21dd3e9-e850-41b0-b019-ed739745842c", + "x-ms-client-request-id": "bbe7aea428c2aa7f62e8601534299f7f", + "x-ms-correlation-request-id": "1a109d99-bc9a-4c58-972c-f9d0e2bf7ec2", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "a297f7d4-fe81-44e3-94cd-14e95e859543", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062044Z:1a109d99-bc9a-4c58-972c-f9d0e2bf7ec2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "440657ecb941b870f5af14e920ecf595", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b3b2921-0d17-4c9b-9f5b-7a9f79108cfb", + "x-ms-client-request-id": "440657ecb941b870f5af14e920ecf595", + "x-ms-correlation-request-id": "578f705f-94a4-4e5f-8ea3-8ae07a6eab8f", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "bb035020-3aff-4ee7-bd3d-2ee9a5e797e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062046Z:578f705f-94a4-4e5f-8ea3-8ae07a6eab8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12a0c27bbd9700c1db307a5224ddbb2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02f13446-25d1-4920-b6c2-6dbd3d5d214e", + "x-ms-client-request-id": "12a0c27bbd9700c1db307a5224ddbb2c", + "x-ms-correlation-request-id": "d3ee7213-57f4-4ae5-a837-bb2a22ec4505", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "9bf3cf61-6734-4a64-baf4-e2f56995bf1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062047Z:d3ee7213-57f4-4ae5-a837-bb2a22ec4505" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cecb68c21c8deacd3e2ec51313958975", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f82a1ea6-21cb-4b32-ac0f-cd7e1c286838", + "x-ms-client-request-id": "cecb68c21c8deacd3e2ec51313958975", + "x-ms-correlation-request-id": "9515a436-9fa5-4c53-be8a-58f0ac834e7a", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "087a534c-9868-48c6-a214-f73a7c2c08d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062048Z:9515a436-9fa5-4c53-be8a-58f0ac834e7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "719acbf38d882fe7960568113e1d9418", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e048b302-e1ad-4dfd-a481-d84456a8711b", + "x-ms-client-request-id": "719acbf38d882fe7960568113e1d9418", + "x-ms-correlation-request-id": "4763c29d-9019-4525-a07c-d591914cd30d", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "a067089e-3461-4a35-8ca0-3393d3445f35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062050Z:4763c29d-9019-4525-a07c-d591914cd30d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b827e7f326215f07f5b5d369f7adec45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df9c83f3-6367-4bc4-851e-ab07c27f8f18", + "x-ms-client-request-id": "b827e7f326215f07f5b5d369f7adec45", + "x-ms-correlation-request-id": "ac39bd21-ca1f-403a-98e7-bf5093621911", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "42880fd8-b8d7-4b9a-9ee4-ba4b3dcdfedb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062051Z:ac39bd21-ca1f-403a-98e7-bf5093621911" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "595e05a64a4335a3819c3887b3bcac20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77f50ab4-c691-4904-8d47-f397c6c03d9f", + "x-ms-client-request-id": "595e05a64a4335a3819c3887b3bcac20", + "x-ms-correlation-request-id": "c909b91d-175a-4516-96a8-b14a6add1210", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "f2dad399-ddbf-45f3-af0d-2fea928a66b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062052Z:c909b91d-175a-4516-96a8-b14a6add1210" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b20ad99d16ecc54c33b7bd3b97e37e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a7e970a2-bf38-45f3-b217-c4daf296ff7c", + "x-ms-client-request-id": "2b20ad99d16ecc54c33b7bd3b97e37e9", + "x-ms-correlation-request-id": "6383673e-555d-4127-99f7-04515ec0d261", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "d66a8ad9-ab39-4298-9e36-ab6e9a8a585b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062053Z:6383673e-555d-4127-99f7-04515ec0d261" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "396a23193bbfa9d544f23684ee7fab39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77cec527-a71a-4137-b7a1-f166f92cf595", + "x-ms-client-request-id": "396a23193bbfa9d544f23684ee7fab39", + "x-ms-correlation-request-id": "85867c37-f234-4963-b452-3c58503abdce", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "e67bae20-18be-42a5-9520-71fc69ec334d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062055Z:85867c37-f234-4963-b452-3c58503abdce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4acfb209c18dd5d7b1919508ced07b02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0aff347d-5d77-4949-8d6d-3368598d7370", + "x-ms-client-request-id": "4acfb209c18dd5d7b1919508ced07b02", + "x-ms-correlation-request-id": "e3593b54-8573-471c-94b4-017ece43e8a3", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "35b1ec19-c9bb-410e-be22-02ec9590125e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062056Z:e3593b54-8573-471c-94b4-017ece43e8a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "906e4e6572525d61d776e77b9acfde43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ca2c224-0710-4d40-8037-205b172f5f90", + "x-ms-client-request-id": "906e4e6572525d61d776e77b9acfde43", + "x-ms-correlation-request-id": "8f224cf9-89f0-4d3e-8eb9-e3556596fcb2", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "8d7291d4-09a5-47f1-91f4-5b0feee03ea4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062057Z:8f224cf9-89f0-4d3e-8eb9-e3556596fcb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06c9428fecae575b4c94882da6cddb73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3dc3b41d-b0cf-41fa-b0f3-804459c9fad9", + "x-ms-client-request-id": "06c9428fecae575b4c94882da6cddb73", + "x-ms-correlation-request-id": "ac5f48f2-10e7-44d6-8678-15c23227bd7e", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "3fde5c4d-6a51-4653-b256-fe0a62133f5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062059Z:ac5f48f2-10e7-44d6-8678-15c23227bd7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f1f33761b1196e750727216d95b3ae1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:20:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4874927-edee-471e-95f4-a3a0c6279964", + "x-ms-client-request-id": "9f1f33761b1196e750727216d95b3ae1", + "x-ms-correlation-request-id": "dc5ef85b-04ab-4e72-9732-ea2554a85e4d", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "dba2b42b-d16c-4a5a-a720-e14f344ad3e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062100Z:dc5ef85b-04ab-4e72-9732-ea2554a85e4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b7851b374067854f31643bdea34b70a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d06a70a-f4c2-4018-8b6a-3ae5a2f13663", + "x-ms-client-request-id": "8b7851b374067854f31643bdea34b70a", + "x-ms-correlation-request-id": "1feb01ce-243d-4b20-b129-2692b256fd6f", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "2969c2ae-067e-4876-8075-e2552414d2da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062101Z:1feb01ce-243d-4b20-b129-2692b256fd6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6604739b3eaf74325a32b53c7a447df1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db7cb32a-4db6-4df4-9f77-d258768d3fdc", + "x-ms-client-request-id": "6604739b3eaf74325a32b53c7a447df1", + "x-ms-correlation-request-id": "4575677a-1e62-4c65-acd1-abc5823c8c44", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "4ef004d1-6af0-43b9-9de0-8d1a2a499f54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062102Z:4575677a-1e62-4c65-acd1-abc5823c8c44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5479a6594f54016ddfa7acfad72aac1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eff98a43-58d6-4c27-a858-37e5f60e1ef2", + "x-ms-client-request-id": "5479a6594f54016ddfa7acfad72aac1c", + "x-ms-correlation-request-id": "03a68173-a2a6-48cd-97f9-82dd24921a86", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "7a488111-8ed9-4664-99ce-7cfc3d78c5ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062104Z:03a68173-a2a6-48cd-97f9-82dd24921a86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "667b67bbd35674311f0431d4be18feae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4380ae40-5185-472d-bea1-d8cba72dd5cd", + "x-ms-client-request-id": "667b67bbd35674311f0431d4be18feae", + "x-ms-correlation-request-id": "2002a3d9-b438-4526-af04-b338d9c7a88b", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "a6f88da8-ff90-42dc-b38c-31eb1ac585e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062105Z:2002a3d9-b438-4526-af04-b338d9c7a88b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4463529962bb4bb50602870892379c30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "990d6a21-2f89-433b-bcd7-5ced98cf58ff", + "x-ms-client-request-id": "4463529962bb4bb50602870892379c30", + "x-ms-correlation-request-id": "e326a50b-e85f-47d8-9481-0b293c23dfbf", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "15b338db-5bd5-4529-b541-1047ad48e6a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062106Z:e326a50b-e85f-47d8-9481-0b293c23dfbf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1280998617c9869a740434501e9943c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "322df344-9d8c-4934-8a25-39b1e4490526", + "x-ms-client-request-id": "1280998617c9869a740434501e9943c6", + "x-ms-correlation-request-id": "72113456-117f-4543-87e7-2e64c8fab735", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "2696e63e-fc9f-43df-a504-a2c123744961", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062108Z:72113456-117f-4543-87e7-2e64c8fab735" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8561fea868c65861b1305f534c29e2e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2326aa5-10cc-4b2a-9ea8-2af6b693882c", + "x-ms-client-request-id": "8561fea868c65861b1305f534c29e2e7", + "x-ms-correlation-request-id": "bf6f1087-5823-4d72-8176-d0112859e5f5", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "86d9e2b9-41e3-4965-a8bf-bbe1b2150ab7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062109Z:bf6f1087-5823-4d72-8176-d0112859e5f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "254d0067ec9781e5b7ddcfb62e652d6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8169d27e-8824-4865-981d-4c7bdb4ae520", + "x-ms-client-request-id": "254d0067ec9781e5b7ddcfb62e652d6d", + "x-ms-correlation-request-id": "756203bf-a41e-4c23-914c-1597c04bad5e", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "64838303-befb-4900-bef5-2b6286d8c298", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062110Z:756203bf-a41e-4c23-914c-1597c04bad5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "945fc0bf16d61e6938286099b747394b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad670c8c-7f35-4927-9fa2-49436ccd8548", + "x-ms-client-request-id": "945fc0bf16d61e6938286099b747394b", + "x-ms-correlation-request-id": "a0c88580-4cbf-4e46-a204-afc90818dbff", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "8fbeea44-1957-49c0-af3c-def2c7469591", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062111Z:a0c88580-4cbf-4e46-a204-afc90818dbff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1de84d221d4bbc2e19dfcee998ab2a4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95d9e86f-e272-428c-bee7-984fe2dc0812", + "x-ms-client-request-id": "1de84d221d4bbc2e19dfcee998ab2a4c", + "x-ms-correlation-request-id": "cb47051c-fcea-4de2-8d6c-a8482bdbb70e", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "a49d7060-4f80-43fb-a637-6b2c70522165", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062113Z:cb47051c-fcea-4de2-8d6c-a8482bdbb70e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b93f2024ec95110972fec6e8b4cca6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "449ad8f5-abb5-4270-b4e1-b40e45ffa01c", + "x-ms-client-request-id": "8b93f2024ec95110972fec6e8b4cca6f", + "x-ms-correlation-request-id": "ddfdda46-f03a-41a3-81c2-3f356ffa40b5", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "05b24ac2-2f60-48d2-878e-65dde35bfb7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062114Z:ddfdda46-f03a-41a3-81c2-3f356ffa40b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e19383a30f7ca22192a37bf74880858d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2b6d5d7-423b-4a7d-8c60-4e4e67704501", + "x-ms-client-request-id": "e19383a30f7ca22192a37bf74880858d", + "x-ms-correlation-request-id": "7ca84b2b-48a5-4f51-90c7-038d4e36b889", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "4d771966-23c7-4f7f-b931-9ee8a7b497e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062115Z:7ca84b2b-48a5-4f51-90c7-038d4e36b889" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c49614feaeb4d4823c97861c30bf31cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e56bc51e-a948-4215-a21e-7209b1d0288a", + "x-ms-client-request-id": "c49614feaeb4d4823c97861c30bf31cd", + "x-ms-correlation-request-id": "0a0b37a2-1621-458b-ab9c-17956a7e887b", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "ac829b59-ae25-4621-96aa-2ff2b2669276", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062117Z:0a0b37a2-1621-458b-ab9c-17956a7e887b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15455e144817f3cfd0f1f925d3190816", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7cf02a0e-8ab5-4af1-8160-a09a20112f60", + "x-ms-client-request-id": "15455e144817f3cfd0f1f925d3190816", + "x-ms-correlation-request-id": "df197d76-a105-4b6d-a79a-6f8638d0013d", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "7bc2200a-bd44-4763-a1e6-3187f5e2706c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062118Z:df197d76-a105-4b6d-a79a-6f8638d0013d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77705fa905b5f5bb01bea5e4890571d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f22a8ba6-7cc3-4544-a523-4e7a18a211c4", + "x-ms-client-request-id": "77705fa905b5f5bb01bea5e4890571d2", + "x-ms-correlation-request-id": "6dde72be-4803-4d8c-af27-21bc48932ca8", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "a6dee8c2-f4cd-42a0-a271-ea831e34ea96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062119Z:6dde72be-4803-4d8c-af27-21bc48932ca8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eae2ad72703ab57544a2f4c3b55c0122", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29bbdd6c-37cf-41b3-9abf-853f7c4fc8bc", + "x-ms-client-request-id": "eae2ad72703ab57544a2f4c3b55c0122", + "x-ms-correlation-request-id": "1c74b1e9-de25-41d5-9301-6c9d39925739", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "a9cf4e0a-0b43-43e1-a837-108b3a454534", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062121Z:1c74b1e9-de25-41d5-9301-6c9d39925739" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1726f8fb94f0e17a2501358a3ea69ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fdf51fd-5439-464f-9863-e971511ce575", + "x-ms-client-request-id": "d1726f8fb94f0e17a2501358a3ea69ca", + "x-ms-correlation-request-id": "3dad81ab-af58-4f7a-a42e-b150e8c5ba8e", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "e7ab4427-39ec-480b-85e5-57c26078015d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062122Z:3dad81ab-af58-4f7a-a42e-b150e8c5ba8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25b3277f1e3639dce9ba331211f83fa4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc925249-862e-4977-be14-236351705ed0", + "x-ms-client-request-id": "25b3277f1e3639dce9ba331211f83fa4", + "x-ms-correlation-request-id": "0922e8e7-e18d-4e87-b05e-e96a14e33841", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "22ae7af3-f72e-4266-ab2d-f27c1b93be57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062123Z:0922e8e7-e18d-4e87-b05e-e96a14e33841" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "195582bda093b88296d447e95c1c1259", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c965dea9-1539-4923-9241-6c0a9a1c6a46", + "x-ms-client-request-id": "195582bda093b88296d447e95c1c1259", + "x-ms-correlation-request-id": "39871292-cf6b-406d-8c15-48e12176d02b", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "4cb6baef-6f06-46c3-a94d-d2827db21ca7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062124Z:39871292-cf6b-406d-8c15-48e12176d02b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e432939dca970eb9338e7958504fdaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af03d04b-77ef-4df6-b8f7-fb3e3065afd3", + "x-ms-client-request-id": "8e432939dca970eb9338e7958504fdaa", + "x-ms-correlation-request-id": "1e86d54f-76f7-4208-ac4a-872226753bf7", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "4d26d049-9e94-4a6c-8001-6df78492eda1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062126Z:1e86d54f-76f7-4208-ac4a-872226753bf7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "219b6e105094df37a4fa8e62d6f2ddcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "571c172d-d289-48d5-aed8-4d76479bca5b", + "x-ms-client-request-id": "219b6e105094df37a4fa8e62d6f2ddcc", + "x-ms-correlation-request-id": "287dd8bc-e97f-46c7-abde-b06920dc5517", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "326186b5-f158-4b09-946a-6366cc6ea432", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062127Z:287dd8bc-e97f-46c7-abde-b06920dc5517" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8d9daa8b1b4e0fb96e5865ab8ed3392", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "acf53b52-5884-4390-8757-e9e727e0ecef", + "x-ms-client-request-id": "e8d9daa8b1b4e0fb96e5865ab8ed3392", + "x-ms-correlation-request-id": "8ffbc972-4065-41c4-a2da-d7ffa3030171", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "189f76c1-01b3-47f1-9d22-c578a82e1c2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062128Z:8ffbc972-4065-41c4-a2da-d7ffa3030171" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edd99dd6f081e8c4f164e9ae4e899aa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "906c117b-8c3b-4f71-9a9f-1cd2780e895d", + "x-ms-client-request-id": "edd99dd6f081e8c4f164e9ae4e899aa0", + "x-ms-correlation-request-id": "6634e652-67fe-43e6-99d4-af3cc93b14db", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "a9817633-d9bf-4f70-9ec5-e565df8ca7e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062130Z:6634e652-67fe-43e6-99d4-af3cc93b14db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abed1a5b142a5ef573bb8aafc9dd26b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3be1d8a1-63bb-4cbb-aac0-9a4d80ebdad7", + "x-ms-client-request-id": "abed1a5b142a5ef573bb8aafc9dd26b7", + "x-ms-correlation-request-id": "d5985026-2e1f-422c-82f8-000247db6b24", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "79f7f969-3377-4817-a018-21c5b4947207", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062131Z:d5985026-2e1f-422c-82f8-000247db6b24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "388bfbc7ef19b74b16f1f650c84d920d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d701eb6c-fd6e-4e25-81a1-089ff67d38ff", + "x-ms-client-request-id": "388bfbc7ef19b74b16f1f650c84d920d", + "x-ms-correlation-request-id": "6fb1db17-667f-42d7-8f77-2df49d0524bf", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "4cf1039a-907d-4296-b9b5-18c7127fdb6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062132Z:6fb1db17-667f-42d7-8f77-2df49d0524bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9efee54a87ffc168a87a7ac666141f14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9eebd76-8f3e-4695-813d-0900d04f5df6", + "x-ms-client-request-id": "9efee54a87ffc168a87a7ac666141f14", + "x-ms-correlation-request-id": "57043ca4-3168-42e2-845d-c87885d9a338", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "4e579a4e-aea8-4523-8ab9-594a8605ac88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062133Z:57043ca4-3168-42e2-845d-c87885d9a338" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52e7313d61fd6c87ce3595391ea49626", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e287c586-27ba-4868-adf4-c54374956239", + "x-ms-client-request-id": "52e7313d61fd6c87ce3595391ea49626", + "x-ms-correlation-request-id": "8dfb6f8f-299a-4a3e-ae35-6c36790d7c8a", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "20d2719c-76fb-4bbf-b76a-cb8ddbb5cbd7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062135Z:8dfb6f8f-299a-4a3e-ae35-6c36790d7c8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3647c2888de3fb793c9909e75855101", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c17e2f1-41a4-4227-acb2-17fdf5f475b0", + "x-ms-client-request-id": "e3647c2888de3fb793c9909e75855101", + "x-ms-correlation-request-id": "303558f5-0255-4b9a-bf2d-311ab528335f", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "c2103d7c-a31e-4e72-892b-a28d93ae4166", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062136Z:303558f5-0255-4b9a-bf2d-311ab528335f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9613e1d13f66e9105d92cfcaf22fa303", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b77cec39-deca-4550-8ca7-8c9b2fbd54f3", + "x-ms-client-request-id": "9613e1d13f66e9105d92cfcaf22fa303", + "x-ms-correlation-request-id": "44d12235-b133-4856-85c5-2b275d661754", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "a6741de5-bfb4-428f-900e-5bab949fd951", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062137Z:44d12235-b133-4856-85c5-2b275d661754" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e99d54e43bafb43679a7bf33d1e9f748", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83dd9b69-e9ce-4713-84f5-75cdcc77cb83", + "x-ms-client-request-id": "e99d54e43bafb43679a7bf33d1e9f748", + "x-ms-correlation-request-id": "40adb8e0-397d-49e9-887b-355d0700b517", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "f589e7f9-c150-41d3-8215-95a1dd33adc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062139Z:40adb8e0-397d-49e9-887b-355d0700b517" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d6793e4ff90e9c06c7b864cb9ed4d64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b3e5225-ebcf-440b-a175-dac846519a25", + "x-ms-client-request-id": "3d6793e4ff90e9c06c7b864cb9ed4d64", + "x-ms-correlation-request-id": "8f336549-8a24-478d-95d3-71a6791ba67a", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "85cd530a-f247-4736-82b9-a1e0b421144d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062140Z:8f336549-8a24-478d-95d3-71a6791ba67a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21ba8c2667e89652aa5e1cbe80dd1874", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38c2ed37-8ba9-499a-b350-82a1e9e8c7e5", + "x-ms-client-request-id": "21ba8c2667e89652aa5e1cbe80dd1874", + "x-ms-correlation-request-id": "338684bb-fa85-4169-bd72-b7310cb56a39", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "5ce3d5c8-663c-4682-8cc7-f76bfb0b15a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062141Z:338684bb-fa85-4169-bd72-b7310cb56a39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ee6869b65c7e47393b37d33b5eafb8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "719c9cd1-b310-41db-808f-a962f79f044a", + "x-ms-client-request-id": "5ee6869b65c7e47393b37d33b5eafb8c", + "x-ms-correlation-request-id": "630c47d4-9516-490b-83bb-c256aaea8ddf", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "50843172-0ae1-404b-b33e-4c2fb6e7f4c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062143Z:630c47d4-9516-490b-83bb-c256aaea8ddf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "440c5b59d62f7d6041d09232e201698f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b0259ee-a070-4479-883a-98bb28e566b4", + "x-ms-client-request-id": "440c5b59d62f7d6041d09232e201698f", + "x-ms-correlation-request-id": "d4a781d5-8604-4e4b-83c4-b37876c636ab", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "46ac1f5a-6bba-4714-9745-550464fc20c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062144Z:d4a781d5-8604-4e4b-83c4-b37876c636ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32b01163ef07c09c19d58d34e91ee1c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "147a2210-e935-40a7-9091-25a8a738f5aa", + "x-ms-client-request-id": "32b01163ef07c09c19d58d34e91ee1c0", + "x-ms-correlation-request-id": "0a000689-5e5c-41ef-a24e-e10edc7baffc", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "3cb64cfb-4fdd-4f18-847e-5cfa9ac00a6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062145Z:0a000689-5e5c-41ef-a24e-e10edc7baffc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24659063d3d0c54526691df6d3400292", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f49842b-c5be-4481-9e81-bed34004433e", + "x-ms-client-request-id": "24659063d3d0c54526691df6d3400292", + "x-ms-correlation-request-id": "42ba7037-3a64-4f11-a4f0-8e3dad196804", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "25adc448-719d-47a1-a43e-9933bfa11efc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062146Z:42ba7037-3a64-4f11-a4f0-8e3dad196804" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3d0ee4ac8396a85be4b2b5a482b9323", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f350ab6-cdb5-4f36-9974-549719002edb", + "x-ms-client-request-id": "a3d0ee4ac8396a85be4b2b5a482b9323", + "x-ms-correlation-request-id": "24b75dbd-7766-4395-8e18-6519b653f067", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "68b3a53f-cadf-4785-947c-80038b4c2fc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062148Z:24b75dbd-7766-4395-8e18-6519b653f067" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52ced1ef449b8fbecceb0c9ed2a6edd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8ff203e-acb1-4764-8b30-488ca0d6cd1d", + "x-ms-client-request-id": "52ced1ef449b8fbecceb0c9ed2a6edd8", + "x-ms-correlation-request-id": "4e19da1c-a698-41f8-83a2-2e585999cab4", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "07a42baf-eb3a-4bbe-9b3c-2d7d89f8db6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062149Z:4e19da1c-a698-41f8-83a2-2e585999cab4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fbeafad23d4d9b860afb6684a8ea7cfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1cdc6f24-6506-4a69-a3ae-8e38ef8920c5", + "x-ms-client-request-id": "fbeafad23d4d9b860afb6684a8ea7cfa", + "x-ms-correlation-request-id": "92b053bc-f6cf-4405-8a08-8180aaaac494", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "9fb90872-383e-40d7-a242-f3a428996bb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062150Z:92b053bc-f6cf-4405-8a08-8180aaaac494" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0107fad5af7206f72f41d64dbbe79718", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bdcfc85b-6b78-40e8-8101-b6f783feb4ea", + "x-ms-client-request-id": "0107fad5af7206f72f41d64dbbe79718", + "x-ms-correlation-request-id": "8212019d-7bfb-432c-8f42-1fe4b9a4f7b0", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "f34c4647-08b7-4e52-b48e-781bf760998e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062152Z:8212019d-7bfb-432c-8f42-1fe4b9a4f7b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e87525e9741b1d54b33489fdd39e6e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d777b8b-7427-4ad9-864c-e76b86013f33", + "x-ms-client-request-id": "4e87525e9741b1d54b33489fdd39e6e1", + "x-ms-correlation-request-id": "beb18d5a-a530-41fa-8e07-df12271f91bf", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "e80b338b-a437-4dbb-a909-f936bc0ab5fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062153Z:beb18d5a-a530-41fa-8e07-df12271f91bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7c8126feb9e236603e3cb0c6738df22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "749c4db2-5223-4623-9abf-c607f5a5d80a", + "x-ms-client-request-id": "d7c8126feb9e236603e3cb0c6738df22", + "x-ms-correlation-request-id": "5b66dbf4-1183-4356-ba1b-2a444a5d0384", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "0e97066e-bd51-4f27-8585-7a0c6ed99033", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062154Z:5b66dbf4-1183-4356-ba1b-2a444a5d0384" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55264e632e633eb92455b63e675728f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "611360b3-3ec1-4b2d-81c7-9fe54d4811d3", + "x-ms-client-request-id": "55264e632e633eb92455b63e675728f6", + "x-ms-correlation-request-id": "2fff1fed-f741-4fca-b968-877dba05906d", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "884cd88c-5ece-4257-9d78-311aae579106", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062156Z:2fff1fed-f741-4fca-b968-877dba05906d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9def55abf1f7279ec634b5dccc94a12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d74e9ff-01de-464f-a7c5-167ad44f4348", + "x-ms-client-request-id": "a9def55abf1f7279ec634b5dccc94a12", + "x-ms-correlation-request-id": "003086ce-38ba-48a4-9672-d7e29abb7db1", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "cd024abe-a929-4b75-b6ef-43ecf60f0c6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062157Z:003086ce-38ba-48a4-9672-d7e29abb7db1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f3b25549112417d598ab3493527bbab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "217a1922-f3a8-468d-9a11-3e0dabec366e", + "x-ms-client-request-id": "8f3b25549112417d598ab3493527bbab", + "x-ms-correlation-request-id": "104cee77-8e7c-49aa-8a6c-df996f847ada", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "f5fb9d31-175f-49e3-8c88-74edaad3fbd5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062158Z:104cee77-8e7c-49aa-8a6c-df996f847ada" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71b1d5bb365aa303d4b469ffe25b725b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:21:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60cef195-9c41-4c79-8e57-86e9824a8ea3", + "x-ms-client-request-id": "71b1d5bb365aa303d4b469ffe25b725b", + "x-ms-correlation-request-id": "7da923ba-f344-4c83-ae64-743db26780ad", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "492ae47b-80eb-4221-bbb9-f33286e0ff78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062159Z:7da923ba-f344-4c83-ae64-743db26780ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42eaa40a981bc9e3779d50950c2f3dc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c851932d-7367-42e0-b6df-bb2949c11180", + "x-ms-client-request-id": "42eaa40a981bc9e3779d50950c2f3dc5", + "x-ms-correlation-request-id": "05818904-ba9e-4709-ae19-27808350a899", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "23ef3dd8-51c1-4bff-a5ba-3d463ad31a07", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062201Z:05818904-ba9e-4709-ae19-27808350a899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6a19fa8d8171eb72198ba5e277d5efd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2dca5922-ae65-4c97-828d-517e5e71915d", + "x-ms-client-request-id": "f6a19fa8d8171eb72198ba5e277d5efd", + "x-ms-correlation-request-id": "d62766d9-010f-4067-8989-c2f288c7ce62", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "2dc6ef10-e3c8-474e-9259-81ac59a57145", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062202Z:d62766d9-010f-4067-8989-c2f288c7ce62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "903e5718793c2290f2e8fabde56e97a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf4a6cb8-f78f-4987-bc33-ba1b7db4834f", + "x-ms-client-request-id": "903e5718793c2290f2e8fabde56e97a4", + "x-ms-correlation-request-id": "9cd4592c-27f9-44ee-8b30-dda681afa5d6", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "25cb7322-03db-411b-8041-769e3a631765", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062203Z:9cd4592c-27f9-44ee-8b30-dda681afa5d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4357a4767bb93244eccc2083dd84a1f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8131a4c9-0e1d-41da-a868-da03e9fe7435", + "x-ms-client-request-id": "4357a4767bb93244eccc2083dd84a1f9", + "x-ms-correlation-request-id": "cae234f0-58a3-4b1a-9db6-1ffc93bdcc37", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "c5121fd4-a11f-4231-88a1-98b83886e88a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062205Z:cae234f0-58a3-4b1a-9db6-1ffc93bdcc37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b47c523eacf12e880f7f042edefa38b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f62c8c5c-3790-46e5-a8d5-f1a4b11e1e1a", + "x-ms-client-request-id": "b47c523eacf12e880f7f042edefa38b3", + "x-ms-correlation-request-id": "1c73ea7e-6461-474d-9a93-c0f4219735f9", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "8c31dcea-8af9-40b4-afab-21827ab437cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062206Z:1c73ea7e-6461-474d-9a93-c0f4219735f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83e816001b269c43130ca46f580c446d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9e3347e-a527-47e7-b3f6-655e5f798de8", + "x-ms-client-request-id": "83e816001b269c43130ca46f580c446d", + "x-ms-correlation-request-id": "5936df0f-3e28-4148-8e0f-9d9159e95409", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "6c426bff-749d-4d3a-bd92-0a220b19b694", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062207Z:5936df0f-3e28-4148-8e0f-9d9159e95409" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "937e0047e2f1cab31b28343a771553f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "953fd99f-ee64-42e0-b5a1-505d8d141ebc", + "x-ms-client-request-id": "937e0047e2f1cab31b28343a771553f1", + "x-ms-correlation-request-id": "04ddc66d-ddd3-49e7-908b-814fd14e49f4", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "689219e3-f959-4071-8472-e985e51e34f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062209Z:04ddc66d-ddd3-49e7-908b-814fd14e49f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7826d941e9c23d30edfa0e50718d602", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23c5056d-2e4f-4ceb-919b-b01c3e2d81d2", + "x-ms-client-request-id": "c7826d941e9c23d30edfa0e50718d602", + "x-ms-correlation-request-id": "15cd073c-aeec-4cdf-ac84-442b95b6d897", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "edc11b9d-f3c0-4359-a38b-0658d98e618f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062210Z:15cd073c-aeec-4cdf-ac84-442b95b6d897" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dde7963aa47c1ec1621d67fde60925fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84950c39-aef4-448c-9832-1ba46cd14be1", + "x-ms-client-request-id": "dde7963aa47c1ec1621d67fde60925fe", + "x-ms-correlation-request-id": "3930bdd0-cdff-461c-8419-2edce2cb0832", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "55842d6e-b607-40ab-99f3-8dc30969ed62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062211Z:3930bdd0-cdff-461c-8419-2edce2cb0832" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebdbb3b87d8a29d12d5a841141cec202", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd84cd48-e062-46b1-8027-b39dfb3049a3", + "x-ms-client-request-id": "ebdbb3b87d8a29d12d5a841141cec202", + "x-ms-correlation-request-id": "81117e9a-902c-4caa-ba8a-4eeaa459c73f", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "3320b2a6-49d2-47d9-9bf7-eb72f0f936c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062213Z:81117e9a-902c-4caa-ba8a-4eeaa459c73f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0003152762eef75ac63657eb6d53c05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59b689d7-14f9-4c00-bf35-326e248aa150", + "x-ms-client-request-id": "e0003152762eef75ac63657eb6d53c05", + "x-ms-correlation-request-id": "53dcb20e-1aad-421c-8940-ed02b615c0d0", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "5a235964-603b-40f7-8053-eea84889765e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062214Z:53dcb20e-1aad-421c-8940-ed02b615c0d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "542ca2baea3dbc78c5beaf2120afdd94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cedfda8b-76e8-494c-ab45-76079c90403c", + "x-ms-client-request-id": "542ca2baea3dbc78c5beaf2120afdd94", + "x-ms-correlation-request-id": "54088ace-485b-4591-be30-7e8dd3cf1ae3", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "a88e07c8-627c-46e4-8a2c-f85131f3feed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062215Z:54088ace-485b-4591-be30-7e8dd3cf1ae3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5ab645b450842cf3deb3f2618527258", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a81545b-3fdf-4dfe-afd7-510c9b39c3d2", + "x-ms-client-request-id": "b5ab645b450842cf3deb3f2618527258", + "x-ms-correlation-request-id": "4056ef39-2d1b-464a-b289-59770e816223", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "e53ed260-fb93-4293-8e09-2719728e1a6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062216Z:4056ef39-2d1b-464a-b289-59770e816223" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e577f1e6da167c5b8431a70c653cffc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8142e7c-ed85-4084-a46b-c17475450451", + "x-ms-client-request-id": "9e577f1e6da167c5b8431a70c653cffc", + "x-ms-correlation-request-id": "48566d16-0892-40b1-a746-43e866311b10", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "ab5c4ee9-86de-4454-ab64-6122ffdd86df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062218Z:48566d16-0892-40b1-a746-43e866311b10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5122d086872a74fcd3e91751ab52a473", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ea7d5f3-9154-4079-b755-628113f661db", + "x-ms-client-request-id": "5122d086872a74fcd3e91751ab52a473", + "x-ms-correlation-request-id": "4c673784-b147-445c-876f-3cf1a8d0bbf0", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "e9a8a04e-bf01-4dff-ad15-d77c17a7dfb6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062219Z:4c673784-b147-445c-876f-3cf1a8d0bbf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a003574b3e57eef39f43fcc42b5f7cea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e4de32c-d1ee-403a-8df2-1a719e91146f", + "x-ms-client-request-id": "a003574b3e57eef39f43fcc42b5f7cea", + "x-ms-correlation-request-id": "25a539ff-3c51-4114-b324-81802cc8eadc", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "2be5063b-e196-4502-9297-06031a92afa0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062220Z:25a539ff-3c51-4114-b324-81802cc8eadc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "479f421c212f962e82e2cbb75673bb66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "366077f9-82c8-4451-9e7c-a0ee4d3ed139", + "x-ms-client-request-id": "479f421c212f962e82e2cbb75673bb66", + "x-ms-correlation-request-id": "3f2510d0-3680-4a81-ba3e-1300a9872fdc", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "2e721b56-b1ae-49bf-9148-f1dee238293c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062222Z:3f2510d0-3680-4a81-ba3e-1300a9872fdc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f25a79f2e5048a4dd34b2e78a384973", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f12b4bc-e803-450e-a454-a591fc261fe3", + "x-ms-client-request-id": "6f25a79f2e5048a4dd34b2e78a384973", + "x-ms-correlation-request-id": "e0c6ea1e-732c-4892-8cf0-a45ccb1e9b94", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "1f85b753-139e-4886-97c5-2f0234ed8a62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062223Z:e0c6ea1e-732c-4892-8cf0-a45ccb1e9b94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69352c6d5cb22943296c1e75733b982b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9248f028-cc1e-4496-be83-7c2c496fd2f5", + "x-ms-client-request-id": "69352c6d5cb22943296c1e75733b982b", + "x-ms-correlation-request-id": "7b4352f1-b05d-4bb2-8def-c6b164de913d", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "12d0dc38-9352-4a9b-b38e-b097c7b1bdc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062224Z:7b4352f1-b05d-4bb2-8def-c6b164de913d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "842596870d3aed999d576afb6f470c4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a85d9b31-6a19-4e83-9c76-e85d048e59d2", + "x-ms-client-request-id": "842596870d3aed999d576afb6f470c4a", + "x-ms-correlation-request-id": "090b683a-7428-42ce-a152-a36da7c823e7", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "de40b902-cb37-40c2-b79b-8bbdbcf075ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062226Z:090b683a-7428-42ce-a152-a36da7c823e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "294a5799523e42b363fb45e4102fd4a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "477b95a1-c998-49f2-b794-d1a048405a93", + "x-ms-client-request-id": "294a5799523e42b363fb45e4102fd4a2", + "x-ms-correlation-request-id": "76eeab73-0c7b-4b93-8744-19f494b57a16", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "114f931b-9d61-4b66-a699-1747c7800c9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062227Z:76eeab73-0c7b-4b93-8744-19f494b57a16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f45f869bc51260399348cb5bf247bae2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e91a957-1e15-4c13-8333-9a1bf078e8ad", + "x-ms-client-request-id": "f45f869bc51260399348cb5bf247bae2", + "x-ms-correlation-request-id": "bb9ff266-a7db-40eb-b59c-a4801de1889f", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "d7f1a329-a928-464c-839b-fdf1e29977f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062228Z:bb9ff266-a7db-40eb-b59c-a4801de1889f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bdbd45f6ff134ede2e3203ec7b5dc6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "358e9b4c-b926-4eb5-9032-7a38e2d3c52b", + "x-ms-client-request-id": "1bdbd45f6ff134ede2e3203ec7b5dc6d", + "x-ms-correlation-request-id": "b2259b31-492d-4fe0-abbe-6bbc770d3207", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "39277828-a6d7-471e-8cc9-9d66112e82c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062229Z:b2259b31-492d-4fe0-abbe-6bbc770d3207" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e860c88218e7d4371de995f586574f1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66030407-df47-4bd5-af52-a1e76015d780", + "x-ms-client-request-id": "e860c88218e7d4371de995f586574f1b", + "x-ms-correlation-request-id": "67e8acae-cba0-480e-9881-e5d9b6cc4d16", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "556981b8-0788-4cf1-a78b-b2ee3dae1d3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062231Z:67e8acae-cba0-480e-9881-e5d9b6cc4d16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b846341b9542cb0992a112fa4fb98dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2ca7b6e-d462-4a97-9de8-27699321f024", + "x-ms-client-request-id": "3b846341b9542cb0992a112fa4fb98dd", + "x-ms-correlation-request-id": "5480dc78-d905-4445-828c-4b76c592c27d", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "4d2255cc-41a8-4986-92fe-69b0be543ace", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062232Z:5480dc78-d905-4445-828c-4b76c592c27d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ad95d6bd1e747fa9d07fe07d9f7ae8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "750a97ee-1e58-44d5-b423-bd38b1ec4e5b", + "x-ms-client-request-id": "2ad95d6bd1e747fa9d07fe07d9f7ae8a", + "x-ms-correlation-request-id": "6aec2399-0021-499d-8c49-998d9cbaec32", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "2bf5cff4-dfc5-4a89-be46-dbfe5163fa7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062233Z:6aec2399-0021-499d-8c49-998d9cbaec32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63fc0593a131c91917334fbc06082f21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eafb30a8-0226-44b1-b66e-17a640bcab72", + "x-ms-client-request-id": "63fc0593a131c91917334fbc06082f21", + "x-ms-correlation-request-id": "26d122e5-5d5d-4d74-aa93-d761d7b93441", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "c073a6e9-8ffc-4c5a-8a6f-be6e54500212", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062235Z:26d122e5-5d5d-4d74-aa93-d761d7b93441" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "288ab851257e7033683c9e4cbaa953a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87452fff-d647-4c63-9996-a1a4087c278b", + "x-ms-client-request-id": "288ab851257e7033683c9e4cbaa953a1", + "x-ms-correlation-request-id": "291b2c5f-2f04-4435-96e6-f257da725ba7", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "e76cebd0-f9c2-451a-a59a-6fb89ad33021", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062236Z:291b2c5f-2f04-4435-96e6-f257da725ba7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f9b877c34fecaac441012b4813e4194", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f03f4983-1a3e-4634-b145-1063925588fa", + "x-ms-client-request-id": "9f9b877c34fecaac441012b4813e4194", + "x-ms-correlation-request-id": "5cfaaf7e-bf50-4c72-803e-05113892a0df", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "4a750756-0e09-421e-95f2-f4f4cdbc5d79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062237Z:5cfaaf7e-bf50-4c72-803e-05113892a0df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21b6dcd7856d6e0cd18cfbf502cd0e6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "590c1a6b-fa6d-490e-a1d9-2c43767d0035", + "x-ms-client-request-id": "21b6dcd7856d6e0cd18cfbf502cd0e6d", + "x-ms-correlation-request-id": "046ec8a0-b6fb-42ef-80c9-84ab35764dc3", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "03a19baf-af02-438e-a6c5-ad6e13e85ff5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062239Z:046ec8a0-b6fb-42ef-80c9-84ab35764dc3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f40ade0906c1c230cc0e46e127fee2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a39fdf1b-d80d-417a-b354-8accba098332", + "x-ms-client-request-id": "7f40ade0906c1c230cc0e46e127fee2a", + "x-ms-correlation-request-id": "3e79a96e-19c7-4661-9757-cde024b195f5", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "cdad3d00-2dbc-4f6d-abac-3402091ab08b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062240Z:3e79a96e-19c7-4661-9757-cde024b195f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de7409fa31f3f6347a2cce7139b6c776", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b134a59b-858d-47b5-b975-f4bdae32e9e9", + "x-ms-client-request-id": "de7409fa31f3f6347a2cce7139b6c776", + "x-ms-correlation-request-id": "e791b164-d5d2-48e1-9b3a-120e34b5a011", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "48c8c975-741d-414a-a8b1-8f8486f64323", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062241Z:e791b164-d5d2-48e1-9b3a-120e34b5a011" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4d3a501c2fe4727b99a14ada19e5c51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4172c3c3-49d3-4198-a41f-7c26b29c6f5c", + "x-ms-client-request-id": "d4d3a501c2fe4727b99a14ada19e5c51", + "x-ms-correlation-request-id": "8e63088a-7dfa-44d1-adc8-6a55f3490765", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "dc35a238-6185-4e4b-8d23-d3e62d2c29b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062243Z:8e63088a-7dfa-44d1-adc8-6a55f3490765" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8fad09e3058ae7979490440c2b1e255", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43d0a93e-2d3e-4e12-861f-a773858bede4", + "x-ms-client-request-id": "f8fad09e3058ae7979490440c2b1e255", + "x-ms-correlation-request-id": "3d77da69-ad32-4f37-bdd0-968271ccd5f2", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "bc126dd8-f277-477a-81ad-f2ab375e65f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062244Z:3d77da69-ad32-4f37-bdd0-968271ccd5f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d6c6df819ac382ce12d24591d8755dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54603db0-171f-49a7-9299-eebe0f3a6f0e", + "x-ms-client-request-id": "6d6c6df819ac382ce12d24591d8755dc", + "x-ms-correlation-request-id": "8271fb46-f2ad-4e4f-944c-5db0f0c45c0d", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "005f611c-5ffd-4574-9a2b-abb494ac5c37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062245Z:8271fb46-f2ad-4e4f-944c-5db0f0c45c0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69d37cd0cfbbd11e2b245bb5bde78507", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "786c1c52-ee3c-4284-8d88-7b95d0f3bb11", + "x-ms-client-request-id": "69d37cd0cfbbd11e2b245bb5bde78507", + "x-ms-correlation-request-id": "894b4d98-4f86-4b2f-a232-ef6fb2994148", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "e27c9e1f-7a2b-4123-a12e-bf5d910385f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062247Z:894b4d98-4f86-4b2f-a232-ef6fb2994148" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33b5bfb7ee3184a4a4c2162b0b2091f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5737cfec-d11d-4de7-809f-a901789ef650", + "x-ms-client-request-id": "33b5bfb7ee3184a4a4c2162b0b2091f2", + "x-ms-correlation-request-id": "0cb8d547-ecf4-4b97-9675-bcc50b0defe9", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "e38d65b1-f695-4c04-b3eb-6178773994c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062249Z:0cb8d547-ecf4-4b97-9675-bcc50b0defe9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "456f27f379de29994f9b4187be777bfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da42d98d-eb8e-47b3-9167-6ce029350466", + "x-ms-client-request-id": "456f27f379de29994f9b4187be777bfa", + "x-ms-correlation-request-id": "7675740b-29a7-4e82-87cf-252b7b18b0d4", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "1cf58124-e802-4ba4-96ae-10733483e7e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062251Z:7675740b-29a7-4e82-87cf-252b7b18b0d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5da11da822d2e1abd74ec5f9b8f3c50b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26296cb8-f207-410c-8cb0-4921ddac7dc9", + "x-ms-client-request-id": "5da11da822d2e1abd74ec5f9b8f3c50b", + "x-ms-correlation-request-id": "b828bdfe-040b-4376-a410-f6249000d3e9", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "491884d0-b0d5-4ebf-9111-667412ba9c13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062253Z:b828bdfe-040b-4376-a410-f6249000d3e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95c168933f773e28258be396ad1cc52c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59bce450-15dd-42bd-a520-9df59a83df79", + "x-ms-client-request-id": "95c168933f773e28258be396ad1cc52c", + "x-ms-correlation-request-id": "d814b96d-0f14-4274-962c-24f257461800", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "c2220b9a-ad82-4bc9-8bab-4d2f50c76619", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062254Z:d814b96d-0f14-4274-962c-24f257461800" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed821c46337ed0207c8e6d90b3a0715b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "795d4510-63b8-4b84-afa8-0f91db6632fa", + "x-ms-client-request-id": "ed821c46337ed0207c8e6d90b3a0715b", + "x-ms-correlation-request-id": "200fef75-7ecd-4faf-9105-dd37558bcee7", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "f21edf84-b301-4feb-aa35-8209cf00e18d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062255Z:200fef75-7ecd-4faf-9105-dd37558bcee7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56f436d6e5b56882f56338463e1534bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2129c08-5087-4cf1-9d6b-f437231a6ce5", + "x-ms-client-request-id": "56f436d6e5b56882f56338463e1534bb", + "x-ms-correlation-request-id": "d330a070-18ef-434c-a13e-e91f86b0862a", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "6027b491-d972-44b1-856b-0dfaa859b048", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062257Z:d330a070-18ef-434c-a13e-e91f86b0862a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bb29888d7705f8c48f118e9d2978a85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8dd45173-569a-4f85-ad56-3350f5273b03", + "x-ms-client-request-id": "9bb29888d7705f8c48f118e9d2978a85", + "x-ms-correlation-request-id": "387bd785-42ab-4f89-86fc-18b08a4573e6", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "0a4cdd85-1391-4e7f-b932-50005443da56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062258Z:387bd785-42ab-4f89-86fc-18b08a4573e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76bf881a6f286177991af81bfad99167", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:22:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "417a88f1-8182-44f8-bbf1-c4c7a050f99e", + "x-ms-client-request-id": "76bf881a6f286177991af81bfad99167", + "x-ms-correlation-request-id": "307f6a8d-4b1d-4ec9-a512-5fec42d8dc0c", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "d704565a-cbd0-471f-9843-1d9242aadece", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062259Z:307f6a8d-4b1d-4ec9-a512-5fec42d8dc0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b08b259d5edfeebaa950dc3cc99955d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e69b3be1-e864-4ba3-99d3-6e9ab5f37de6", + "x-ms-client-request-id": "1b08b259d5edfeebaa950dc3cc99955d", + "x-ms-correlation-request-id": "9fff19c3-5727-4dcd-a31b-2bf1cb0309e3", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "92c5fbac-ec69-4411-b125-c56764eb030a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062300Z:9fff19c3-5727-4dcd-a31b-2bf1cb0309e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b62bb3d8be55189321510155de71646e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d4bbb97-cc18-4fb6-adb5-0b60ad207e71", + "x-ms-client-request-id": "b62bb3d8be55189321510155de71646e", + "x-ms-correlation-request-id": "2094ab1a-057a-4393-b646-209aa90725a1", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "27fe01ee-b0cc-4f97-b511-3df2fcb6aec8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062302Z:2094ab1a-057a-4393-b646-209aa90725a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "208fb15f6f8f45979cc1cc9262b39400", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "655a3e55-964e-4163-8d34-b32f419b0820", + "x-ms-client-request-id": "208fb15f6f8f45979cc1cc9262b39400", + "x-ms-correlation-request-id": "31c3db9f-2a45-4884-8a9d-3c542750b10e", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "4d81e5a5-abc5-4e84-bde0-3619cbf5b17d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062303Z:31c3db9f-2a45-4884-8a9d-3c542750b10e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47429b84dbae9b121feff99cd3952038", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "831cc2b4-88d7-4227-ac55-4dccba189f3e", + "x-ms-client-request-id": "47429b84dbae9b121feff99cd3952038", + "x-ms-correlation-request-id": "213dd10d-663a-413b-8157-dcb733ccd96b", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "1250cbe9-eb78-4523-b0fb-2cc7ee97f455", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062304Z:213dd10d-663a-413b-8157-dcb733ccd96b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b649e30750a69cd1be61994f200b56e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db86415e-e353-4982-a743-6e5ceafa1420", + "x-ms-client-request-id": "1b649e30750a69cd1be61994f200b56e", + "x-ms-correlation-request-id": "d1c969a0-e3dd-4678-83d2-41e650e9c74f", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "5ca72e4e-19cc-4e38-a9a0-1b786a859d32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062306Z:d1c969a0-e3dd-4678-83d2-41e650e9c74f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42d101bc1d2f84c09ff3019f75fb7107", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fce86137-e05c-4e71-8530-a0576656acb4", + "x-ms-client-request-id": "42d101bc1d2f84c09ff3019f75fb7107", + "x-ms-correlation-request-id": "787a3b2c-92bd-48d0-9d06-ff62b67b3ab0", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "7e5784ea-9e3d-4251-b45f-fcad6292f461", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062307Z:787a3b2c-92bd-48d0-9d06-ff62b67b3ab0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c36193a0794f0ff5ced92bc8c17ea91e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9701c896-8064-4a40-884c-f110916a3447", + "x-ms-client-request-id": "c36193a0794f0ff5ced92bc8c17ea91e", + "x-ms-correlation-request-id": "559862fa-141e-4808-af46-6dddf2972f7c", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "28ea4754-03c1-4896-9f57-2835fc8010f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062308Z:559862fa-141e-4808-af46-6dddf2972f7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2df8b39ddc41309dedf7c17742df320", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fe6c89b-afbe-4a43-bb13-2df191c4d429", + "x-ms-client-request-id": "d2df8b39ddc41309dedf7c17742df320", + "x-ms-correlation-request-id": "f70626e6-af0b-469b-9135-cc8ebdce317d", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "771f4848-cd17-4bcb-adbe-9ec9ee388287", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062309Z:f70626e6-af0b-469b-9135-cc8ebdce317d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ef31274f29e431f0bc17455f1f7c320", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b129af1-c1f8-4b37-b688-95aa038c0c30", + "x-ms-client-request-id": "5ef31274f29e431f0bc17455f1f7c320", + "x-ms-correlation-request-id": "6c5ce88d-969d-45ce-a8ae-a7dafa8052a9", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "7f3d2d46-b8ff-485c-bae2-2a60db0290d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062311Z:6c5ce88d-969d-45ce-a8ae-a7dafa8052a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e965e2499e1cc3428a4ee56ffdde9aa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27d84a6d-a6b3-4f2a-b5e7-d6b499b3fe47", + "x-ms-client-request-id": "e965e2499e1cc3428a4ee56ffdde9aa0", + "x-ms-correlation-request-id": "19453a5a-3c78-427e-96b3-7e731edf062f", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "5a4611ba-27e3-4765-a96c-e26c1a560a6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062312Z:19453a5a-3c78-427e-96b3-7e731edf062f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae530be54a8a47806c9cc60268b322e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71974978-59c0-4f5a-aa4e-bc379345818f", + "x-ms-client-request-id": "ae530be54a8a47806c9cc60268b322e7", + "x-ms-correlation-request-id": "8479d95d-d883-4dae-a773-d975208f7b21", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "5b6caabc-356f-4a2c-875e-2a56d1349178", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062313Z:8479d95d-d883-4dae-a773-d975208f7b21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92cd5b1b0ac7d503d02fd4500caf452d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cbedf0ee-a2fd-48ef-b156-d95ed5e615e7", + "x-ms-client-request-id": "92cd5b1b0ac7d503d02fd4500caf452d", + "x-ms-correlation-request-id": "f613a940-dc65-4c32-a010-b0f198ef7b48", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "4eaa2128-fb3f-4aa6-b29a-d8bf27ef507d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062315Z:f613a940-dc65-4c32-a010-b0f198ef7b48" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e670d32615a3ff95621e7c7fd8405ad6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5607e3e-faf0-4e98-9e12-06b8d0974e09", + "x-ms-client-request-id": "e670d32615a3ff95621e7c7fd8405ad6", + "x-ms-correlation-request-id": "6147568a-234e-4309-a585-757a85eebbd0", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "68acaa03-1cc6-4b5f-8201-79e56874a17e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062316Z:6147568a-234e-4309-a585-757a85eebbd0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a253fe2c0810dbd9077ede5b762f3bbd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f1b4a4a-42c9-4d81-9d59-3e0ce26b2f20", + "x-ms-client-request-id": "a253fe2c0810dbd9077ede5b762f3bbd", + "x-ms-correlation-request-id": "c1af3e50-23d4-4fb7-8c32-2d3516a8a8cf", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "00678ace-d742-4d83-91c7-bb4faeb5bb6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062317Z:c1af3e50-23d4-4fb7-8c32-2d3516a8a8cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94db98563b430643c5ce2fa98d84fd90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "617866c7-c573-4e3c-bff9-a521fad58a0d", + "x-ms-client-request-id": "94db98563b430643c5ce2fa98d84fd90", + "x-ms-correlation-request-id": "d1c8eab8-0c92-40da-ac9e-bccd9a5ba0b8", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "df44f889-d0f4-4abe-b55e-fe7c99d904f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062319Z:d1c8eab8-0c92-40da-ac9e-bccd9a5ba0b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e24fdd5a35b1e1cfa94de25373a8832", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b059246-d1c3-440d-96d6-d361736e4e7b", + "x-ms-client-request-id": "0e24fdd5a35b1e1cfa94de25373a8832", + "x-ms-correlation-request-id": "823b4be9-2e27-46ea-b4c3-434cad27d5ce", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "565fdcc7-3468-41b9-8728-3501ddfb0d72", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062320Z:823b4be9-2e27-46ea-b4c3-434cad27d5ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f28bfe3c564f093ba4ddc42d82f4e83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dcae6a46-4929-4b98-811e-e4e950a4efd2", + "x-ms-client-request-id": "3f28bfe3c564f093ba4ddc42d82f4e83", + "x-ms-correlation-request-id": "049324ee-7506-47e8-a056-22d1ba68e4f4", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "78c9edb6-a2f0-4816-87cf-31142937d221", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062321Z:049324ee-7506-47e8-a056-22d1ba68e4f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78864e802c0bb3617cbd9aaf5d1dcf8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2cf9dbb5-bdb2-4042-b8c3-909b6477c7a1", + "x-ms-client-request-id": "78864e802c0bb3617cbd9aaf5d1dcf8a", + "x-ms-correlation-request-id": "b392f1c6-5cc5-4d5b-8740-b42cfd334091", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "f4a00952-48ab-4cfa-a500-06178a1e0577", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062322Z:b392f1c6-5cc5-4d5b-8740-b42cfd334091" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cec6fd45bd5b0f2b6a34540ec7da45cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e45d350-ec48-44ee-9104-143b9d83f666", + "x-ms-client-request-id": "cec6fd45bd5b0f2b6a34540ec7da45cb", + "x-ms-correlation-request-id": "984f9b31-3412-4f58-8393-2c2eef22c622", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "0458d827-96b3-4dc1-b6a5-89dfa42a0359", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062324Z:984f9b31-3412-4f58-8393-2c2eef22c622" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8a45b460fb4b6275d75c3a62be3929c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00d00d6c-7b51-43d3-9684-0c11c7a986cf", + "x-ms-client-request-id": "e8a45b460fb4b6275d75c3a62be3929c", + "x-ms-correlation-request-id": "f6f68bad-8960-48b0-8588-75210dd1a9fd", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "91415ad4-1689-42f1-acfb-5a634ce40411", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062325Z:f6f68bad-8960-48b0-8588-75210dd1a9fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbfc527d8069c32722760dd6d852eba2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16e0edd3-fe27-423e-a998-23935efc3d87", + "x-ms-client-request-id": "dbfc527d8069c32722760dd6d852eba2", + "x-ms-correlation-request-id": "41774bec-6006-4337-bd6a-997a4cd3a0e5", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "b8e9190c-77f7-4071-9bd6-efa372beb08c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062326Z:41774bec-6006-4337-bd6a-997a4cd3a0e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0169ce77e67935d5d60f70e5f984e386", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c62b93a3-7376-445d-a680-85ed3e114c5f", + "x-ms-client-request-id": "0169ce77e67935d5d60f70e5f984e386", + "x-ms-correlation-request-id": "d1bf2145-8c78-4eef-87a8-663863b60f07", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "4bf4151d-ec27-461e-9d32-ad2adff6117d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062328Z:d1bf2145-8c78-4eef-87a8-663863b60f07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7591b7a16addc56133e0c63d0250de0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59b28648-e5c4-429d-a040-362882cc0bd8", + "x-ms-client-request-id": "7591b7a16addc56133e0c63d0250de0a", + "x-ms-correlation-request-id": "421a6235-6a7d-4f0c-9e02-c0352b340f07", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "51e95fb1-80ba-48d1-8303-493c0cc599fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062329Z:421a6235-6a7d-4f0c-9e02-c0352b340f07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d2f2189907a96237cc705590f42c99d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56b5d98e-9972-4600-a472-a33c8b03542f", + "x-ms-client-request-id": "5d2f2189907a96237cc705590f42c99d", + "x-ms-correlation-request-id": "0fe1c66b-b462-42a6-9c2c-0d2259a029f4", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "f8b17284-f8fb-4af6-b28a-43f93687c35c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062330Z:0fe1c66b-b462-42a6-9c2c-0d2259a029f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2035869376c10dc56ca3ce981f973385", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25a2231f-dc91-492e-a02d-f5e19c63ba96", + "x-ms-client-request-id": "2035869376c10dc56ca3ce981f973385", + "x-ms-correlation-request-id": "9a322698-f431-48f9-be25-7988988b13af", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "a7c208cd-44c4-4ad7-992c-2fc2feb4fccb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062332Z:9a322698-f431-48f9-be25-7988988b13af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d85b65318655100c94faf8156508b6f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df7c98aa-6c3c-435d-a73a-e1daf374271a", + "x-ms-client-request-id": "d85b65318655100c94faf8156508b6f1", + "x-ms-correlation-request-id": "6f1fabe2-a410-49c5-862e-b495de70381b", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "971019e9-e507-4ef0-862a-5f679e2fe47c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062333Z:6f1fabe2-a410-49c5-862e-b495de70381b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7baa2917bd1a12495c21f0d7c28a77e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68a570b6-d3d1-4100-aed3-20d169d410f1", + "x-ms-client-request-id": "7baa2917bd1a12495c21f0d7c28a77e4", + "x-ms-correlation-request-id": "526c46ef-adc6-4ed2-9034-fb58ed698b01", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "7c0057d7-b6ce-4469-857a-85b1115c1b2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062334Z:526c46ef-adc6-4ed2-9034-fb58ed698b01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa277f93f1e60d477a248cc77eafa864", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83e763d1-5313-47ae-b3c7-28fae98ce70a", + "x-ms-client-request-id": "aa277f93f1e60d477a248cc77eafa864", + "x-ms-correlation-request-id": "daa7d349-677d-44f1-b89d-f6edb633a847", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "07a57e22-2c6b-42e7-937a-0df9b7d8162d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062335Z:daa7d349-677d-44f1-b89d-f6edb633a847" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f681dcecb8ed736a1c487b3496344e09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "914109ee-5b57-4de5-9ee9-00005f84f503", + "x-ms-client-request-id": "f681dcecb8ed736a1c487b3496344e09", + "x-ms-correlation-request-id": "3e7232ce-9ade-4677-a938-9ea52f4646c8", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "11df5d28-e00d-41b6-9dda-344cad0c1ba4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062337Z:3e7232ce-9ade-4677-a938-9ea52f4646c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e58214830be0250ae19d00f6308194ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "516a6a6b-7ebe-4515-8040-36792fd86333", + "x-ms-client-request-id": "e58214830be0250ae19d00f6308194ad", + "x-ms-correlation-request-id": "1c2ab9d5-a964-4a02-bcc0-328036ae7268", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "9c54ca99-4925-4964-b51c-8e6480fd12f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062338Z:1c2ab9d5-a964-4a02-bcc0-328036ae7268" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5ea8b788009dbf714b48d9e75137646", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "498e62d3-2e44-46dc-8942-e50aa2f3b701", + "x-ms-client-request-id": "e5ea8b788009dbf714b48d9e75137646", + "x-ms-correlation-request-id": "20603262-fda6-4f7f-b064-740b87a8aec1", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "0e730dbe-4250-40e6-a998-4a6f7c10582d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062339Z:20603262-fda6-4f7f-b064-740b87a8aec1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "694483d6c22de183d25b1450b874439a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "308e56ec-f005-42c2-8f28-47e857b7bef7", + "x-ms-client-request-id": "694483d6c22de183d25b1450b874439a", + "x-ms-correlation-request-id": "7dddcf8a-3b6d-490c-871f-5dd685a607cc", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "08eed9e0-4239-47f4-a2b7-59db9c3412d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062341Z:7dddcf8a-3b6d-490c-871f-5dd685a607cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0abbceb3684902ff1da6d12c7d6cb0ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65561efb-3be2-4f1d-9a96-51af9346dce5", + "x-ms-client-request-id": "0abbceb3684902ff1da6d12c7d6cb0ce", + "x-ms-correlation-request-id": "0402a5ed-2cef-4f52-8d6c-237ec64c0421", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "4dafeb9f-42ce-4303-8ff8-9841ca513c36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062342Z:0402a5ed-2cef-4f52-8d6c-237ec64c0421" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad1fb9262a3db680070913ae6ba6239f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "193c807d-13d2-4667-b077-39806b32d0a8", + "x-ms-client-request-id": "ad1fb9262a3db680070913ae6ba6239f", + "x-ms-correlation-request-id": "ac4e3957-6a70-4ec5-a73c-922bc5a8e962", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "9019ed91-73cf-468c-b363-23a1fb14d20d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062343Z:ac4e3957-6a70-4ec5-a73c-922bc5a8e962" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7eaf3706c576efc83414c86f1576366", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2dba75ba-1ece-4a2d-9e4f-6fc31b10cb22", + "x-ms-client-request-id": "a7eaf3706c576efc83414c86f1576366", + "x-ms-correlation-request-id": "b8c10f65-a0c8-4e85-bc9f-4930dd0f9195", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "1663631c-adf2-4713-af97-ceddc74e9dad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062344Z:b8c10f65-a0c8-4e85-bc9f-4930dd0f9195" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe2946ab9555885d4e05034055519776", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4d25ab6-7c10-40e9-8d0b-312764b78bcd", + "x-ms-client-request-id": "fe2946ab9555885d4e05034055519776", + "x-ms-correlation-request-id": "91f91568-2f34-4575-8ed3-27747b679660", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "6451b98b-4e46-497e-93b3-017e07ac17a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062346Z:91f91568-2f34-4575-8ed3-27747b679660" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8abb31830881ba76bdb12afcdefac5b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "785c65f2-8f27-46ed-af58-4374605b7814", + "x-ms-client-request-id": "8abb31830881ba76bdb12afcdefac5b0", + "x-ms-correlation-request-id": "853c039b-8cee-4b74-85fb-dfcf55aa37e5", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "881368da-ebf5-4610-9913-1d785c683b2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062347Z:853c039b-8cee-4b74-85fb-dfcf55aa37e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2502aca5257ddb4a9561585269bc1831", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "949cbd11-5f4b-450d-b43e-08d876344074", + "x-ms-client-request-id": "2502aca5257ddb4a9561585269bc1831", + "x-ms-correlation-request-id": "cd29456f-71ae-44d6-b8f8-105a21f3d23d", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "07d9654f-49e7-493f-a151-bcf800089e26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062348Z:cd29456f-71ae-44d6-b8f8-105a21f3d23d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf02d6a9d99ba2e5cf6f40a36a61aa54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "abd29e80-1516-4b3c-a8b7-e09669c4bb8e", + "x-ms-client-request-id": "bf02d6a9d99ba2e5cf6f40a36a61aa54", + "x-ms-correlation-request-id": "bb9c9510-65cf-4037-ac38-1d5a5be89659", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "c6000d6a-aed7-40ee-83b4-8976febfdbdf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062350Z:bb9c9510-65cf-4037-ac38-1d5a5be89659" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a89a5340714f5ef9e7e0f41fb0245100", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c6ffb8d-9ac5-48af-82e1-aae604027a8e", + "x-ms-client-request-id": "a89a5340714f5ef9e7e0f41fb0245100", + "x-ms-correlation-request-id": "1c4143a9-28ff-4ada-878e-f3578fc56a8f", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "78fcde3b-2f99-4159-8d41-e81927158306", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062351Z:1c4143a9-28ff-4ada-878e-f3578fc56a8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0752f99805f7cc14c760560de4a77034", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00945f17-cfd3-4a95-a8ce-41d393401484", + "x-ms-client-request-id": "0752f99805f7cc14c760560de4a77034", + "x-ms-correlation-request-id": "ddd66f65-e4f6-4937-9567-1704ab5c35da", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "e1765a40-35ea-435d-85d3-45acdf858424", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062352Z:ddd66f65-e4f6-4937-9567-1704ab5c35da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "151204b6702237e2dda3d8bbe4c5f2aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3f1caa7-2ba0-4d7c-a9a5-cfc63cca06a9", + "x-ms-client-request-id": "151204b6702237e2dda3d8bbe4c5f2aa", + "x-ms-correlation-request-id": "b8b009f9-fa99-4783-a8db-62f436fc6b2a", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "5cf39ec7-02ab-4d6e-89d8-455931c6f820", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062354Z:b8b009f9-fa99-4783-a8db-62f436fc6b2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "710a401ea20e3a5c3ecde1ef1beb7a40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4861ebc2-86b2-433b-b265-b4438824be5e", + "x-ms-client-request-id": "710a401ea20e3a5c3ecde1ef1beb7a40", + "x-ms-correlation-request-id": "4b9319b3-7089-41fa-bfc6-31dd4d27ec55", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "34395c55-3c31-431d-8325-fb60a6d010f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062355Z:4b9319b3-7089-41fa-bfc6-31dd4d27ec55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab68bf6f3b1228de171a2a532d58e802", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8a3adc5-5509-4e57-9b93-28450da5c8d4", + "x-ms-client-request-id": "ab68bf6f3b1228de171a2a532d58e802", + "x-ms-correlation-request-id": "b5ef2e9d-54b6-4ec3-abb5-4449088801e4", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "5066bca3-c2c7-4c76-a7b6-0f34a7a7e5f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062356Z:b5ef2e9d-54b6-4ec3-abb5-4449088801e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4efab6dff9c1326a8d7d7548ff21cf2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81173f72-d2f1-4328-8d05-ac4553aad8bf", + "x-ms-client-request-id": "a4efab6dff9c1326a8d7d7548ff21cf2", + "x-ms-correlation-request-id": "cfdaeb15-88e8-4f3c-a199-61e9378ee0eb", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "acafb6f7-dd07-433f-960f-48e516549046", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062357Z:cfdaeb15-88e8-4f3c-a199-61e9378ee0eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "244c9729475ce29861e25af478080ce6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:23:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff4e3368-9472-4ab4-bd6f-1213563dc3ac", + "x-ms-client-request-id": "244c9729475ce29861e25af478080ce6", + "x-ms-correlation-request-id": "243be037-8034-4f7d-8cbf-9bfdfa4a1973", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "ee5c3b4d-fa8b-407d-b34e-8117decb4d5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062359Z:243be037-8034-4f7d-8cbf-9bfdfa4a1973" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7081dee5d6fb6fa49955033a648a9924", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "494a831e-a77a-4fed-a00d-53a0e5b2d7ad", + "x-ms-client-request-id": "7081dee5d6fb6fa49955033a648a9924", + "x-ms-correlation-request-id": "0a123a52-ad61-4d1b-8e5d-6278b151b526", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "bc98d515-cff5-4642-a025-8c9161687f7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062400Z:0a123a52-ad61-4d1b-8e5d-6278b151b526" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "952938fec30b26a5120c42b9a5319b9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ecebf64e-fcde-4b07-adfd-238d36e56c17", + "x-ms-client-request-id": "952938fec30b26a5120c42b9a5319b9f", + "x-ms-correlation-request-id": "51c4935d-d8b9-4c52-bf34-4a334202cf9f", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "8027a0f8-9b12-403f-8466-4bba7e2e83e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062401Z:51c4935d-d8b9-4c52-bf34-4a334202cf9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b06ef0cbab7153f6f3dd8b07435e7ed7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "feece001-f3a0-4c85-ac78-0eabd1843e61", + "x-ms-client-request-id": "b06ef0cbab7153f6f3dd8b07435e7ed7", + "x-ms-correlation-request-id": "a30e6862-bd12-49b6-b17e-78b37068b98a", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "bbf93783-3e37-4d29-9648-4009c7758667", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062403Z:a30e6862-bd12-49b6-b17e-78b37068b98a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ff6354976de22db395b5dee93eaca67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ef2e757-b889-4359-a30f-1d0181fb29d6", + "x-ms-client-request-id": "3ff6354976de22db395b5dee93eaca67", + "x-ms-correlation-request-id": "06067344-32ed-4e36-93bc-6a63d3603965", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "85203785-01d4-4d17-9692-907f1a4505f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062404Z:06067344-32ed-4e36-93bc-6a63d3603965" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "736f64b9e81b52b342d6a12e379ee2b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c7701f2-da09-42fe-aec0-7b90987661bb", + "x-ms-client-request-id": "736f64b9e81b52b342d6a12e379ee2b4", + "x-ms-correlation-request-id": "67f2dc81-c92a-4098-8e8c-13de8a61689e", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "7d81b4ba-17e6-49eb-b211-b15e87f6ec53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062405Z:67f2dc81-c92a-4098-8e8c-13de8a61689e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f706b8d5b3b54c0154c77154e07bf09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a2e96c32-4e2a-4776-892f-d2b51ba246ac", + "x-ms-client-request-id": "6f706b8d5b3b54c0154c77154e07bf09", + "x-ms-correlation-request-id": "96396627-cedb-41a7-910d-78d47ada9299", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "32e349b3-f3f8-4095-9568-4e129f0a5750", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062406Z:96396627-cedb-41a7-910d-78d47ada9299" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df4d23120bee60bb82a3fd08d5acea9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "adbb603c-4214-455a-ae07-0cfdf351c05f", + "x-ms-client-request-id": "df4d23120bee60bb82a3fd08d5acea9a", + "x-ms-correlation-request-id": "aef950e9-4e7c-4c1c-9536-2dff88325ade", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "130033c7-53fc-4a46-91ee-3a1bb4ac1129", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062408Z:aef950e9-4e7c-4c1c-9536-2dff88325ade" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2861a8785a795e2ca41a5ecf719d043a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35bc1e64-a37e-4091-ae99-dbf2112d0c3f", + "x-ms-client-request-id": "2861a8785a795e2ca41a5ecf719d043a", + "x-ms-correlation-request-id": "9031bf58-0b9e-424d-9fbb-8649b7b99888", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "086486e3-90aa-465e-b9fa-1d56ded8e8f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062409Z:9031bf58-0b9e-424d-9fbb-8649b7b99888" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "131b9816025082c5af0fec975db77f68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "018cc3f4-128c-4723-b037-3a146e1e7d35", + "x-ms-client-request-id": "131b9816025082c5af0fec975db77f68", + "x-ms-correlation-request-id": "cd8e6d45-cbaa-470f-8881-b19269c664af", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "962d58f9-0fb9-448c-b2a2-20a96a6d2ce6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062410Z:cd8e6d45-cbaa-470f-8881-b19269c664af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a59ddc6197a6b78ff7ef3bd4aceceee5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81fd991c-3fa8-4f52-917b-2a2166670583", + "x-ms-client-request-id": "a59ddc6197a6b78ff7ef3bd4aceceee5", + "x-ms-correlation-request-id": "f546c379-172e-4429-a980-f5aca4c34005", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "f327c38f-684c-47a8-9e35-c424fae592f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062411Z:f546c379-172e-4429-a980-f5aca4c34005" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cf2c39fd7907649e2de78696e9400ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "293b615c-87a3-4679-8569-722af10c1d64", + "x-ms-client-request-id": "3cf2c39fd7907649e2de78696e9400ec", + "x-ms-correlation-request-id": "936f814f-0de7-477e-a582-bab8ad3256e2", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "6f45d601-0670-46b1-b835-ae1a866b6371", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062413Z:936f814f-0de7-477e-a582-bab8ad3256e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "946df69b5e007e9408641b61c7f1d6c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9caf112d-e4bf-47b9-af1f-96aa07c798ae", + "x-ms-client-request-id": "946df69b5e007e9408641b61c7f1d6c3", + "x-ms-correlation-request-id": "c1d30975-93b7-4cd5-82f9-5a6840453319", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "9d79d106-9f20-496e-a139-0cb76b1ce9e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062414Z:c1d30975-93b7-4cd5-82f9-5a6840453319" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9af7072142c589d79327c2c71f254962", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ed3c59c-af3d-4eba-a96e-27ed2abdd81b", + "x-ms-client-request-id": "9af7072142c589d79327c2c71f254962", + "x-ms-correlation-request-id": "991dcd4a-186c-4a0e-9491-75267a50d0fb", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "4f342a50-3d65-4c52-9920-cb7ea788fcb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062415Z:991dcd4a-186c-4a0e-9491-75267a50d0fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6384fee597e40e52f73342cbbe8aef0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3eba2fc1-813d-4d72-b9f4-b3c56f133025", + "x-ms-client-request-id": "b6384fee597e40e52f73342cbbe8aef0", + "x-ms-correlation-request-id": "c65b2701-bf88-4ac4-a2c9-c714003869f6", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "2dcb7b4b-25a8-48bc-9ed4-5b402610c03e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062417Z:c65b2701-bf88-4ac4-a2c9-c714003869f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6648b508669c59271ee401d99bcc5fe2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "164ceba1-23cd-4bcf-881c-6cbd8d13103a", + "x-ms-client-request-id": "6648b508669c59271ee401d99bcc5fe2", + "x-ms-correlation-request-id": "803f070e-ddef-4580-99e2-9287166d8474", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "00984ee7-1851-41fa-a74b-72b5407ec164", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062418Z:803f070e-ddef-4580-99e2-9287166d8474" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7872b81a1fb9c74522b76b520eaaceaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5966032-3ddd-4618-8d27-de8f093304ef", + "x-ms-client-request-id": "7872b81a1fb9c74522b76b520eaaceaa", + "x-ms-correlation-request-id": "e7c47134-0d81-409c-aef1-8c3c8bc39e70", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "57b4fb72-9078-4e85-90c2-91b3303e19f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062419Z:e7c47134-0d81-409c-aef1-8c3c8bc39e70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6abfd178e3dd88c627de979a570ca462", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "841ea4a5-9d5e-42cd-9357-0f3b06f3cd62", + "x-ms-client-request-id": "6abfd178e3dd88c627de979a570ca462", + "x-ms-correlation-request-id": "2b452e19-61a4-4376-a5e4-30d0e8521cd8", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "7f404c4e-a428-40c4-8778-ab7efa784dd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062420Z:2b452e19-61a4-4376-a5e4-30d0e8521cd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "021151133675e8376f8144e5fad44a73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ab61173-1daa-48b0-9f44-b13e6ab269d8", + "x-ms-client-request-id": "021151133675e8376f8144e5fad44a73", + "x-ms-correlation-request-id": "5057b9b0-85e7-4be0-a05c-f0c1e812e818", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "c2bfd78f-3dde-4e9a-ae25-ccc144c527e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062422Z:5057b9b0-85e7-4be0-a05c-f0c1e812e818" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9605715f50c3705f2e950da88aa6f16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ccb19d7-acff-4e14-aa5a-3d7a8fa8fc75", + "x-ms-client-request-id": "c9605715f50c3705f2e950da88aa6f16", + "x-ms-correlation-request-id": "1c77b373-d163-4ea2-9039-2136df268ba5", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "fd9ef81c-42e3-4278-b4ae-00fb0bd7824b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062423Z:1c77b373-d163-4ea2-9039-2136df268ba5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd3e0812cc9841359ad7fa5b9ee08e53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3192ef56-7074-4424-8c5f-ad139a9b0526", + "x-ms-client-request-id": "bd3e0812cc9841359ad7fa5b9ee08e53", + "x-ms-correlation-request-id": "099689c1-3367-4bb2-9c6c-d95233644e5a", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "402fd262-996f-4418-9d57-9fb7f97d0447", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062425Z:099689c1-3367-4bb2-9c6c-d95233644e5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00842394daab1e564bda0f8be65c60c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1dae86b-25bd-4f2f-83a8-a6c4d743160b", + "x-ms-client-request-id": "00842394daab1e564bda0f8be65c60c5", + "x-ms-correlation-request-id": "ae35199b-8551-4f9c-8238-85a42b70ece6", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "b925d2f8-14b0-49b1-8048-307d3a953951", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062426Z:ae35199b-8551-4f9c-8238-85a42b70ece6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2d32d128d9649da211f2f35fba99812", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e286872-cfe6-4ec2-999a-ec943ae7be59", + "x-ms-client-request-id": "f2d32d128d9649da211f2f35fba99812", + "x-ms-correlation-request-id": "f0f24797-cc42-4e77-973a-c8126db30f6a", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "abdabb31-d768-445b-aa2a-de73600d977d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062427Z:f0f24797-cc42-4e77-973a-c8126db30f6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6446fc5b6e26376bb22071bebca95b3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c40ddde2-7575-43ee-98fd-c6affc296b3d", + "x-ms-client-request-id": "6446fc5b6e26376bb22071bebca95b3e", + "x-ms-correlation-request-id": "15873f92-f65d-408b-b3e4-f67833081d87", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "03bb7c56-27e8-4d36-9cf8-abdc99214ca9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062429Z:15873f92-f65d-408b-b3e4-f67833081d87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "704935769b0d06bd483bdf8bab2022a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ead791cf-061a-4fbd-9b2a-a0b72551ef29", + "x-ms-client-request-id": "704935769b0d06bd483bdf8bab2022a1", + "x-ms-correlation-request-id": "899c8a0a-45e8-4f81-9b97-15dd6295552f", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "a4a3927f-6adf-4a98-a7d9-d32d76979196", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062430Z:899c8a0a-45e8-4f81-9b97-15dd6295552f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e930fd41fc15a39ec29c3f751b1c8c78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5247439-d0bd-46ef-b192-dadd461bab9b", + "x-ms-client-request-id": "e930fd41fc15a39ec29c3f751b1c8c78", + "x-ms-correlation-request-id": "b5b14054-7c95-4b04-b453-99ed6b7f219c", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "550d4a4b-a5ca-4c70-9cae-45f60785fcda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062431Z:b5b14054-7c95-4b04-b453-99ed6b7f219c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5bef0c32760bf043f3f1bea8fdf8b91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ad1e023-a123-488c-8573-12d6807dbfaa", + "x-ms-client-request-id": "c5bef0c32760bf043f3f1bea8fdf8b91", + "x-ms-correlation-request-id": "d9911302-bbf3-4372-9002-ba30b0bb73e3", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "adb89faf-75e9-442f-9d3f-afc2e6e32040", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062432Z:d9911302-bbf3-4372-9002-ba30b0bb73e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be7ccffd72797a2896a5ae715b47ea2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4442b72-9545-4230-9324-385b52da3d51", + "x-ms-client-request-id": "be7ccffd72797a2896a5ae715b47ea2c", + "x-ms-correlation-request-id": "1abd8682-8634-4ae2-a1c6-d4e3a985a91b", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "da0ffa3d-e16c-432d-82d1-9ef24e025a5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062434Z:1abd8682-8634-4ae2-a1c6-d4e3a985a91b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbc866ae5d611941f870a9d6e0b414e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1eeef74b-ba8b-4f33-b7a2-5e2852daba41", + "x-ms-client-request-id": "bbc866ae5d611941f870a9d6e0b414e3", + "x-ms-correlation-request-id": "749b8414-b2f6-472a-91d6-e7c3b96f61b1", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "67252197-28eb-4505-9325-ec5cdde66909", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062435Z:749b8414-b2f6-472a-91d6-e7c3b96f61b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c77ae10ce9f51ffc8442fba799364f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "100f9398-60ed-4d0f-8f6f-16e5cd11d9da", + "x-ms-client-request-id": "4c77ae10ce9f51ffc8442fba799364f8", + "x-ms-correlation-request-id": "89be260f-9cf4-47de-b7e8-130b30f16ded", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "c3fba8c6-d6f5-465f-8aed-d6e2907b08f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062436Z:89be260f-9cf4-47de-b7e8-130b30f16ded" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "283cef55d017a0308e62c608c85299e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0680b14-55a3-4914-85cb-a1768eabd01e", + "x-ms-client-request-id": "283cef55d017a0308e62c608c85299e2", + "x-ms-correlation-request-id": "ebacdefa-304d-43f3-ac7d-60aa7a183639", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "4bbac7cf-2229-45bc-8fb0-0979afdba171", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062437Z:ebacdefa-304d-43f3-ac7d-60aa7a183639" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad60ca919ecfe08c6776f21d2d86a064", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3184725-2173-428a-9365-d0a2aabe58e2", + "x-ms-client-request-id": "ad60ca919ecfe08c6776f21d2d86a064", + "x-ms-correlation-request-id": "ab851c99-f3f3-48dc-92fa-4c9120fdce4a", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "15f53931-d7db-4e66-810f-84e0d9249126", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062439Z:ab851c99-f3f3-48dc-92fa-4c9120fdce4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f180b10ceb7840cc7ed7bd3c07f68975", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87b96784-3682-4ccd-a2a0-b25b2140079c", + "x-ms-client-request-id": "f180b10ceb7840cc7ed7bd3c07f68975", + "x-ms-correlation-request-id": "39e3c337-a643-4e06-bf0f-d7b2c4aeead4", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "960ccc0e-3a59-4e62-9b70-528be3535959", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062440Z:39e3c337-a643-4e06-bf0f-d7b2c4aeead4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae294daab633b628625bc1a0dd127208", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8168cca-36e0-46c3-aaba-50d2bfcce5b1", + "x-ms-client-request-id": "ae294daab633b628625bc1a0dd127208", + "x-ms-correlation-request-id": "7ba55f64-d73b-4c81-8f14-3748f1621fd5", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "11f508ce-72c7-4170-b8eb-9f27e3d550df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062441Z:7ba55f64-d73b-4c81-8f14-3748f1621fd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16fc61c2a8d1a569fe1f2ff8e14fd870", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83c6eab0-dcb0-4b8a-bcce-fc6826a70e92", + "x-ms-client-request-id": "16fc61c2a8d1a569fe1f2ff8e14fd870", + "x-ms-correlation-request-id": "1b96d59e-8562-4e10-9e2e-0dca5f26a911", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "e22b2064-2571-4d51-8811-c42e681caff0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062443Z:1b96d59e-8562-4e10-9e2e-0dca5f26a911" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df727cedf15c553189ca8f1c2a2b636b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e824431-9d68-4ad5-90dd-9a02cc59178b", + "x-ms-client-request-id": "df727cedf15c553189ca8f1c2a2b636b", + "x-ms-correlation-request-id": "d12ae907-1cc3-40ae-b3fe-a9e1e4eb30a5", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "2e9ba9ee-2d1d-4c08-b88c-4f9325dffc20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062444Z:d12ae907-1cc3-40ae-b3fe-a9e1e4eb30a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a67ab56472f902a4e384b013872fd512", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83f89b4c-9efd-49a2-8e25-c4b1d0094a7d", + "x-ms-client-request-id": "a67ab56472f902a4e384b013872fd512", + "x-ms-correlation-request-id": "4e52fcc1-b3da-46d7-86b1-0baa5d542618", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "db934fbe-28a8-4021-8d79-74355629edfa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062445Z:4e52fcc1-b3da-46d7-86b1-0baa5d542618" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60b3508392a0d1ab30a68d06184d7bd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c32df8d-d76a-44cc-a037-3e62a02630ee", + "x-ms-client-request-id": "60b3508392a0d1ab30a68d06184d7bd2", + "x-ms-correlation-request-id": "5f5841b8-d063-4753-badb-4343b6a39c6d", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "982beb40-9be9-4309-97c6-7d06a7db9f20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062446Z:5f5841b8-d063-4753-badb-4343b6a39c6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c93c4bc32d57a77d870fcd8411dce59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ea173e8-145b-4fb1-8859-b6d06fa45c9f", + "x-ms-client-request-id": "2c93c4bc32d57a77d870fcd8411dce59", + "x-ms-correlation-request-id": "f655d37e-f113-4339-80d1-359291a55b81", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "9f82bce5-05bb-4ef3-9ed1-9ddeaeb64ba6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062448Z:f655d37e-f113-4339-80d1-359291a55b81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9987cf50278d1cb09a87652e49de995", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13c8e718-4fa9-440c-9712-5f45ef8c3bd6", + "x-ms-client-request-id": "d9987cf50278d1cb09a87652e49de995", + "x-ms-correlation-request-id": "5ab9553d-bb62-4d3b-857d-cd44abdf790e", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "0e55992d-7039-460c-8880-e56434078dc4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062449Z:5ab9553d-bb62-4d3b-857d-cd44abdf790e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c356de09a99c503cd939882f96d28f12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d26104ea-9e57-42ca-b439-b1f922b59691", + "x-ms-client-request-id": "c356de09a99c503cd939882f96d28f12", + "x-ms-correlation-request-id": "c8dde16a-897c-4ae9-9f3f-d3bd7e30c0a5", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "266adaec-b2cc-4a8a-a99a-f69117229c60", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062450Z:c8dde16a-897c-4ae9-9f3f-d3bd7e30c0a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c1134d8a1b4ba5af8c2222dbc24953a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63605849-1d43-4278-b30e-c14e1c878e2f", + "x-ms-client-request-id": "9c1134d8a1b4ba5af8c2222dbc24953a", + "x-ms-correlation-request-id": "0a97e6f3-da58-4da5-aea8-fb4fae6b6b68", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "bea891e0-2aa5-4234-96a8-acaffd22b1ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062451Z:0a97e6f3-da58-4da5-aea8-fb4fae6b6b68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62cf66870bc74bbd4048003f7a9b3b36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8cb97564-8f29-4f06-85e4-0165cdd2de97", + "x-ms-client-request-id": "62cf66870bc74bbd4048003f7a9b3b36", + "x-ms-correlation-request-id": "03c14812-b1f8-40b1-953c-86f16ea19219", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "56ced599-91b8-4f75-b83d-11c896bdb2b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062453Z:03c14812-b1f8-40b1-953c-86f16ea19219" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b07a63184d8b67e0839ccad9860f94b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f6f408a-c080-4ce9-b609-0b7db48a112c", + "x-ms-client-request-id": "b07a63184d8b67e0839ccad9860f94b5", + "x-ms-correlation-request-id": "c907b7d2-0c81-4d4d-a641-5a7c6145290d", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "9eb0a42d-55ed-43a7-b385-eed51c375fbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062454Z:c907b7d2-0c81-4d4d-a641-5a7c6145290d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/172d0f23-9cd3-4ea0-8896-87ec5c50af8b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fa84da32d03cc4b76c55b6ca11b3f5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff6027b0-39a7-4071-ba4b-45adda49d5b0", + "x-ms-client-request-id": "2fa84da32d03cc4b76c55b6ca11b3f5d", + "x-ms-correlation-request-id": "65c03650-adf4-448b-907c-51b8f0cc264e", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "6fe14d45-b544-430c-8ccb-028e6ed16326", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062455Z:65c03650-adf4-448b-907c-51b8f0cc264e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5814eb87e4a93aaf8567df2a41e3c530", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2605", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "faa766dc-1df0-494f-95f9-29fb1ca2e414", + "x-ms-client-request-id": "5814eb87e4a93aaf8567df2a41e3c530", + "x-ms-correlation-request-id": "d465015c-c710-447e-9c66-5c37543786d1", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "e2dd1b3c-803f-435f-82a4-298e4d820d0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062456Z:d465015c-c710-447e-9c66-5c37543786d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8546\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002227151e9b-3821-4fd8-bc2c-10c018c4a14a\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022730d82d1-5137-4087-a29d-27a7c16f0bb6\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9714\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002227151e9b-3821-4fd8-bc2c-10c018c4a14a\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.151.17.77\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayDefaultSite\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c9b4ab30bf3eb3318ad39c5f173c668", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2605", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:24:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18ea9f87-fe3b-42d1-9dcc-3dade8a4c5d1", + "x-ms-client-request-id": "2c9b4ab30bf3eb3318ad39c5f173c668", + "x-ms-correlation-request-id": "27eeca53-0e4c-4f95-bc16-89ff8bdad4ff", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "194c146b-3fdc-4682-8c4a-c9759632ee87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062456Z:27eeca53-0e4c-4f95-bc16-89ff8bdad4ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8546\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002227151e9b-3821-4fd8-bc2c-10c018c4a14a\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022730d82d1-5137-4087-a29d-27a7c16f0bb6\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9714\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002227151e9b-3821-4fd8-bc2c-10c018c4a14a\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.151.17.77\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayDefaultSite\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "2009", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb9b526c0b3b9ebe6eaa9c4d208b9300", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "virtualNetworkGateway1": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet9714", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "gatewayDefaultSite": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709" + }, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.0.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "localNetworkGateway2": { + "location": "westus2", + "tags": { + "test": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709", + "properties": { + "localNetworkAddressSpace": { + "addressPrefixes": [ + "192.168.0.0/16" + ] + }, + "gatewayIpAddress": "192.168.3.4" + } + }, + "connectionType": "IPsec", + "routingWeight": 3, + "sharedKey": "abc" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1315", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30cb84b3-a27b-4633-9f04-4bb924d5d854", + "x-ms-client-request-id": "fb9b526c0b3b9ebe6eaa9c4d208b9300", + "x-ms-correlation-request-id": "e41dd874-38f6-400a-a906-0b66e0e841e4", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "cbae89b4-02b1-4a10-8c0e-98791b77a6a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062504Z:e41dd874-38f6-400a-a906-0b66e0e841e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9906\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022c88e692e-4903-4f65-873a-ec9e4cea3404\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022e2e7075a-92f6-4587-a61f-46a2a89cd847\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91d4cd7635293f77dd8e8461969ef821", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e63c5c26-1ea2-4283-975d-c8d4346f102e", + "x-ms-client-request-id": "91d4cd7635293f77dd8e8461969ef821", + "x-ms-correlation-request-id": "590c86d5-3225-46b5-80e4-54ab4a223b86", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "c72ebac3-cddd-4dcc-92a8-dd12d2c5c693", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062505Z:590c86d5-3225-46b5-80e4-54ab4a223b86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bac6c5a6e970024ad6e2d3fc0f13b525", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b55074ec-d661-40ed-a9b1-acf0cd505c27", + "x-ms-client-request-id": "bac6c5a6e970024ad6e2d3fc0f13b525", + "x-ms-correlation-request-id": "7b4f8ea1-9802-4800-a15f-31f8a7200b6f", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "da9c334a-45d5-43a4-9740-c97d08196cfd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062506Z:7b4f8ea1-9802-4800-a15f-31f8a7200b6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53d7fb9702b7f5d74117a284e51b218a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e31e8a0-37c8-4198-87dc-27e6775f5129", + "x-ms-client-request-id": "53d7fb9702b7f5d74117a284e51b218a", + "x-ms-correlation-request-id": "8b73c7bd-64ce-4bc8-867b-faeeef5cec80", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "0705f7b8-644e-42fb-995e-ffc5024b09e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062507Z:8b73c7bd-64ce-4bc8-867b-faeeef5cec80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2404da4757828d2f83d1ba47627b2fc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77c4909e-ef24-4c3f-89ba-fe4a308254d4", + "x-ms-client-request-id": "2404da4757828d2f83d1ba47627b2fc9", + "x-ms-correlation-request-id": "60ad5e40-bed4-4317-9075-2df4b51d8fb8", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "d3ebfbbe-bb44-43aa-a0ba-5a842b7fe1a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062508Z:60ad5e40-bed4-4317-9075-2df4b51d8fb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ac95ed9a4c6a46aedd1785946c61dbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ceebbe5-4f9f-416a-9d8e-9db50a2a250e", + "x-ms-client-request-id": "9ac95ed9a4c6a46aedd1785946c61dbb", + "x-ms-correlation-request-id": "3600d167-1f32-4c96-8813-183d17318b08", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "0ad64fe6-b81d-4fd6-96c6-3c4ed6395402", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062510Z:3600d167-1f32-4c96-8813-183d17318b08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35b449c0900e40a3cb49d0e5479092c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "70c77e8f-6a9b-4701-9951-8953239e5999", + "x-ms-client-request-id": "35b449c0900e40a3cb49d0e5479092c6", + "x-ms-correlation-request-id": "f3ca8636-d392-4641-9753-8288c41ed06f", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "eafc50c7-92ee-4258-955e-98702f73f016", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062511Z:f3ca8636-d392-4641-9753-8288c41ed06f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86aad8e78651a2c36f5f36b1ded646bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "415770e0-41ed-4ee5-b393-8d5e6ca8e9f3", + "x-ms-client-request-id": "86aad8e78651a2c36f5f36b1ded646bc", + "x-ms-correlation-request-id": "a962b7a3-8cc9-431e-9e24-4b8630c273f1", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "ddb377e3-c957-4c4a-9e80-c16c62338f3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062512Z:a962b7a3-8cc9-431e-9e24-4b8630c273f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1986ffb4fac648babb88cf7cd4845c5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3821421f-d0e8-4ed9-8c7d-810c5e431de3", + "x-ms-client-request-id": "1986ffb4fac648babb88cf7cd4845c5d", + "x-ms-correlation-request-id": "5ab13966-f4c8-49b1-8944-3f5b96dd49ac", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "77fad340-dded-494c-952c-e69bdfbf38ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062514Z:5ab13966-f4c8-49b1-8944-3f5b96dd49ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e71b23e961b39698512c5af5af261f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4f13893-2c98-4bd0-9ad0-2aa54bf7b204", + "x-ms-client-request-id": "6e71b23e961b39698512c5af5af261f5", + "x-ms-correlation-request-id": "55b0b53f-e4e6-415f-b1b1-8ce458790bfa", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "a76db8c7-0bc2-4fc7-9ae4-4a17f3ff9f26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062515Z:55b0b53f-e4e6-415f-b1b1-8ce458790bfa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "483113037909edff1d61cbc9b746ceea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "faf0f29c-aac7-4d47-8d59-34b2f31d3176", + "x-ms-client-request-id": "483113037909edff1d61cbc9b746ceea", + "x-ms-correlation-request-id": "fdf95fbb-2dc8-4c2c-bd0f-2bff09f7f43d", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "2166e989-9374-4b31-9cb7-5200c5f7e7bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062516Z:fdf95fbb-2dc8-4c2c-bd0f-2bff09f7f43d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c72d803d8641da1954c93b4350beec8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f5efb73-1bde-4232-ae58-a3fa1ef47383", + "x-ms-client-request-id": "2c72d803d8641da1954c93b4350beec8", + "x-ms-correlation-request-id": "a40e34f9-63ef-4f27-b734-bf09a52741ca", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "624d5eaf-990a-45d1-ac25-f7b61be2cba4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062517Z:a40e34f9-63ef-4f27-b734-bf09a52741ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c179d9271453c554b28450bacba0823f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "834e2b90-2c9a-4284-8db7-2f2d8ee05905", + "x-ms-client-request-id": "c179d9271453c554b28450bacba0823f", + "x-ms-correlation-request-id": "9413b03b-3146-4ae5-b166-dcfa1f14f920", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "6e475fe4-e322-493d-afd6-0934c8289847", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062519Z:9413b03b-3146-4ae5-b166-dcfa1f14f920" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82acda4335802a907213b2bde54bb811", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "009459be-9b9e-42e1-8051-44e029a8ec3a", + "x-ms-client-request-id": "82acda4335802a907213b2bde54bb811", + "x-ms-correlation-request-id": "9f3ae1ac-76e2-465e-bc93-aa1a4e0fa28c", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "7ee17ae0-2161-4479-a0a9-04ab3aa2b92a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062520Z:9f3ae1ac-76e2-465e-bc93-aa1a4e0fa28c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dea102730dccee9784ac79df88e752f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3cf025d9-e2db-48b1-90bf-b6a2b1eecf33", + "x-ms-client-request-id": "dea102730dccee9784ac79df88e752f5", + "x-ms-correlation-request-id": "ddc1f418-81a3-4b02-a407-26d956833040", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "401fcce2-b688-4679-9421-dbbdce9d5d86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062521Z:ddc1f418-81a3-4b02-a407-26d956833040" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a7054ca6b5ff148484f4f406296e067", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26f8ff8d-2439-4a98-b1dc-f25c89997d04", + "x-ms-client-request-id": "5a7054ca6b5ff148484f4f406296e067", + "x-ms-correlation-request-id": "5ac8a7b5-99a3-4459-9879-d99dc33d9364", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "a16848b0-528c-4586-b9cc-93e08a03cce5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062523Z:5ac8a7b5-99a3-4459-9879-d99dc33d9364" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8463ecca3fe367243bdfdd3bcb0a18a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b37e72b-3875-46f0-a462-7fc343b17dc6", + "x-ms-client-request-id": "c8463ecca3fe367243bdfdd3bcb0a18a", + "x-ms-correlation-request-id": "3459bf74-1bd1-4896-8777-33dfa6352348", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "39921776-468d-4e8a-b657-051d9e78e86e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062524Z:3459bf74-1bd1-4896-8777-33dfa6352348" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90f3bdc05ddb07b2b9b0957dbe568ced", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6f7fdc3-47ff-4749-83c2-26c0e61934c1", + "x-ms-client-request-id": "90f3bdc05ddb07b2b9b0957dbe568ced", + "x-ms-correlation-request-id": "7662e1b9-1579-4271-ac09-4a2eaab7c815", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "5953248d-4b4c-423f-b500-ce809455551b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062525Z:7662e1b9-1579-4271-ac09-4a2eaab7c815" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a1312cc8aa026f6e23917a26d753598", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88a7ce64-87d1-4286-863d-04b8e3d6bbf9", + "x-ms-client-request-id": "4a1312cc8aa026f6e23917a26d753598", + "x-ms-correlation-request-id": "63ef989e-e3f8-46e6-9e0b-42b094bd175e", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "6590beff-eaad-4d14-af80-65c07ed0440e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062526Z:63ef989e-e3f8-46e6-9e0b-42b094bd175e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a57fc4ad4fa36f8b8c3e0e4e0ef478ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3191a292-d618-405c-9da8-3fad4fc57f62", + "x-ms-client-request-id": "a57fc4ad4fa36f8b8c3e0e4e0ef478ec", + "x-ms-correlation-request-id": "21e0a03f-e0c9-4ee4-9bc9-20cd974f66c2", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "a335a4fc-2798-4ae7-a26f-ba2b0be4020b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062528Z:21e0a03f-e0c9-4ee4-9bc9-20cd974f66c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9061031579d36eac6ccada1450f9944", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b1931e3-bc86-4d42-bf7e-47e3909c4890", + "x-ms-client-request-id": "a9061031579d36eac6ccada1450f9944", + "x-ms-correlation-request-id": "88ea37c6-5fb5-407a-a1ea-fd575bbf20e6", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "a67e4f1f-d01a-4b6c-8f9c-bd8ff6f1e641", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062529Z:88ea37c6-5fb5-407a-a1ea-fd575bbf20e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fad0fd7ae7d67d4a86a3bd627ba817ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59fffa3a-08b5-4a47-ba0a-e8c78fd1c513", + "x-ms-client-request-id": "fad0fd7ae7d67d4a86a3bd627ba817ee", + "x-ms-correlation-request-id": "c1588836-7f13-4eab-9729-00e83d9de33a", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "1a2b5a00-65cd-4afe-a83f-f9b7f7d659e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062530Z:c1588836-7f13-4eab-9729-00e83d9de33a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d712bc18b6f55fad949ded6a1ea297c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7801bbb0-fe4f-4f42-afcb-527a739fc988", + "x-ms-client-request-id": "5d712bc18b6f55fad949ded6a1ea297c", + "x-ms-correlation-request-id": "64e92a21-b595-4ddf-a24c-0c11e392145b", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "e6e96896-6713-49d2-9260-39e87ea590ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062532Z:64e92a21-b595-4ddf-a24c-0c11e392145b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11d3caa47e244915c58923f99a88ba1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "82786293-43f5-468c-9bd5-385999f2d922", + "x-ms-client-request-id": "11d3caa47e244915c58923f99a88ba1d", + "x-ms-correlation-request-id": "58f9df9c-6ebd-4ab9-a068-4368b7318b25", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "170ac1ac-5334-4cc2-b710-3d07c3b5b289", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062533Z:58f9df9c-6ebd-4ab9-a068-4368b7318b25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19dfbfb43c9eeed4027a208d0874db9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "959cf020-45d3-4071-98b9-2e5deb0317e0", + "x-ms-client-request-id": "19dfbfb43c9eeed4027a208d0874db9b", + "x-ms-correlation-request-id": "8bab95f6-380e-4b74-b1d4-eafb67e9c418", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "2f59cb88-9111-4f3c-b189-9eaa51b952ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062534Z:8bab95f6-380e-4b74-b1d4-eafb67e9c418" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/cbae89b4-02b1-4a10-8c0e-98791b77a6a6?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1bd417a06d443c9162798e66800bb51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a7ab13a9-b7ad-41c0-a8dc-83d5cd01ef67", + "x-ms-client-request-id": "b1bd417a06d443c9162798e66800bb51", + "x-ms-correlation-request-id": "43e480cc-f802-4d11-9a5c-94eeeccadb5f", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "59cc8452-eef2-45d2-aa33-f2a31c0687c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062536Z:43e480cc-f802-4d11-9a5c-94eeeccadb5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e221c18f0f0b68ddf5e50ea95e874151", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1352", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa81d97d-c79a-4da7-8288-aa3af61347a2", + "x-ms-client-request-id": "e221c18f0f0b68ddf5e50ea95e874151", + "x-ms-correlation-request-id": "b0e9e22b-fbf0-42a6-8bab-44518411c472", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "db01dfca-9845-46e4-9367-449e08f8c004", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062536Z:b0e9e22b-fbf0-42a6-8bab-44518411c472" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9906\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00220df6c6db-7ff6-49ad-ac77-5e47293eb2fc\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022e2e7075a-92f6-4587-a61f-46a2a89cd847\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "587f87ae08cbae49f69c0377a4ee8501", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1352", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "134c8a77-6975-41c6-a7be-cd2a6e3cad2b", + "x-ms-client-request-id": "587f87ae08cbae49f69c0377a4ee8501", + "x-ms-correlation-request-id": "1d51a4be-e45e-402c-bc90-f29db02b2299", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "3e9ed8f1-2dd0-467c-b68d-dbecea4b009d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062537Z:1d51a4be-e45e-402c-bc90-f29db02b2299" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9906\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00220df6c6db-7ff6-49ad-ac77-5e47293eb2fc\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022e2e7075a-92f6-4587-a61f-46a2a89cd847\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "1378", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47fdcebff9526a906454bbeff720e48e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet9714", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.0.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2716", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1833a875-15d3-4be3-aca3-721808576fe8", + "x-ms-client-request-id": "47fdcebff9526a906454bbeff720e48e", + "x-ms-correlation-request-id": "083c2901-225e-4103-b86d-c830d3c15af6", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "bbc6ad79-a233-4d40-a34a-de8c6299a609", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062540Z:083c2901-225e-4103-b86d-c830d3c15af6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8546\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022cd377f9a-1835-4e0f-abbf-c417a000f882\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022730d82d1-5137-4087-a29d-27a7c16f0bb6\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9714\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022cd377f9a-1835-4e0f-abbf-c417a000f882\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022OpenVPN\u0022,\r\n", + " \u0022IkeV2\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.151.17.77\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fe90c5ff98ab5fef715f4764d5ab6d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c714e7d1-39df-4853-a9ff-b47141662c29", + "x-ms-client-request-id": "8fe90c5ff98ab5fef715f4764d5ab6d5", + "x-ms-correlation-request-id": "941caa80-9d06-49b0-9895-d89e1a59b77b", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "e1f490e2-f64b-4aa2-8abf-7e78d35732bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062540Z:941caa80-9d06-49b0-9895-d89e1a59b77b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d9174b7a4b65c804877cfdf0d215dfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e42a39e-7969-4310-8b65-c94bc5ff03a3", + "x-ms-client-request-id": "5d9174b7a4b65c804877cfdf0d215dfd", + "x-ms-correlation-request-id": "5cb91a80-3a40-442c-a88a-78c7309a276a", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "e48ad723-967a-4e24-a3ee-6d28285380b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062542Z:5cb91a80-3a40-442c-a88a-78c7309a276a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea8fb5905536ec044882e96b6e10391d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ebfb108-ba25-4299-aa43-0405f4fc1113", + "x-ms-client-request-id": "ea8fb5905536ec044882e96b6e10391d", + "x-ms-correlation-request-id": "978423b8-9633-4afe-a522-411eb78a4e5e", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "fe4cc12c-bfc6-4c1c-b299-76cefb73ed5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062543Z:978423b8-9633-4afe-a522-411eb78a4e5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97b715bc67d4ba4f8c8c47132a1ea7d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9cdd94b5-648f-472b-b6fb-d50585c3802a", + "x-ms-client-request-id": "97b715bc67d4ba4f8c8c47132a1ea7d5", + "x-ms-correlation-request-id": "94d11102-8ad7-48fd-8c4d-279e8dd0fe0b", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "b7a438e9-7641-4546-baef-c19e7436161a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062544Z:94d11102-8ad7-48fd-8c4d-279e8dd0fe0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97e6f6b7ccca629f70a41433ba14ee37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52fc6e48-10c7-4e3f-9195-5ecd95b144a4", + "x-ms-client-request-id": "97e6f6b7ccca629f70a41433ba14ee37", + "x-ms-correlation-request-id": "b54506d3-a98d-46a5-a5e9-48c524cb85a7", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "069d6ce8-7e18-4f3c-a08c-5d42feb2a541", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062545Z:b54506d3-a98d-46a5-a5e9-48c524cb85a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f723b23dc56a282865d45ea90df1c22a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3712783-519a-4b33-876e-d4e9a7388a2f", + "x-ms-client-request-id": "f723b23dc56a282865d45ea90df1c22a", + "x-ms-correlation-request-id": "fb574ee6-ab9c-4656-9db7-f1fa3c0a8e3e", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "71dace60-089b-4302-b179-f9de65e4837f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062547Z:fb574ee6-ab9c-4656-9db7-f1fa3c0a8e3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77b413daa129ef5276542730531b0077", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92f826e5-184f-4a15-a536-69f89b5e8e8e", + "x-ms-client-request-id": "77b413daa129ef5276542730531b0077", + "x-ms-correlation-request-id": "d63bd292-f86d-403e-9a98-ab4a3dcc32a4", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "d8dfd770-dd47-47b3-b484-fa083075ad54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062548Z:d63bd292-f86d-403e-9a98-ab4a3dcc32a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78d50f9eb0faf16bcdbd32f66df6547f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0c5d695-3f1d-4028-b25f-355c6c8b4d75", + "x-ms-client-request-id": "78d50f9eb0faf16bcdbd32f66df6547f", + "x-ms-correlation-request-id": "105fe084-0f0d-4c92-a9b4-7027b9990ebe", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "2f430c59-8348-419e-86bb-40de3e498b39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062549Z:105fe084-0f0d-4c92-a9b4-7027b9990ebe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a659eae276609b0e5f3381159ef8d549", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a9d0911-330c-4249-8b48-b61988e1055d", + "x-ms-client-request-id": "a659eae276609b0e5f3381159ef8d549", + "x-ms-correlation-request-id": "9e927848-273f-4f9b-a5ea-6c7222182696", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "af350c82-27e4-47f5-88ae-34069205bbfa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062551Z:9e927848-273f-4f9b-a5ea-6c7222182696" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe0ae6d4491b2a2fa8c2aa6b6f5c817f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76ad2a32-b0fa-4aa9-a289-e945828a5361", + "x-ms-client-request-id": "fe0ae6d4491b2a2fa8c2aa6b6f5c817f", + "x-ms-correlation-request-id": "d9165875-325c-423e-b3d7-410a25b41660", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "29d1f14e-0220-4a1f-a083-2bb23db65cc0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062552Z:d9165875-325c-423e-b3d7-410a25b41660" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "684da7ff59c22716013919c62f5552d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3445c35c-f6a7-4207-9298-631aa7976b92", + "x-ms-client-request-id": "684da7ff59c22716013919c62f5552d4", + "x-ms-correlation-request-id": "44773ec2-3b9b-43e2-b937-bc53b1894b7b", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "c162b7c1-d283-449f-8f57-c80cae4e5508", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062553Z:44773ec2-3b9b-43e2-b937-bc53b1894b7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8721e9e856eb9864bb2efe9ecca22c02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b64f40fb-3d1c-498c-ab72-8ff649e18e39", + "x-ms-client-request-id": "8721e9e856eb9864bb2efe9ecca22c02", + "x-ms-correlation-request-id": "0ad2731c-8d71-4294-bc65-48803880b1e6", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "9a5872fc-723b-4698-8d89-2774e1f6e29a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062555Z:0ad2731c-8d71-4294-bc65-48803880b1e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f71601b16cab7b86cfe3fce13068fa52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e1f8b00e-6066-414d-9584-f41de30f65cb", + "x-ms-client-request-id": "f71601b16cab7b86cfe3fce13068fa52", + "x-ms-correlation-request-id": "7e256d97-11a5-47b1-901a-e94bc2fe5c03", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "3279cf4d-2fb4-457e-bd2f-895f553bd719", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062556Z:7e256d97-11a5-47b1-901a-e94bc2fe5c03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8583d56ffa3aa99443b4ad935a785b5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8138cb08-7eec-4321-8c96-43e68b18e74e", + "x-ms-client-request-id": "8583d56ffa3aa99443b4ad935a785b5e", + "x-ms-correlation-request-id": "bb3c8c76-d457-4ba5-8fed-a99049a6f327", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "fbfc03e8-561a-409f-9984-deea0f1b1784", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062557Z:bb3c8c76-d457-4ba5-8fed-a99049a6f327" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e14160d5b3f7c2962a6b70859826852", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad755e48-9e60-40d3-9da8-13d88e4c9ad9", + "x-ms-client-request-id": "2e14160d5b3f7c2962a6b70859826852", + "x-ms-correlation-request-id": "baa31eee-fc79-4ad9-9775-3396df4bc0cf", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "986d9a95-0eb1-4d96-8b6c-d09c7768eb4c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062559Z:baa31eee-fc79-4ad9-9775-3396df4bc0cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f62fab34a71fb7c76c6db4f6bef22057", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:25:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f8b60ce-b25f-4caf-a69d-f1d299faec62", + "x-ms-client-request-id": "f62fab34a71fb7c76c6db4f6bef22057", + "x-ms-correlation-request-id": "02b28ce2-4588-4f60-b74f-044654840de1", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "a3760175-7775-434d-bbcb-760ea632ad26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062600Z:02b28ce2-4588-4f60-b74f-044654840de1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ad49e88cc531313ac072294428c4fc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6a28eba-5b9a-4f97-a812-86760fc9cf2d", + "x-ms-client-request-id": "1ad49e88cc531313ac072294428c4fc0", + "x-ms-correlation-request-id": "5293dbdd-413c-4827-86bd-c65dfcdd74ca", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "7c98521b-b471-418a-bf8d-a2ab695386d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062601Z:5293dbdd-413c-4827-86bd-c65dfcdd74ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af5f5b4c6449663f4e5dc1d2a732bd70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "781965b8-9419-45db-bbb1-a5d48fe70058", + "x-ms-client-request-id": "af5f5b4c6449663f4e5dc1d2a732bd70", + "x-ms-correlation-request-id": "0d7f1ef7-cdca-4897-90e8-44be5d2c09d0", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "0380ba40-90d6-45bf-b079-455c4f8921dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062602Z:0d7f1ef7-cdca-4897-90e8-44be5d2c09d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb7f60864dae68ff971b4a18843374e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04cc7c83-0718-4143-9d9a-8fcdb4c723d3", + "x-ms-client-request-id": "bb7f60864dae68ff971b4a18843374e0", + "x-ms-correlation-request-id": "4c2d18f4-9128-4ca7-92be-8dc8de9c0931", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "050bd9b9-aad4-4ea4-a056-b529fd4dbfee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062604Z:4c2d18f4-9128-4ca7-92be-8dc8de9c0931" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63aaf31d7193230d5e6ecbf60a416c79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd161be3-1dec-459c-a313-4edefbfedfdd", + "x-ms-client-request-id": "63aaf31d7193230d5e6ecbf60a416c79", + "x-ms-correlation-request-id": "2b28e3c7-0b80-49e1-987e-487a47da1d59", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "4449819a-eeca-463b-8ca8-56229f900942", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062605Z:2b28e3c7-0b80-49e1-987e-487a47da1d59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e20db24a940cfe115bf7172e1927e21a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a3d4903-9fb1-4665-8b8d-30b4f7e5e077", + "x-ms-client-request-id": "e20db24a940cfe115bf7172e1927e21a", + "x-ms-correlation-request-id": "e4d2c689-0116-46db-9c52-b270a9389681", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "3c889373-20fa-4f8b-972a-fdcad79ed6e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062606Z:e4d2c689-0116-46db-9c52-b270a9389681" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3b4e1e8598715dd535c5c4081085e56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b017fe5-cbe6-4a4f-bc44-097db3b2bcc3", + "x-ms-client-request-id": "b3b4e1e8598715dd535c5c4081085e56", + "x-ms-correlation-request-id": "a476df56-99d1-468b-ad69-fd94c78c3d1c", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "c9ebb308-340d-421f-bb62-4f79e6c08ccd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062608Z:a476df56-99d1-468b-ad69-fd94c78c3d1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1ced0ae922589d4e1ab079c59df0a37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d31a413f-d5d3-43fe-b0e1-47b75226aa55", + "x-ms-client-request-id": "d1ced0ae922589d4e1ab079c59df0a37", + "x-ms-correlation-request-id": "0aad9a08-bc53-4110-a449-75bbaf6cf410", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "6dbcdee2-69d3-48db-a863-124468517ef8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062609Z:0aad9a08-bc53-4110-a449-75bbaf6cf410" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "280db08cb98cf0f1d5f88eb037d17c53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c847029-b7a4-47a1-8aeb-6a478b0c896e", + "x-ms-client-request-id": "280db08cb98cf0f1d5f88eb037d17c53", + "x-ms-correlation-request-id": "b9535079-4288-432d-b121-18426bf79c88", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "a1f2c444-e791-48fb-8185-c6aa4c59362b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062610Z:b9535079-4288-432d-b121-18426bf79c88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4880c098105856f50d2bd1dc5141bb74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bf0934b-03f6-4835-a4d5-9e5d1f5b3290", + "x-ms-client-request-id": "4880c098105856f50d2bd1dc5141bb74", + "x-ms-correlation-request-id": "02e08949-9719-473f-8773-21d25793ce70", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "6f9fcd9e-02cc-4be7-bdea-c37d01204be0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062611Z:02e08949-9719-473f-8773-21d25793ce70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0b4245135fbf5cadeddfb2d03235110", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a78618b5-bb37-42ae-8ad0-06535b1ebfbf", + "x-ms-client-request-id": "d0b4245135fbf5cadeddfb2d03235110", + "x-ms-correlation-request-id": "a5b26f01-e9ce-4b04-9176-7097be18b427", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "6510163d-cc65-48e9-a12e-df99ed0cfc5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062613Z:a5b26f01-e9ce-4b04-9176-7097be18b427" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9903b42fc15f7bdebbb61b61e7159f94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f567e3d-b4fb-4b67-82d6-d05dcac09c38", + "x-ms-client-request-id": "9903b42fc15f7bdebbb61b61e7159f94", + "x-ms-correlation-request-id": "755ecb75-9a11-4d23-916b-1c9b63e6010d", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "11259dba-45bf-4d06-808b-c7006ce08ff0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062614Z:755ecb75-9a11-4d23-916b-1c9b63e6010d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "125e1a3dab1d6357f68a697b14c753e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df4fab29-5a2d-4310-b1f2-97d8c9510a31", + "x-ms-client-request-id": "125e1a3dab1d6357f68a697b14c753e9", + "x-ms-correlation-request-id": "87f2bf95-71de-42bf-9e26-e77cef73260f", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "7cbef2a2-45fb-411c-ae92-f27d4352abc4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062615Z:87f2bf95-71de-42bf-9e26-e77cef73260f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cacc1d9223d8f15463814441a680dc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47bad842-1e77-4a59-85c6-76d4737c0429", + "x-ms-client-request-id": "9cacc1d9223d8f15463814441a680dc9", + "x-ms-correlation-request-id": "c41a2554-30a8-4bd1-bcbd-e17c46395e44", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "261ddfd8-6eff-421d-96e3-eeedd0c96255", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062617Z:c41a2554-30a8-4bd1-bcbd-e17c46395e44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8f0673d3ec583f25d9fa2d4586366f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50d358eb-51f3-486b-8bec-bf2cb78f24b6", + "x-ms-client-request-id": "e8f0673d3ec583f25d9fa2d4586366f4", + "x-ms-correlation-request-id": "c6f41298-7884-4f58-836a-791c0d042ca2", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "88e3d8fa-d189-4ce1-8e61-3566c387ada5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062618Z:c6f41298-7884-4f58-836a-791c0d042ca2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2587316303681a5605cecce49612488d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92f943c3-e729-4109-ab65-0041bf0cc444", + "x-ms-client-request-id": "2587316303681a5605cecce49612488d", + "x-ms-correlation-request-id": "daf3d6d5-3de7-439a-bedb-11ee48848acc", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "798c838b-df5d-4e45-b664-8771ac0cfbee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062619Z:daf3d6d5-3de7-439a-bedb-11ee48848acc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad3da07c6ad79b24ce293f9d7f4037e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0bfb4490-cac6-44b2-abc9-c40267967c46", + "x-ms-client-request-id": "ad3da07c6ad79b24ce293f9d7f4037e3", + "x-ms-correlation-request-id": "7f26b720-a2c7-4e75-8ab4-3263bacc67f3", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "a841704c-7f5c-4fc4-9db6-f8d4f966b578", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062620Z:7f26b720-a2c7-4e75-8ab4-3263bacc67f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8e120d2e8e13a6010d5e2f6710eec4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "159b3edb-a56d-4f93-bb06-1329f781703e", + "x-ms-client-request-id": "e8e120d2e8e13a6010d5e2f6710eec4a", + "x-ms-correlation-request-id": "e239c93a-da01-4470-9f0c-edaf98e3fadb", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "14ab5e97-d129-455b-8add-5ba4bc5e9c67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062622Z:e239c93a-da01-4470-9f0c-edaf98e3fadb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7571456b925f91c0cec563fc3b89ac4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57a1a8da-d2d4-4cda-b6f0-3a44d41a9855", + "x-ms-client-request-id": "b7571456b925f91c0cec563fc3b89ac4", + "x-ms-correlation-request-id": "49386f50-7aa0-40ef-ab4d-15603980c02d", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "07ef435f-7dca-4266-b33b-6d0e2d432c68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062623Z:49386f50-7aa0-40ef-ab4d-15603980c02d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7512e997603194ac40029d01872e29c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fccdaa8a-c4bb-4cca-927d-387e71f7e641", + "x-ms-client-request-id": "7512e997603194ac40029d01872e29c0", + "x-ms-correlation-request-id": "da1734b4-6451-4670-a8e2-999fc56a675c", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "c5d41b2b-5686-4c0f-8cdb-8f0a4de1fdbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062624Z:da1734b4-6451-4670-a8e2-999fc56a675c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b46f43c80e919bd04e8dbf491207657", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4779940c-c7ed-45a3-9d25-65626da9d2b8", + "x-ms-client-request-id": "6b46f43c80e919bd04e8dbf491207657", + "x-ms-correlation-request-id": "65345e10-16c7-4b61-bcc5-c204eb3f214e", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "61385b58-2620-4541-9ee4-12b5e7ef982a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062625Z:65345e10-16c7-4b61-bcc5-c204eb3f214e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "885e1d3a76fcf61968c277221b1a71de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00f76586-d2ca-41b4-a9f5-e7b9b206f708", + "x-ms-client-request-id": "885e1d3a76fcf61968c277221b1a71de", + "x-ms-correlation-request-id": "fbbb2885-183d-408d-bc3e-a8c95d90908c", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "6ae5d87c-26b9-40fa-91e0-512628ce1805", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062627Z:fbbb2885-183d-408d-bc3e-a8c95d90908c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf0296c32f7217db2bf9714884b7031f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55227a91-9611-4653-abfd-075c48914cfd", + "x-ms-client-request-id": "cf0296c32f7217db2bf9714884b7031f", + "x-ms-correlation-request-id": "1cf43e04-ec1d-4c15-b171-bea44634490c", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "4c9c2d11-7d5c-41de-8a84-b2cae089e26f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062629Z:1cf43e04-ec1d-4c15-b171-bea44634490c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ac7458ca1cfc6c3da500227099bfde9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a40568ba-4363-4334-b131-e8079b469313", + "x-ms-client-request-id": "6ac7458ca1cfc6c3da500227099bfde9", + "x-ms-correlation-request-id": "6778476d-b073-465e-a3ee-a7cb843a25a4", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "071f4817-9115-4f44-9279-a636d9a3b2a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062630Z:6778476d-b073-465e-a3ee-a7cb843a25a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa31fd76a71d0be542475c0305d072b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e452b8f-3544-4598-836c-560b897880d2", + "x-ms-client-request-id": "fa31fd76a71d0be542475c0305d072b0", + "x-ms-correlation-request-id": "5a04d95a-16cc-46d3-bfb5-07448e88cde4", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "e8f154d7-62ba-4a05-b6ed-981c96371514", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062631Z:5a04d95a-16cc-46d3-bfb5-07448e88cde4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d59657bf0753220ed33cf5212cb30d90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a84af793-837f-46e0-91a8-68db50f62067", + "x-ms-client-request-id": "d59657bf0753220ed33cf5212cb30d90", + "x-ms-correlation-request-id": "a64eecaa-b116-4159-880a-8918a8b90f47", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "071de713-23ac-4e25-b4e0-f1c8d9bb02e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062632Z:a64eecaa-b116-4159-880a-8918a8b90f47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86d288fb0885e40160bb278844bfc109", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae685b0a-00d1-4282-8497-6fec611ecc53", + "x-ms-client-request-id": "86d288fb0885e40160bb278844bfc109", + "x-ms-correlation-request-id": "4b3cee16-926f-4e42-b526-6f1ffdb95f0e", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "0a129fb8-f785-4546-bbe8-c6c5b5451714", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062634Z:4b3cee16-926f-4e42-b526-6f1ffdb95f0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b16751dd27046f96ef0f27e1b1c3de8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "24657c08-6163-4651-afc6-c5f81d1c0d04", + "x-ms-client-request-id": "b16751dd27046f96ef0f27e1b1c3de8e", + "x-ms-correlation-request-id": "a02ecac9-821f-4864-8dd5-c5af77328058", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "788438bf-69ac-4338-85ab-7717dd6ec3ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062635Z:a02ecac9-821f-4864-8dd5-c5af77328058" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d07cb39ebfeb72b55b17597df86dd13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09b761da-b5c0-4f47-b9de-3f86f4c2217f", + "x-ms-client-request-id": "7d07cb39ebfeb72b55b17597df86dd13", + "x-ms-correlation-request-id": "49a141c5-fdd6-483c-a34d-91f719e3b1b9", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "563d45f4-9768-4db4-934b-0e3cee9a88f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062636Z:49a141c5-fdd6-483c-a34d-91f719e3b1b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db43eb7b5c4bd48bf1629775e120339d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1061c60f-341f-467c-9ca0-d37c93b140cd", + "x-ms-client-request-id": "db43eb7b5c4bd48bf1629775e120339d", + "x-ms-correlation-request-id": "857956d6-546b-4dfc-9d52-44aebb30b9bb", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "65c9a69b-7e06-466f-806d-c5e9f94cbf27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062638Z:857956d6-546b-4dfc-9d52-44aebb30b9bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "794e98dd43b8f20a26b05c53b1fe8f68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40b53381-efef-4276-a37b-6bc8668a2d10", + "x-ms-client-request-id": "794e98dd43b8f20a26b05c53b1fe8f68", + "x-ms-correlation-request-id": "2e47247b-34b9-4817-a870-6a6e46868a46", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "dadcbde9-ba5b-4ec2-8c32-0cb412701ebc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062639Z:2e47247b-34b9-4817-a870-6a6e46868a46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6651332037fdd423f338b9c53b5d534", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33a133a2-c333-46dc-bec7-8dd552936372", + "x-ms-client-request-id": "c6651332037fdd423f338b9c53b5d534", + "x-ms-correlation-request-id": "fafebb67-8f84-4847-b2cd-abdb97bc6bd9", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "c9c1a143-50fc-4180-806f-2b44bdba201a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062640Z:fafebb67-8f84-4847-b2cd-abdb97bc6bd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47b9d87e6437375be051b49aff3822f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4e58c64-3c81-41ab-99d2-b466c5ecee52", + "x-ms-client-request-id": "47b9d87e6437375be051b49aff3822f3", + "x-ms-correlation-request-id": "17d912f9-a3e6-4a77-a0fd-e1df206c86c0", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "eed83903-8b51-44df-9a46-6e71478fbbf8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062641Z:17d912f9-a3e6-4a77-a0fd-e1df206c86c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd432fd26dbbda1d55703984b86e9f71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a079fe1-cbe9-4f3e-9cb7-97e29ca6f09a", + "x-ms-client-request-id": "cd432fd26dbbda1d55703984b86e9f71", + "x-ms-correlation-request-id": "94c981f5-8315-440a-a050-32467143547f", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "04687cdf-d830-4713-af58-020de5335686", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062643Z:94c981f5-8315-440a-a050-32467143547f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9d527da4844ce31b82de52e4fa7dd07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8dea0a8-aa15-480e-b201-df9943e15194", + "x-ms-client-request-id": "d9d527da4844ce31b82de52e4fa7dd07", + "x-ms-correlation-request-id": "cffe02de-0069-4c10-afa3-8c2c1038a7dc", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "fea41948-0d99-4b28-8be0-ff4fb4f8375e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062644Z:cffe02de-0069-4c10-afa3-8c2c1038a7dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24c9971108711179bbdff1c62ad67e72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2637c14a-c207-4137-a132-a085135cd542", + "x-ms-client-request-id": "24c9971108711179bbdff1c62ad67e72", + "x-ms-correlation-request-id": "94059c09-a092-4bd7-8cfd-57303ed083ca", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "31e5f51b-7cf4-481b-8934-5858bf3b1e1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062645Z:94059c09-a092-4bd7-8cfd-57303ed083ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7c042b2486389aefd75148d88ee8bad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "42eada11-7780-42d5-82d2-be20e7df793e", + "x-ms-client-request-id": "d7c042b2486389aefd75148d88ee8bad", + "x-ms-correlation-request-id": "e9fc1f85-f220-435a-b876-b7b73502a01f", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "3103c6bc-6744-4057-aa49-e9ef02c617ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062647Z:e9fc1f85-f220-435a-b876-b7b73502a01f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "217332937aa4d200aec31e65576aa3e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7da0c6fa-e853-4322-b2d0-f175639cfe27", + "x-ms-client-request-id": "217332937aa4d200aec31e65576aa3e1", + "x-ms-correlation-request-id": "2e43f85c-2968-46ce-a321-568b10427527", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "2afabe55-8494-4f86-a07c-37cb96fcccd7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062648Z:2e43f85c-2968-46ce-a321-568b10427527" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c7c72ae06e7c8a3e84026fcf3eb89cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fbb7eb58-8fbd-4700-b2b6-c08d3fdd5a66", + "x-ms-client-request-id": "0c7c72ae06e7c8a3e84026fcf3eb89cc", + "x-ms-correlation-request-id": "2f3e45c3-aa92-4dc1-8366-8831be59a5de", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "ba3a3acc-9729-4545-950c-d3e0cca0a2d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062649Z:2f3e45c3-aa92-4dc1-8366-8831be59a5de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f83343535d6337cd42ed289f2a493293", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8fa3c90a-9dcc-4455-9cf1-192c0cddddb8", + "x-ms-client-request-id": "f83343535d6337cd42ed289f2a493293", + "x-ms-correlation-request-id": "ecd2b49c-2f69-4331-8da7-7cf5bc35239f", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "2c61c1ce-fc29-4a1e-a480-e76978ce490b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062650Z:ecd2b49c-2f69-4331-8da7-7cf5bc35239f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15de33d17e728cc58eab38645404dec3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e151c3c3-974e-4385-a1c9-2a4697141d4b", + "x-ms-client-request-id": "15de33d17e728cc58eab38645404dec3", + "x-ms-correlation-request-id": "4dd367b4-94b7-4c02-a9a7-187cadb08953", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "c664baa9-e025-4420-83fb-3bcee905c2bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062652Z:4dd367b4-94b7-4c02-a9a7-187cadb08953" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1311523aab36517da544cafadd049d9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61b4eb41-445b-4de5-bd11-03c406263106", + "x-ms-client-request-id": "1311523aab36517da544cafadd049d9f", + "x-ms-correlation-request-id": "0a909c68-f170-41ff-86e5-913fa42463a8", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "798ee875-64f0-425a-962c-e11f8b10ecee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062653Z:0a909c68-f170-41ff-86e5-913fa42463a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c02a920d730cd4597da669b82568e33d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ec10512-46c1-421f-b5ae-122eeaf1d309", + "x-ms-client-request-id": "c02a920d730cd4597da669b82568e33d", + "x-ms-correlation-request-id": "922c9098-da17-4644-92e4-0c3aec8c0d6e", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "254fe6ed-24f7-4b25-a2e3-89fe55bd71c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062654Z:922c9098-da17-4644-92e4-0c3aec8c0d6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d864650f1e37265db58d702db4cbaf8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3915d1a-081a-490d-b583-cdaa8c34d64e", + "x-ms-client-request-id": "d864650f1e37265db58d702db4cbaf8a", + "x-ms-correlation-request-id": "c0cc9112-baca-4fd1-938a-ab9ff6e82c2a", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "2b60b6e7-9e06-4f44-b67c-16e8f041717e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062656Z:c0cc9112-baca-4fd1-938a-ab9ff6e82c2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c156980d1dd9c6b6f83d968f42c52b3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a3f1144-1884-4655-8537-547f0de8d0e0", + "x-ms-client-request-id": "c156980d1dd9c6b6f83d968f42c52b3c", + "x-ms-correlation-request-id": "f237f91d-c69b-4771-895c-652a8c052d2e", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "f3ec3e44-b724-4274-81d8-753e936828a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062657Z:f237f91d-c69b-4771-895c-652a8c052d2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77ea8c61c59fef6835040a7e032b20b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf95b716-4058-42cb-874c-b955c89ff64b", + "x-ms-client-request-id": "77ea8c61c59fef6835040a7e032b20b1", + "x-ms-correlation-request-id": "8514345d-ac66-4b3a-b0f9-c677304dc09e", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "016698fe-d09b-440b-84ce-042001ab13d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062658Z:8514345d-ac66-4b3a-b0f9-c677304dc09e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8daadef72112f164ae9ddffa87cee4ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:26:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a8e0798-292e-42ab-8282-8b1d2b4de491", + "x-ms-client-request-id": "8daadef72112f164ae9ddffa87cee4ef", + "x-ms-correlation-request-id": "1cc6e9bc-52a9-4e4d-b522-b4df195b01b5", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "6ba53041-f69a-4f6a-89ef-3c60ec2cd90a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062659Z:1cc6e9bc-52a9-4e4d-b522-b4df195b01b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27cc336237e148eb30668cd51238c2cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "904ecca1-ba9e-463d-90be-5f1efb92a7d1", + "x-ms-client-request-id": "27cc336237e148eb30668cd51238c2cc", + "x-ms-correlation-request-id": "7f20d171-6569-474e-b8c3-9b085b683e53", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "4bec7e82-a757-45f9-9487-a70b1ce60d90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062701Z:7f20d171-6569-474e-b8c3-9b085b683e53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6398e41c9e1b3f2928f8c901e66e6766", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af821afd-bdca-452b-b5cb-db0b76f77d54", + "x-ms-client-request-id": "6398e41c9e1b3f2928f8c901e66e6766", + "x-ms-correlation-request-id": "80367d5a-0664-48d2-901b-80fe140393d5", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "6dcb114d-8825-4065-ba6c-65aef9b3b7e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062702Z:80367d5a-0664-48d2-901b-80fe140393d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d01c1b20f95fbfd0f3625dab958ede76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94e5ae4f-94cd-46ee-a0a5-f26057d82652", + "x-ms-client-request-id": "d01c1b20f95fbfd0f3625dab958ede76", + "x-ms-correlation-request-id": "4168459a-ec98-4637-82c8-7cf6098092b1", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "79e8390d-97c2-414c-a177-af161104e655", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062703Z:4168459a-ec98-4637-82c8-7cf6098092b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3dd12da8036c3d4098cffe86eea62c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85b2ab96-89fd-4501-a23d-1e3121356593", + "x-ms-client-request-id": "a3dd12da8036c3d4098cffe86eea62c1", + "x-ms-correlation-request-id": "9d2c50fa-545c-4bb4-b6dd-71bfe2916fc8", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "94c3ca5d-28af-4c95-9305-9bc1aeb19251", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062705Z:9d2c50fa-545c-4bb4-b6dd-71bfe2916fc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7b525fff21b236d13d86fb9417ea999", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4c43f6b-a585-43bd-976c-993a66e983de", + "x-ms-client-request-id": "f7b525fff21b236d13d86fb9417ea999", + "x-ms-correlation-request-id": "5d93ad44-df2e-4199-a981-0321bc10102f", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "6d1f8260-e80b-4ce7-981f-43976fedd4a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062706Z:5d93ad44-df2e-4199-a981-0321bc10102f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3265219c4909f304759c6d2f9e85009", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3cc9785b-8ffa-4c9c-8da4-dfc9052e3222", + "x-ms-client-request-id": "d3265219c4909f304759c6d2f9e85009", + "x-ms-correlation-request-id": "2704e53b-b466-4872-b5dc-013c07244359", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "86cf4e1c-5f94-46b4-95e3-1ded802fade7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062707Z:2704e53b-b466-4872-b5dc-013c07244359" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70ac9b00e7d9e85ba5ba8f5d101a818b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aeb85771-54f4-412d-a8db-5c6b5ec2da68", + "x-ms-client-request-id": "70ac9b00e7d9e85ba5ba8f5d101a818b", + "x-ms-correlation-request-id": "69bb85e3-2406-4b6c-8e51-d4a3ccbc5d6f", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "c5eef9f0-e1b9-4e08-9514-5b366cdfeb37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062708Z:69bb85e3-2406-4b6c-8e51-d4a3ccbc5d6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cce65e38ec33a31f415b0c22c9a292b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92dce1c8-d0f7-47b6-a3e8-364c291dda18", + "x-ms-client-request-id": "1cce65e38ec33a31f415b0c22c9a292b", + "x-ms-correlation-request-id": "324f6fee-d937-478a-832c-9f33ae83f4f2", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "89445598-897d-4f16-a787-e8afccc10065", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062710Z:324f6fee-d937-478a-832c-9f33ae83f4f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6b9668839d132bff73e2ed534d38e2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a7b192b-96dd-4abb-bed4-04ba471745a7", + "x-ms-client-request-id": "a6b9668839d132bff73e2ed534d38e2c", + "x-ms-correlation-request-id": "9dd4de1c-f65d-4682-a4df-59c4fde14a9b", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "ff00e087-74d6-4b70-b389-21ee08594328", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062711Z:9dd4de1c-f65d-4682-a4df-59c4fde14a9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94ef3ad73419714569717bc43698bb0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a6710f7-c0b9-4715-ac84-9a26dbd288d2", + "x-ms-client-request-id": "94ef3ad73419714569717bc43698bb0a", + "x-ms-correlation-request-id": "cc33c585-a1aa-490c-804f-38f45fa1ef79", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "d3d18a68-f758-4d56-b04f-068297e433d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062712Z:cc33c585-a1aa-490c-804f-38f45fa1ef79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9d46490db61a9b9a69c2485605b0621", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "41e825a9-d075-47b7-bee7-c5de32d599c6", + "x-ms-client-request-id": "a9d46490db61a9b9a69c2485605b0621", + "x-ms-correlation-request-id": "b9d5fa6f-20d4-4be6-a514-039bb95204a6", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "957007e2-6160-4c40-a9eb-2c7dc0d0bc2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062714Z:b9d5fa6f-20d4-4be6-a514-039bb95204a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2ea848695ab541221473c60befbfb5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94cfe31e-5dc3-4e91-bc23-aee506a15850", + "x-ms-client-request-id": "f2ea848695ab541221473c60befbfb5e", + "x-ms-correlation-request-id": "0818df12-f3d0-466d-88d3-60666dfb30a4", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "87c912bf-94d9-4f66-9d69-10f054ecd7fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062715Z:0818df12-f3d0-466d-88d3-60666dfb30a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf452383e4fffbcb8045ee7c0fbf110d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06e39b86-00c6-44d9-8968-43bb4859ffb3", + "x-ms-client-request-id": "cf452383e4fffbcb8045ee7c0fbf110d", + "x-ms-correlation-request-id": "78492b4f-08c3-4c41-83e1-c643599c92f7", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "f1a72f1a-eeb3-4f55-b724-40e6637d962b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062717Z:78492b4f-08c3-4c41-83e1-c643599c92f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b23d5a6bc8adfb5f518088199e59ebab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a70a1318-b639-4b50-ac1c-91a202b565a9", + "x-ms-client-request-id": "b23d5a6bc8adfb5f518088199e59ebab", + "x-ms-correlation-request-id": "29938fda-8bb5-4c7e-b5e1-bbd35196385a", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "8cae3b45-c4fc-4059-9dd6-38120cc92d06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062718Z:29938fda-8bb5-4c7e-b5e1-bbd35196385a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d02c5a03616a122b8ef7165a7954561", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68f82575-08eb-4155-a6db-c09b9825f703", + "x-ms-client-request-id": "3d02c5a03616a122b8ef7165a7954561", + "x-ms-correlation-request-id": "503090c7-8876-461b-aa9b-41fef563ed1d", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "51a4525e-ca3d-4512-9735-4ec3514c4845", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062719Z:503090c7-8876-461b-aa9b-41fef563ed1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63f52e3649bdbab0c3497e7e5cb15c27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bccf8ed-5d03-4966-932a-f1c7e5edd828", + "x-ms-client-request-id": "63f52e3649bdbab0c3497e7e5cb15c27", + "x-ms-correlation-request-id": "43b33100-e584-464e-b0cf-ff0a7cbe5540", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "18dc3a11-d8d6-461d-a881-0d8a4f4396a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062720Z:43b33100-e584-464e-b0cf-ff0a7cbe5540" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49db435ad4bd34f7389bf9be57fa54bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a54aa66c-8d74-4343-a14c-b4d524c8d19a", + "x-ms-client-request-id": "49db435ad4bd34f7389bf9be57fa54bc", + "x-ms-correlation-request-id": "1cd26ef0-20a2-4629-9d33-8fbdb912eaef", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "d5c4ab38-73ec-4dbc-bc42-bdf5866331ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062722Z:1cd26ef0-20a2-4629-9d33-8fbdb912eaef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fe3263b876457ed154779ccb8a34507", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bc9a1e7-bf12-4b1b-901c-e0ae8093aa0f", + "x-ms-client-request-id": "6fe3263b876457ed154779ccb8a34507", + "x-ms-correlation-request-id": "876bcbc4-e8a0-4e2f-8b1a-ee1f5bd5577f", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "61431b1b-6498-4b7a-8f76-5345576676cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062723Z:876bcbc4-e8a0-4e2f-8b1a-ee1f5bd5577f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbc6ad79-a233-4d40-a34a-de8c6299a609?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "640a4a92fbb962a437c02b214ff263c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f0b5797-5c7e-499f-9fee-9dee152528a0", + "x-ms-client-request-id": "640a4a92fbb962a437c02b214ff263c9", + "x-ms-correlation-request-id": "19750f0d-9754-40fa-b76f-5aed733afd93", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "d2ae067c-ff9d-4091-b3a4-66c80155cfd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062724Z:19750f0d-9754-40fa-b76f-5aed733afd93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3543c1f4edced2c3558434755a2a7c95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2415", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eee29e3a-046f-487e-aeac-954bb921175f", + "x-ms-client-request-id": "3543c1f4edced2c3558434755a2a7c95", + "x-ms-correlation-request-id": "301e2f20-5ca2-4fe9-a394-f88cece70a08", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "6ec4b38c-89db-48e1-9b2c-37d434c3d60c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062725Z:301e2f20-5ca2-4fe9-a394-f88cece70a08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8546\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022615faf55-1931-4985-a280-e6b7f2cb4690\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022730d82d1-5137-4087-a29d-27a7c16f0bb6\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9714\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022615faf55-1931-4985-a280-e6b7f2cb4690\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.151.17.77\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d2cf256f0ef3f02828038a35ccc0823", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2415", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef5e3455-fbbf-437f-8954-6fd5b58cf9df", + "x-ms-client-request-id": "0d2cf256f0ef3f02828038a35ccc0823", + "x-ms-correlation-request-id": "451534d2-a4ed-473d-82ad-84e2fd00474e", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "9be1082a-8233-4100-8d3f-6e0da5c803d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062725Z:451534d2-a4ed-473d-82ad-84e2fd00474e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet8546\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022615faf55-1931-4985-a280-e6b7f2cb4690\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022730d82d1-5137-4087-a29d-27a7c16f0bb6\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9714\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022615faf55-1931-4985-a280-e6b7f2cb4690\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.151.17.77\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "1841", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6d7b0e40f5fa53986380e35c72e070d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "virtualNetworkGateway1": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet9714", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworks/azsmnet4208/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/publicIPAddresses/azsmnet8600" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.0.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546/ipConfigurations/azsmnet9714", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "localNetworkGateway2": { + "location": "westus2", + "tags": { + "test": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709", + "properties": { + "localNetworkAddressSpace": { + "addressPrefixes": [ + "192.168.0.0/16" + ] + }, + "gatewayIpAddress": "192.168.3.4" + } + }, + "connectionType": "IPsec", + "routingWeight": 4, + "sharedKey": "abc" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1315", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8df5bb2-6407-4609-bf56-3f653f0b121c", + "x-ms-client-request-id": "f6d7b0e40f5fa53986380e35c72e070d", + "x-ms-correlation-request-id": "c82ce719-9789-4d07-a65b-dadc37785e05", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "ff034f72-aeb7-4239-9728-9ac4c9ccd4c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062728Z:c82ce719-9789-4d07-a65b-dadc37785e05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9906\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022b7e626e3-6f52-4e6c-97e4-3f583689de3c\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022e2e7075a-92f6-4587-a61f-46a2a89cd847\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa91117c85524636b98786b7e1cc7753", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20e22afa-fa3f-4753-baa1-061fe87087b4", + "x-ms-client-request-id": "aa91117c85524636b98786b7e1cc7753", + "x-ms-correlation-request-id": "03897212-d854-41a6-966a-38db65029037", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "0ce17b46-ad12-48ea-8646-984d428ca14b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062728Z:03897212-d854-41a6-966a-38db65029037" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c65f2b79aa008e5dd6d3365a5cebf066", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a53eeb40-6a27-4738-ad8b-94a2a70717bd", + "x-ms-client-request-id": "c65f2b79aa008e5dd6d3365a5cebf066", + "x-ms-correlation-request-id": "9df192af-2978-47a0-a8cd-b4673fa18ff2", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "351be56d-9853-488a-8618-a4d3ba098be1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062729Z:9df192af-2978-47a0-a8cd-b4673fa18ff2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6b985c15d9dbeba5f84a43ecf2222f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "914434a3-4adc-40fe-a401-394a817653d1", + "x-ms-client-request-id": "b6b985c15d9dbeba5f84a43ecf2222f3", + "x-ms-correlation-request-id": "3231fa51-7fb3-4680-81c4-a39f90129d02", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "8eb640f8-3234-4c25-9722-06fcd3693884", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062730Z:3231fa51-7fb3-4680-81c4-a39f90129d02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89d45f8cb0bfd188b302d37e4fdbe9cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "514ec42d-e106-465d-95c8-fecd04ad674b", + "x-ms-client-request-id": "89d45f8cb0bfd188b302d37e4fdbe9cd", + "x-ms-correlation-request-id": "9e39c77c-e7a9-44fc-a4b3-904c06f968f5", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "0b12b5b4-6582-4762-ba48-69c8eb78d47f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062732Z:9e39c77c-e7a9-44fc-a4b3-904c06f968f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5bf51f96c1121bb570a1667b061ebeb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4eba7553-58e8-41e8-a28a-317c396f4cbf", + "x-ms-client-request-id": "5bf51f96c1121bb570a1667b061ebeb3", + "x-ms-correlation-request-id": "13353c99-b02d-49a7-8da1-f5c798744c75", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "98ef2c03-23c2-4f02-8ff8-b6d6e7bfdece", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062733Z:13353c99-b02d-49a7-8da1-f5c798744c75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fdcd43b0661711a7fde8029a893b6f84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c739719-7c4d-4667-a654-8d8b2099a68c", + "x-ms-client-request-id": "fdcd43b0661711a7fde8029a893b6f84", + "x-ms-correlation-request-id": "d1850fae-fb21-481d-b496-e576f0ecb68e", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "e2725d3a-cf2f-486f-a4a6-2a0b4e693b39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062734Z:d1850fae-fb21-481d-b496-e576f0ecb68e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0a7d69bc62dcbe1a9b8191e4a0cca95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b6146e4-2b34-477c-a712-193b15ee1ef8", + "x-ms-client-request-id": "b0a7d69bc62dcbe1a9b8191e4a0cca95", + "x-ms-correlation-request-id": "ab279223-6da3-49dc-9bb1-b1bfe3de3437", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "8140fbe9-1e69-4bfa-881f-25ac73ce1a44", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062736Z:ab279223-6da3-49dc-9bb1-b1bfe3de3437" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0bce2044ec0d30b678e35e29be1a9234", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d17b158-743b-45a1-ada5-bc282ae3da45", + "x-ms-client-request-id": "0bce2044ec0d30b678e35e29be1a9234", + "x-ms-correlation-request-id": "12260ece-b492-4add-9704-ca9aa72d428d", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "4bb94151-3895-4bfc-8600-c9479f775a86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062737Z:12260ece-b492-4add-9704-ca9aa72d428d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fe0e1310d76e9866202535e4d88c7f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a7d5889-aff3-4e7a-af9a-b41f033694c6", + "x-ms-client-request-id": "2fe0e1310d76e9866202535e4d88c7f1", + "x-ms-correlation-request-id": "e04c3603-356a-4b96-8fc8-097e07344cb3", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "6a19401d-7802-4f00-a962-ba0e4cdf563d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062738Z:e04c3603-356a-4b96-8fc8-097e07344cb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69566d1e636dae762077374968b70c8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35068527-b3c2-4468-921e-37fb9e22397c", + "x-ms-client-request-id": "69566d1e636dae762077374968b70c8e", + "x-ms-correlation-request-id": "10d12d85-378b-4564-87f7-f62dd1aa39b3", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "9f3e249f-e22d-4bee-bf88-277b64666ce7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062739Z:10d12d85-378b-4564-87f7-f62dd1aa39b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68ece5259a2b361e99e4a90b9957e3f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "523a3cc4-44d0-492a-87dd-464f061cc9dc", + "x-ms-client-request-id": "68ece5259a2b361e99e4a90b9957e3f0", + "x-ms-correlation-request-id": "2d039010-39e9-4187-8729-abe80a1c216b", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "3eb43d26-7f24-414a-8347-05cede1d859a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062741Z:2d039010-39e9-4187-8729-abe80a1c216b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "510b6c1c29c4cec66b310ffed63d81ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd1df310-5746-440b-a2c0-46ab6e607f90", + "x-ms-client-request-id": "510b6c1c29c4cec66b310ffed63d81ab", + "x-ms-correlation-request-id": "e9f1f528-d305-42e3-8f48-3afc71bbc16e", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "bb5642fd-4b4f-493d-8d09-818853eb4471", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062742Z:e9f1f528-d305-42e3-8f48-3afc71bbc16e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6739c4f65f9b83c54e1fcf89b96a15c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "711be553-3a25-4ad6-a069-5d3e42292c3a", + "x-ms-client-request-id": "6739c4f65f9b83c54e1fcf89b96a15c9", + "x-ms-correlation-request-id": "00e9d5ad-be3e-438e-99cc-cd00a44dd1ec", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "05950a70-c7ff-4276-9fca-2cd5d8420f7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062743Z:00e9d5ad-be3e-438e-99cc-cd00a44dd1ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb2d4794bbabfcca1e1efcfa8a1f605c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10c6287a-3063-4c5e-bd1b-272345f4358a", + "x-ms-client-request-id": "fb2d4794bbabfcca1e1efcfa8a1f605c", + "x-ms-correlation-request-id": "4ad60544-ce54-4025-91c8-4e8ce1fa27ff", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "16562318-9dfb-4eba-a133-d2064bc9c5cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062745Z:4ad60544-ce54-4025-91c8-4e8ce1fa27ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d415fe637b1ebd54a78802a5593d1400", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c607ecd-932b-48ca-b5a0-62950397b4e2", + "x-ms-client-request-id": "d415fe637b1ebd54a78802a5593d1400", + "x-ms-correlation-request-id": "7ee3765a-bdc9-47ec-8786-ca83604941fb", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "1b07ebd0-c4ad-4c77-b8c3-8ac2ce2cf46a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062746Z:7ee3765a-bdc9-47ec-8786-ca83604941fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e6a461b85103afffa3d497d62cbf82f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7264e20f-9deb-4a8a-8de2-aac15f16955f", + "x-ms-client-request-id": "8e6a461b85103afffa3d497d62cbf82f", + "x-ms-correlation-request-id": "c47d105a-f109-4425-9fbb-32f0283737bb", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "522615a2-df17-467e-b026-cc781dba9362", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062747Z:c47d105a-f109-4425-9fbb-32f0283737bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb2673bf415519aaf36f5422b824a2e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f493bf4d-3c4c-43cd-9d65-2c64544afc35", + "x-ms-client-request-id": "bb2673bf415519aaf36f5422b824a2e0", + "x-ms-correlation-request-id": "9ec6eb3a-b907-459d-99f9-777e757380f8", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "67275770-0a92-4839-99bf-2845891b4e10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062748Z:9ec6eb3a-b907-459d-99f9-777e757380f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44defb09d2b5dd4cfedad9e031d75adb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3d71acb-aea9-4c53-b875-564f2faa7836", + "x-ms-client-request-id": "44defb09d2b5dd4cfedad9e031d75adb", + "x-ms-correlation-request-id": "3640760a-ba54-49a6-86ed-f00af8163930", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "274d0e49-ea41-4002-a2ce-4e636cf2c7c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062750Z:3640760a-ba54-49a6-86ed-f00af8163930" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6e6d38f5917daab9b509ba031dc82d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c9178d5-ddc8-4c3c-8334-a8393693060d", + "x-ms-client-request-id": "e6e6d38f5917daab9b509ba031dc82d5", + "x-ms-correlation-request-id": "1584f86d-ae75-400c-a6b7-e3186abea2d0", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "62464348-16ac-4933-a1e8-75e4f30d9b3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062751Z:1584f86d-ae75-400c-a6b7-e3186abea2d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6773699ab4edec792748bc7a67c9e71b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98ff7047-4b80-4ba7-90ac-f12936263a9b", + "x-ms-client-request-id": "6773699ab4edec792748bc7a67c9e71b", + "x-ms-correlation-request-id": "8cf21615-5d64-4ada-add7-4e380f2bca40", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "0bde150a-2732-438a-9da3-adfdedec06ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062752Z:8cf21615-5d64-4ada-add7-4e380f2bca40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5927815bc3eb0c95003a86436abac21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0bdb132a-1194-4cae-a29a-acc8d950e574", + "x-ms-client-request-id": "e5927815bc3eb0c95003a86436abac21", + "x-ms-correlation-request-id": "637a4000-ae45-4117-9195-a912a2a8515f", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "aa8d98f6-901c-40a5-8c03-142bcb6d8591", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062754Z:637a4000-ae45-4117-9195-a912a2a8515f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8460358f364dbee59f9becf9d3072d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d445de3c-b56e-4ea4-b2dc-8bc5dd88a211", + "x-ms-client-request-id": "c8460358f364dbee59f9becf9d3072d1", + "x-ms-correlation-request-id": "6cf79eaf-c9a1-466c-bb46-e62b0dc03b60", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "36367ebc-151b-4f9f-8f45-0ba364c22805", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062755Z:6cf79eaf-c9a1-466c-bb46-e62b0dc03b60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b88b7f689c4ade97a0c217e90b14b57b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "852d0bbc-082b-4a23-b33e-bf31f9cdb02d", + "x-ms-client-request-id": "b88b7f689c4ade97a0c217e90b14b57b", + "x-ms-correlation-request-id": "08528989-aafc-45a5-ab4f-ffa1e08511f7", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "4cd3ae86-1139-4ea9-8f51-787f5937bbb0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062757Z:08528989-aafc-45a5-ab4f-ffa1e08511f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ff034f72-aeb7-4239-9728-9ac4c9ccd4c4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63229a9b1f8321b78ab78b45fdf9131f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c89faac9-a79c-42cc-bd7e-bf00972693dd", + "x-ms-client-request-id": "63229a9b1f8321b78ab78b45fdf9131f", + "x-ms-correlation-request-id": "1aa4594a-4ac5-4b30-8fa3-ab50c71ee1d7", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "f2abad5e-c7bd-4fe8-a88b-655040c22954", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062758Z:1aa4594a-4ac5-4b30-8fa3-ab50c71ee1d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7fbd791f420bbd76c6828a1dc04d045", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1352", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95c55471-5a94-4889-aa62-b01b8e73108f", + "x-ms-client-request-id": "b7fbd791f420bbd76c6828a1dc04d045", + "x-ms-correlation-request-id": "478b3b5b-bb51-419a-8ac5-7bd111267d8c", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "edc04ddc-d2f3-4dc0-9884-13ac018cef35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062758Z:478b3b5b-bb51-419a-8ac5-7bd111267d8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9906\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022864a9828-6a28-400a-b939-2a45600dc2d0\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022e2e7075a-92f6-4587-a61f-46a2a89cd847\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "023342430e0d494ec7692d921151e0a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1352", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9d325c5-9507-46dc-b31b-66b219673e85", + "x-ms-client-request-id": "023342430e0d494ec7692d921151e0a6", + "x-ms-correlation-request-id": "2f1254dc-ef41-4345-af7d-550bb2bf3fc7", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "7a8e49ff-4116-4c6b-865f-444532d458c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062759Z:2f1254dc-ef41-4345-af7d-550bb2bf3fc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9906\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022864a9828-6a28-400a-b939-2a45600dc2d0\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022e2e7075a-92f6-4587-a61f-46a2a89cd847\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3458f7affe19a75bc267f61bf7164586", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1440", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 06:27:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ebf8aece-dc09-4f04-abb7-e86eb2f23b43", + "x-ms-client-request-id": "3458f7affe19a75bc267f61bf7164586", + "x-ms-correlation-request-id": "cdb7ea6c-da8d-4924-94a8-75744e7374c2", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "239e7d20-fe5a-47ae-a95e-feca4b5127ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T062759Z:cdb7ea6c-da8d-4924-94a8-75744e7374c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9906\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/connections/azsmnet9906\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022864a9828-6a28-400a-b939-2a45600dc2d0\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022e2e7075a-92f6-4587-a61f-46a2a89cd847\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8546\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5651/providers/Microsoft.Network/localNetworkGateways/azsmnet8709\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "929861893", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayBaseTest.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayBaseTest.json new file mode 100644 index 000000000000..9bcb08568a9a --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayBaseTest.json @@ -0,0 +1,68802 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|2c28f297-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39196ab3a3709fe86ed7773d4f1d7093", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:40:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "10ee66ac-fff0-4c2a-99e3-5321a5dd9991", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "10ee66ac-fff0-4c2a-99e3-5321a5dd9991", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074041Z:10ee66ac-fff0-4c2a-99e3-5321a5dd9991" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/csmrg5667?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "32", + "Content-Type": "application/json", + "traceparent": "00-a93fe26fb7ac9449954de696b2daaacf-61d238d19c97e049-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0d2a30a42e5f585c6dbdbf0d4271876", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:40:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "47247e6e-b1c5-4b30-b411-c30973becd2d", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "47247e6e-b1c5-4b30-b411-c30973becd2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074044Z:47247e6e-b1c5-4b30-b411-c30973becd2d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667", + "name": "csmrg5667", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "243", + "Content-Type": "application/json", + "Request-Id": "|2c28f298-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd3ff468e2d8f6c351ec741d64bc00c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "dhcpOptions": { + "dnsServers": [ + "10.1.1.1", + "10.1.2.4" + ] + }, + "subnets": [ + { + "name": "GatewaySubnet", + "id": null, + "properties": { + "addressPrefix": "10.0.0.0/24" + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/b3c70d0e-89ad-47d4-8c7e-95036640bd29?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1333", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:40:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "3", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6832e57d-084b-4457-acc3-33d954b2e86b", + "x-ms-client-request-id": "cd3ff468e2d8f6c351ec741d64bc00c9", + "x-ms-correlation-request-id": "4cb1448b-2048-4eea-8b32-3a022f686815", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "b3c70d0e-89ad-47d4-8c7e-95036640bd29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074056Z:4cb1448b-2048-4eea-8b32-3a022f686815" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet829\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228e8d20fb-e478-4656-8617-98c74098a936\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00224e2654ec-5492-46b3-b7e5-cc1beced3888\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228e8d20fb-e478-4656-8617-98c74098a936\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|2c28f299-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bb5d3c6b554c0320ed9945610d8611f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1335", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:40:56 GMT", + "ETag": "W/\u002249897506-cf6c-4d4c-967e-91858f397f06\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95807e73-7259-42ab-8702-94382fcee4b0", + "x-ms-client-request-id": "7bb5d3c6b554c0320ed9945610d8611f", + "x-ms-correlation-request-id": "94a742fe-6e58-4df8-acba-b4220d51f4da", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "a9227797-9888-4243-850e-57861b83beb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074056Z:94a742fe-6e58-4df8-acba-b4220d51f4da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet829\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002249897506-cf6c-4d4c-967e-91858f397f06\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00224e2654ec-5492-46b3-b7e5-cc1beced3888\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002249897506-cf6c-4d4c-967e-91858f397f06\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|2c28f29a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88c527daeb6f9aa9cdab892e1ab648b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1335", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:40:56 GMT", + "ETag": "W/\u002249897506-cf6c-4d4c-967e-91858f397f06\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3fdddfb-aaac-4deb-be4d-b84751cc7f5e", + "x-ms-client-request-id": "88c527daeb6f9aa9cdab892e1ab648b7", + "x-ms-correlation-request-id": "73a5af00-cf3c-42e1-b94c-8922b776b28e", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "5b8e847b-a951-4542-ad89-e094dcebd1c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074057Z:73a5af00-cf3c-42e1-b94c-8922b776b28e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet829\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002249897506-cf6c-4d4c-967e-91858f397f06\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00224e2654ec-5492-46b3-b7e5-cc1beced3888\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002249897506-cf6c-4d4c-967e-91858f397f06\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|2c28f29b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9156153c840658756de87bf839d1826b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "537", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:40:56 GMT", + "ETag": "W/\u002249897506-cf6c-4d4c-967e-91858f397f06\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5ddbdc7-c5b9-4b68-97d5-66fc2c54c825", + "x-ms-client-request-id": "9156153c840658756de87bf839d1826b", + "x-ms-correlation-request-id": "7ba30e2a-0776-4f90-b835-2d468b9ff800", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "761fbc04-b0f8-49d8-8d71-c2b6a22fc52b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074057Z:7ba30e2a-0776-4f90-b835-2d468b9ff800" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002249897506-cf6c-4d4c-967e-91858f397f06\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "155", + "Content-Type": "application/json", + "Request-Id": "|2c28f29c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28d48632dbef1a29aea82c04a65891dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "publicIPAllocationMethod": "Dynamic", + "dnsSettings": { + "domainNameLabel": "azsmnet2644" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/de9d5ad3-634e-4045-a6c8-a9a03d9a9877?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "796", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "1", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1016b643-ebec-4560-8beb-0c4ab88a5541", + "x-ms-client-request-id": "28d48632dbef1a29aea82c04a65891dc", + "x-ms-correlation-request-id": "8116edec-14b4-4793-868d-fba963a79682", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "de9d5ad3-634e-4045-a6c8-a9a03d9a9877", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074101Z:8116edec-14b4-4793-868d-fba963a79682" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1653\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022b3ea58cb-ce2f-45f4-a207-3f0a32e666a7\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022ccc3a0f7-8420-467f-9e7e-30bff2b7eb00\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet2644\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet2644.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/de9d5ad3-634e-4045-a6c8-a9a03d9a9877?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f29d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c18372e614e27a2667ecd6cc2c694223", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27ce94b7-cf87-44a9-a710-722c52887468", + "x-ms-client-request-id": "c18372e614e27a2667ecd6cc2c694223", + "x-ms-correlation-request-id": "0f57cbfd-da52-44d0-b233-9fd8710f5ab2", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "93c33b73-58cd-440f-82d7-a1a6b6911ac0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074101Z:0f57cbfd-da52-44d0-b233-9fd8710f5ab2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f29e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87b85c6777e9dc8fd4680d676b77b9b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "797", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:01 GMT", + "ETag": "W/\u002221af34f9-cfe5-416a-920d-0fe1817f7e28\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6f66b10-f4a9-4e48-b16e-1cebebbb1143", + "x-ms-client-request-id": "87b85c6777e9dc8fd4680d676b77b9b3", + "x-ms-correlation-request-id": "9a50937c-bbd7-454a-8b7c-21b124300fcf", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "88b7d6b2-4680-4381-81a0-22509f45e760", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074102Z:9a50937c-bbd7-454a-8b7c-21b124300fcf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1653\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002221af34f9-cfe5-416a-920d-0fe1817f7e28\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022ccc3a0f7-8420-467f-9e7e-30bff2b7eb00\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet2644\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet2644.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|2c28f29f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "331d0e7fcfd404f9d307682c7fe540b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "797", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:01 GMT", + "ETag": "W/\u002221af34f9-cfe5-416a-920d-0fe1817f7e28\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29d14544-bd52-44fc-9e8c-9dbd998a193a", + "x-ms-client-request-id": "331d0e7fcfd404f9d307682c7fe540b1", + "x-ms-correlation-request-id": "7fa09ac7-068e-4bb7-a859-2f8e01fc4e94", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "d75d83a4-6c31-4fc8-b43b-4e2988f62c9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074102Z:7fa09ac7-068e-4bb7-a859-2f8e01fc4e94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1653\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002221af34f9-cfe5-416a-920d-0fe1817f7e28\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022ccc3a0f7-8420-467f-9e7e-30bff2b7eb00\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet2644\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet2644.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "610", + "Content-Type": "application/json", + "Request-Id": "|2c28f2a0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a142044a6e34a7e2ec7a07bf0fef3223", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet6614", + "id": null, + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "enableBgp": false, + "sku": { + "name": "Basic", + "tier": "Basic" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2532", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "164e9821-4e39-40b2-b847-b22558725f11", + "x-ms-client-request-id": "a142044a6e34a7e2ec7a07bf0fef3223", + "x-ms-correlation-request-id": "aaf12c13-035d-4caf-85b8-9396ca20a36e", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "26006cc9-3b4e-4edc-93ff-6ff66580830b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074106Z:aaf12c13-035d-4caf-85b8-9396ca20a36e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6443\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002273cd6d37-e9de-454d-99f7-cb1893f2513b\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cb40306f-180f-4e56-a1b5-467dce4eebde\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet6614\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443/ipConfigurations/azsmnet6614\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002273cd6d37-e9de-454d-99f7-cb1893f2513b\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Basic\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022SSTP\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 0,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443/ipConfigurations/azsmnet6614\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [],\r\n", + " \u0022customBgpIpAddresses\u0022: []\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2a1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b52d1e21de70afda502de37ffd14f779", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1b7df3e-102a-4c5b-800d-474336461f87", + "x-ms-client-request-id": "b52d1e21de70afda502de37ffd14f779", + "x-ms-correlation-request-id": "75a63177-021b-4ef1-8b64-395e42b998b6", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "1dab256b-ea21-4b5b-8825-0ca71e577b68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074106Z:75a63177-021b-4ef1-8b64-395e42b998b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2a2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22995cf93766b2fea18fed515f7f4afd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d99aa895-7fef-4e49-bda2-89eed943ca85", + "x-ms-client-request-id": "22995cf93766b2fea18fed515f7f4afd", + "x-ms-correlation-request-id": "9c849096-b259-4293-9dd7-9b017babb9a5", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "41e7187a-af29-47eb-85d9-889c10a9538d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074107Z:9c849096-b259-4293-9dd7-9b017babb9a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2a3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f09dab527dc26eb3439bbd21b4e3b69f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d0508a1-d353-4ef2-8583-44cdd669cd94", + "x-ms-client-request-id": "f09dab527dc26eb3439bbd21b4e3b69f", + "x-ms-correlation-request-id": "163d59df-a62a-4d91-861b-829730c3302d", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "1cee2e57-3a7c-4e41-9b78-35beef2fac78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074109Z:163d59df-a62a-4d91-861b-829730c3302d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2a4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "006995ea0555eaf5207a13e0f0884fd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d98324c2-158f-4990-90e6-5d1d929f4c57", + "x-ms-client-request-id": "006995ea0555eaf5207a13e0f0884fd1", + "x-ms-correlation-request-id": "54eedf4a-4af9-46e6-a1c5-6adbf58ac274", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "ec70d109-1a72-44a5-862a-6ff89e8c53a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074110Z:54eedf4a-4af9-46e6-a1c5-6adbf58ac274" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2a5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "522ce5e307767bb6a92adfca79ddfebd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9fdc495-2c3e-4fb1-b968-5e175bd9b43e", + "x-ms-client-request-id": "522ce5e307767bb6a92adfca79ddfebd", + "x-ms-correlation-request-id": "89c13742-80b8-4151-86db-76fe006cf695", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "4680fa7f-798b-4436-81fa-076c7a25f147", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074111Z:89c13742-80b8-4151-86db-76fe006cf695" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2a6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca664ed949164da7b5b3cf4769d27dbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46dc127a-8d63-4c87-a16a-92a20f97646a", + "x-ms-client-request-id": "ca664ed949164da7b5b3cf4769d27dbb", + "x-ms-correlation-request-id": "eb2ba826-d4e6-4e3f-9613-c7f541721888", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "99496f40-7f5e-459a-8e2c-203ac716c7c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074113Z:eb2ba826-d4e6-4e3f-9613-c7f541721888" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2a7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce3dec4c63b7e328deed572b262b7043", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7aceab62-49a6-4bf2-ac03-3465795ce012", + "x-ms-client-request-id": "ce3dec4c63b7e328deed572b262b7043", + "x-ms-correlation-request-id": "cd2d8564-f9c5-4d3d-9feb-44c0c80c787c", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "9e0e14e8-08e9-49bb-9637-f13aaf9ba1a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074114Z:cd2d8564-f9c5-4d3d-9feb-44c0c80c787c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2a8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a207567c852199bb3ddf9cc3376f12d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3e3ecdf-77bb-49d0-97fa-887a7fa093e0", + "x-ms-client-request-id": "a207567c852199bb3ddf9cc3376f12d6", + "x-ms-correlation-request-id": "43fc52c2-d9af-4c7e-bd1f-ddd7387e17ee", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "4b353479-5620-4b04-abb2-24c848753354", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074115Z:43fc52c2-d9af-4c7e-bd1f-ddd7387e17ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2a9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d7d23ad2f9f75062583eb28f17c2789", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27cae2b9-0920-4f5b-bcc1-1be03003865f", + "x-ms-client-request-id": "8d7d23ad2f9f75062583eb28f17c2789", + "x-ms-correlation-request-id": "d5e19ff5-d50c-42b7-84f1-16cd56b71895", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "679b60ad-c445-4274-8741-60380a076c88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074117Z:d5e19ff5-d50c-42b7-84f1-16cd56b71895" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2aa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13cb8c42dbcac69930a490d8c765ac6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09efd232-252c-41a5-8687-815b5fd54a7e", + "x-ms-client-request-id": "13cb8c42dbcac69930a490d8c765ac6f", + "x-ms-correlation-request-id": "f8e6267a-c95d-4031-923d-2ea50e335e94", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "7efa7197-4294-425b-8c77-5bcde3e2d010", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074118Z:f8e6267a-c95d-4031-923d-2ea50e335e94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ab-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "027e80dbe2ad4ca450927c9e9a92a7c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7255bb75-d258-4f8a-a563-53022f167b70", + "x-ms-client-request-id": "027e80dbe2ad4ca450927c9e9a92a7c1", + "x-ms-correlation-request-id": "700fc05d-5e54-4f81-b1f3-735f0b987bf9", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "04866f4a-90f9-4a38-93cb-7d734381cb5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074119Z:700fc05d-5e54-4f81-b1f3-735f0b987bf9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ac-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa8012b7fea4d10c8ab75cfa9e2eadc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86faf83e-6efb-40e9-a544-2946ec9c33ab", + "x-ms-client-request-id": "aa8012b7fea4d10c8ab75cfa9e2eadc0", + "x-ms-correlation-request-id": "a25442dd-e1dd-4637-9736-dcb82f0f28c2", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "ecb3c617-0312-452c-a0a2-51b681152824", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074121Z:a25442dd-e1dd-4637-9736-dcb82f0f28c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ad-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "714d7bd625fe5fdce87ec2385efb2c9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b29585e-9abc-4b10-8789-630f0e697d8b", + "x-ms-client-request-id": "714d7bd625fe5fdce87ec2385efb2c9e", + "x-ms-correlation-request-id": "af632969-5157-4599-af17-90cbba4fa4e2", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "868abbdf-223e-419f-97bd-d94a7f3af75b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074122Z:af632969-5157-4599-af17-90cbba4fa4e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ae-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b420cffc02e4dcca74ac78f686a9ad22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a7ad8ce-069a-4cc5-bbd3-7d28648ab99d", + "x-ms-client-request-id": "b420cffc02e4dcca74ac78f686a9ad22", + "x-ms-correlation-request-id": "1127a553-8fbf-45b8-a400-997a166978fb", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "a0ab7845-951f-4168-b7a8-63f1326c6612", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074124Z:1127a553-8fbf-45b8-a400-997a166978fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2af-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ec8bce4364592c33620c2253cd4738e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c92d3dde-0ab0-49d5-9ec0-000cb18ab242", + "x-ms-client-request-id": "1ec8bce4364592c33620c2253cd4738e", + "x-ms-correlation-request-id": "e1604b83-b4a1-440e-82e1-db6b67548153", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "d40fedd7-116d-46ce-8396-ac4141ae9801", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074125Z:e1604b83-b4a1-440e-82e1-db6b67548153" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2b0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cffebe8af90dd3dbb070fd52ace5d93f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "476be795-8b11-49dc-b324-f08511c5f3b3", + "x-ms-client-request-id": "cffebe8af90dd3dbb070fd52ace5d93f", + "x-ms-correlation-request-id": "1ae0768c-5e43-4765-aab4-a0299d14309d", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "bceb2774-6a95-467d-95d3-1d608b52aafd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074126Z:1ae0768c-5e43-4765-aab4-a0299d14309d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2b1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a153a0d10e32c6580c8e7ec440a5a09f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "567282d7-c9c1-44eb-917f-ab2563ca8ccd", + "x-ms-client-request-id": "a153a0d10e32c6580c8e7ec440a5a09f", + "x-ms-correlation-request-id": "d2d1c941-a4ee-47e8-847e-ad1627f6e4ae", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "be01d112-f9f0-48cc-81a9-647f36529fbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074128Z:d2d1c941-a4ee-47e8-847e-ad1627f6e4ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2b2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c76be938ddaaeb14e1f46dd43870e550", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "112666c0-de65-4b99-88ad-d97d7e5ee59c", + "x-ms-client-request-id": "c76be938ddaaeb14e1f46dd43870e550", + "x-ms-correlation-request-id": "0da99f72-a89a-404b-b619-646d26b16e56", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "f598cc8f-0ee7-4b54-a8a6-9f77fee7d757", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074129Z:0da99f72-a89a-404b-b619-646d26b16e56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2b3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b548247d2817c5c6537c37f7a17930b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9cdce943-aefd-4988-9c5a-bf57d3452453", + "x-ms-client-request-id": "9b548247d2817c5c6537c37f7a17930b", + "x-ms-correlation-request-id": "083d6a9e-44a0-4e2d-84f3-61d4ab5d3962", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "db7872cc-31c5-481f-a169-78749b31fd04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074133Z:083d6a9e-44a0-4e2d-84f3-61d4ab5d3962" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2b4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c31a5dd0127af3948b67c03ea0838d9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b44f348b-eb9d-481f-aabc-cbe2f7f09ba0", + "x-ms-client-request-id": "c31a5dd0127af3948b67c03ea0838d9b", + "x-ms-correlation-request-id": "adf32cd3-d9c0-4f91-b5de-96763ae29003", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "45891599-a77e-47b3-b70a-085004abd80d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074138Z:adf32cd3-d9c0-4f91-b5de-96763ae29003" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2b5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd7c2ea80451661e8def61731a9570ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67ed0c46-e06d-4c4b-abae-8df8cec88a25", + "x-ms-client-request-id": "bd7c2ea80451661e8def61731a9570ca", + "x-ms-correlation-request-id": "9a2fa44e-657e-4708-9878-245e6f8900c0", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "a0d65677-92ab-48eb-9061-24607d6b03d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074139Z:9a2fa44e-657e-4708-9878-245e6f8900c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2b6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db046160215635d6ee601019121ddbe1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f2f3b24-b488-4313-aef2-d8d6dd428e96", + "x-ms-client-request-id": "db046160215635d6ee601019121ddbe1", + "x-ms-correlation-request-id": "565b6ae6-be3b-4881-bacc-e6bf911486a5", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "d66b20c4-5f35-4778-973f-e854458fdc6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074141Z:565b6ae6-be3b-4881-bacc-e6bf911486a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2b7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cd627aad69accba3fb3368ab020d8f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22d51609-d3ef-4100-bd5d-eacfbc20f462", + "x-ms-client-request-id": "4cd627aad69accba3fb3368ab020d8f6", + "x-ms-correlation-request-id": "4e69d101-926b-413e-a5d6-c220811d7c2b", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "0d52f9e2-e9cf-469e-a160-9b6b24809322", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074142Z:4e69d101-926b-413e-a5d6-c220811d7c2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2b8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3fddf5f7b27f86455747cef0f405536f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "391c51ac-01c7-4047-94dc-c6af8ba3a583", + "x-ms-client-request-id": "3fddf5f7b27f86455747cef0f405536f", + "x-ms-correlation-request-id": "e9b1a9c0-ab77-44d0-960c-bc4614ea6c99", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "dd29fb7c-6cd8-4840-9f33-590ec0589a2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074143Z:e9b1a9c0-ab77-44d0-960c-bc4614ea6c99" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2b9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3c87f1323be8a2fa7389ca2eb4b84cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f875971d-f8b2-46a2-ab64-d4cab653b3cc", + "x-ms-client-request-id": "f3c87f1323be8a2fa7389ca2eb4b84cd", + "x-ms-correlation-request-id": "9a672540-aa39-404c-bbc0-7d68d065c525", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "7b3123aa-28d1-42ac-96e7-ea4acf76ecd4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074144Z:9a672540-aa39-404c-bbc0-7d68d065c525" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ba-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c2119879c3ff862e24ff45207cad739", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bad5ca72-4bb3-42a0-be69-5d8b10fd3506", + "x-ms-client-request-id": "1c2119879c3ff862e24ff45207cad739", + "x-ms-correlation-request-id": "74e2024d-2408-4072-81f5-b52faed422cb", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "c44abad0-5604-4f7a-96ab-2b30a73a0ee2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074146Z:74e2024d-2408-4072-81f5-b52faed422cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2bb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3076c660e558d337c653984715a29b0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "70371ce9-a159-4da4-adc4-75948ba0af43", + "x-ms-client-request-id": "3076c660e558d337c653984715a29b0c", + "x-ms-correlation-request-id": "bca7cca7-4bbe-4c8a-bbd9-922c5365db81", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "52118242-a761-4333-af03-58f173a532c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074147Z:bca7cca7-4bbe-4c8a-bbd9-922c5365db81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2bc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da6800c337e3772f1dd0106e2fdd82dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd3b9f83-e7bb-4147-9b24-c9ade0709ba9", + "x-ms-client-request-id": "da6800c337e3772f1dd0106e2fdd82dc", + "x-ms-correlation-request-id": "69d4a2e5-c2a3-4677-afea-433a8453cb6a", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "bf19615d-ebed-44c6-aafe-6f430804740e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074148Z:69d4a2e5-c2a3-4677-afea-433a8453cb6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2bd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2442626054d5a175e14e56ec041ae240", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2365db9a-e2b6-464c-a78d-64b25935060d", + "x-ms-client-request-id": "2442626054d5a175e14e56ec041ae240", + "x-ms-correlation-request-id": "bc81e388-12bc-4919-8e26-cb1600d050f4", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "9471ff27-9ebe-460f-bf8e-5a7acc26f659", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074150Z:bc81e388-12bc-4919-8e26-cb1600d050f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2be-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "068fe8b4fd61285597ff1287d4c9a4e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02d6dfc0-da2b-4b2d-9f57-3d5bb9a63583", + "x-ms-client-request-id": "068fe8b4fd61285597ff1287d4c9a4e8", + "x-ms-correlation-request-id": "73c9951e-b773-4e1a-9daa-f908e551511f", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "11d0516c-e141-43a3-9957-bc296b75ca80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074151Z:73c9951e-b773-4e1a-9daa-f908e551511f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2bf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3e7bbd0775f6e368bc6f895e1427203", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "000bd704-54f1-4170-a5bf-b9fff0bac024", + "x-ms-client-request-id": "b3e7bbd0775f6e368bc6f895e1427203", + "x-ms-correlation-request-id": "ccb03f4b-a2f4-434a-9300-65aef8d90f89", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "a3e9b33f-4cc5-419f-a33c-6b9f0844dd08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074152Z:ccb03f4b-a2f4-434a-9300-65aef8d90f89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2c0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46bad0ee7b4d627b0c198dd541eecd18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8069cb3-dbe0-4be5-b25a-28152341375d", + "x-ms-client-request-id": "46bad0ee7b4d627b0c198dd541eecd18", + "x-ms-correlation-request-id": "46be03bc-e321-4074-9f2e-af2d2d391c0a", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "8c57f849-2960-4aaf-9d8d-3d58d583494b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074153Z:46be03bc-e321-4074-9f2e-af2d2d391c0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2c1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "491c6daa2f323de0b1207b9a04c04754", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e25cf92-a559-4b37-ad4a-a7c1aed33757", + "x-ms-client-request-id": "491c6daa2f323de0b1207b9a04c04754", + "x-ms-correlation-request-id": "27d53b2e-9cee-487e-b830-246bf05fe2b7", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "764e585a-c1ad-40b3-b656-9e11aa60a26b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074155Z:27d53b2e-9cee-487e-b830-246bf05fe2b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2c2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04990f8c5e0f549a3f84a646e9612d9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f5795ef-a95d-4720-97b3-ec11b6ac7093", + "x-ms-client-request-id": "04990f8c5e0f549a3f84a646e9612d9d", + "x-ms-correlation-request-id": "35fac1d9-92df-4e49-bbad-7ae5cffae37c", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "5ed20f4e-3697-41af-b48f-6fcc2793df0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074156Z:35fac1d9-92df-4e49-bbad-7ae5cffae37c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2c3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73ebe0f92926bed0f07c942d00e15e4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fcccf956-e4dd-4488-8845-1198c1dbecc4", + "x-ms-client-request-id": "73ebe0f92926bed0f07c942d00e15e4b", + "x-ms-correlation-request-id": "88e4f65e-be1b-4aef-8a65-bc84bbde1e42", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "439d71d9-f433-4c52-a1b8-304e1d1c5922", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074157Z:88e4f65e-be1b-4aef-8a65-bc84bbde1e42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2c4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "314939d1c8544b08d2c80aae889a5350", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:41:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb355d3c-969e-4743-870d-fedafe6f888e", + "x-ms-client-request-id": "314939d1c8544b08d2c80aae889a5350", + "x-ms-correlation-request-id": "f1b28f86-b216-4e77-bf74-dd7d30b94ce3", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "4fbdc6be-572a-46d3-a3bd-28fe865702e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074159Z:f1b28f86-b216-4e77-bf74-dd7d30b94ce3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2c5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23a0def2d4d5632d3fda1392c96d545e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd8d74fa-9a6f-4d27-bbbd-cc4fb691235f", + "x-ms-client-request-id": "23a0def2d4d5632d3fda1392c96d545e", + "x-ms-correlation-request-id": "626433af-a596-4c4e-8cf6-67f2eef54f7f", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "173adb5d-ea85-4b06-8058-e89dd4f8e5d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074200Z:626433af-a596-4c4e-8cf6-67f2eef54f7f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2c6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0745a26fb183048d79fa05e1f223556", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89bae272-2ac5-4d04-ba2b-d08d058ac917", + "x-ms-client-request-id": "b0745a26fb183048d79fa05e1f223556", + "x-ms-correlation-request-id": "6fbc7d3d-fe23-4edb-844a-39f0143f50dc", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "2bfbc8f2-5182-4069-a721-4c174074d214", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074201Z:6fbc7d3d-fe23-4edb-844a-39f0143f50dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2c7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "213a43293a40fd760be6f279b5768165", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "683c2426-0e04-4b6e-a9be-63a6a438a5b7", + "x-ms-client-request-id": "213a43293a40fd760be6f279b5768165", + "x-ms-correlation-request-id": "4c926bd5-ade5-494f-9e48-9b2b63e4b8b2", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "18d3d4cd-a5e9-4dd6-8698-32b3999d525a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074202Z:4c926bd5-ade5-494f-9e48-9b2b63e4b8b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2c8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e87ab73a325f738966f4b3633cf441d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "19bdb073-f93c-4928-b4e9-d885d034f9f1", + "x-ms-client-request-id": "2e87ab73a325f738966f4b3633cf441d", + "x-ms-correlation-request-id": "a2f9550b-8d1d-46a8-abfa-61c0ccb7a577", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "aa787b10-6fba-49d7-9d3b-ef472e9ddc7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074204Z:a2f9550b-8d1d-46a8-abfa-61c0ccb7a577" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2c9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8669bda53332eb1de476a43209ce7b61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40f1f6dc-83e1-4c14-a87e-ae88336a6cb4", + "x-ms-client-request-id": "8669bda53332eb1de476a43209ce7b61", + "x-ms-correlation-request-id": "093fe766-cc01-42e6-b9d5-9bc06536e5be", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "e1da0e92-aedd-49b8-aea0-e76b6891c295", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074205Z:093fe766-cc01-42e6-b9d5-9bc06536e5be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ca-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73ea3b1d079a85300b438ad0ee3fca3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1f504a8-c9e3-4a77-bc92-6dd1ea2ff9ee", + "x-ms-client-request-id": "73ea3b1d079a85300b438ad0ee3fca3c", + "x-ms-correlation-request-id": "2b828e35-9cd9-4cd2-a116-cad71a953b0c", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "d640f79d-cf50-4e5b-933d-c0c764aae26f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074206Z:2b828e35-9cd9-4cd2-a116-cad71a953b0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2cb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7d4d5a1fb0d40328d9c4aafff06eec7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22dab0a4-a714-4c51-8024-38952a0241c6", + "x-ms-client-request-id": "f7d4d5a1fb0d40328d9c4aafff06eec7", + "x-ms-correlation-request-id": "86b1ad0e-16e4-4e3f-a6b3-2720496a1067", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "1b86413a-abb7-4ce2-9075-7a1c1ded3e67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074208Z:86b1ad0e-16e4-4e3f-a6b3-2720496a1067" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2cc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f719eaf4d0e59d828ce37befa84dfca4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e65683ee-9879-40e9-850a-78f8783a9b95", + "x-ms-client-request-id": "f719eaf4d0e59d828ce37befa84dfca4", + "x-ms-correlation-request-id": "32dc7ec2-3f82-4e66-8888-bb5e199c0c7b", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "2d720c98-139f-46ec-9860-303ac6b01bcc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074209Z:32dc7ec2-3f82-4e66-8888-bb5e199c0c7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2cd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "339068ab83fa215309a9e5fdbd818504", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "405a2f33-f37a-48a6-b6df-06d5d715476e", + "x-ms-client-request-id": "339068ab83fa215309a9e5fdbd818504", + "x-ms-correlation-request-id": "df2e2d6a-1abd-4a2f-80c5-b11836aabc81", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "7b7c3df8-31cd-4a7b-b490-e28004055428", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074210Z:df2e2d6a-1abd-4a2f-80c5-b11836aabc81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ce-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04dcc355d226d15652366b2980429840", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ee27481-d090-4d62-9c7a-008106f72430", + "x-ms-client-request-id": "04dcc355d226d15652366b2980429840", + "x-ms-correlation-request-id": "d5aba651-25c2-414e-8bc0-3f1721781cbb", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "a842c64e-0b87-4dcc-a418-460c4fdd7741", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074211Z:d5aba651-25c2-414e-8bc0-3f1721781cbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2cf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9703a59fba7670cd97f7ee3beb84e00b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5a55d5d-45f5-4458-ad23-7e3569fd350d", + "x-ms-client-request-id": "9703a59fba7670cd97f7ee3beb84e00b", + "x-ms-correlation-request-id": "59570b4c-931b-49f6-89f5-28ce9fa5f2bc", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "06fa05a7-7700-4574-98e8-31eea73493f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074213Z:59570b4c-931b-49f6-89f5-28ce9fa5f2bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2d0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e59a765df871d87d11bee0c3182aa1c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ca81923-c84b-4b20-84c2-301db72462fe", + "x-ms-client-request-id": "e59a765df871d87d11bee0c3182aa1c6", + "x-ms-correlation-request-id": "96200b04-f1a7-48fd-b66c-df2f6569f7ba", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "0dd46bf8-b05c-4242-98a2-1e99a3582c2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074214Z:96200b04-f1a7-48fd-b66c-df2f6569f7ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2d1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "175ea511ee7d9a8ef66b6c2fe41be5ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "752821e0-39e4-4ecd-a957-af6a6ed01f46", + "x-ms-client-request-id": "175ea511ee7d9a8ef66b6c2fe41be5ce", + "x-ms-correlation-request-id": "74fb4e09-059a-4aa7-8ae4-f237e492d22e", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "7f3134fd-6521-48d7-83f1-c1d7d35ce9ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074215Z:74fb4e09-059a-4aa7-8ae4-f237e492d22e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2d2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09cb5f56b2a8a7ce272a85b7da09576d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "130f2a03-333a-4162-8cc6-f58d79238d63", + "x-ms-client-request-id": "09cb5f56b2a8a7ce272a85b7da09576d", + "x-ms-correlation-request-id": "f6ee574b-96af-4c9b-ac25-993e3baa005e", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "fd7ddd1b-a1b5-475f-85b5-ce72783e9283", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074217Z:f6ee574b-96af-4c9b-ac25-993e3baa005e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2d3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46292755c8266f8ee800ee058b4ef4f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "483fe43f-58ea-4c17-882d-64b55accc64a", + "x-ms-client-request-id": "46292755c8266f8ee800ee058b4ef4f5", + "x-ms-correlation-request-id": "b97fafff-d2f4-49a5-8b52-fe11325f1d59", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "9a61c471-b032-43b2-a15a-6b374f32fefc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074218Z:b97fafff-d2f4-49a5-8b52-fe11325f1d59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2d4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b96d12d8985e5e1ed6b6f05268d6c0ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "078cfde0-cd93-49e6-8dd0-4b1c878dbdda", + "x-ms-client-request-id": "b96d12d8985e5e1ed6b6f05268d6c0ec", + "x-ms-correlation-request-id": "e52fc18c-1aa4-455a-938d-8f960866fc4a", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "555e6676-5826-4229-86c0-8ef2b690d53b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074219Z:e52fc18c-1aa4-455a-938d-8f960866fc4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2d5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bddaff149ff18da7d15c21a7c4c91cd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d4ee259-c432-4ac3-a923-4c037539d8e0", + "x-ms-client-request-id": "bddaff149ff18da7d15c21a7c4c91cd9", + "x-ms-correlation-request-id": "523bf98c-6db3-467d-978e-b48be6697b3a", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "e9b6e851-f416-4e25-9b77-1812445c9aa4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074220Z:523bf98c-6db3-467d-978e-b48be6697b3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2d6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7de90369d9bbd0e08cb6f70d83b0611", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5591deb-3307-41b7-9f4a-323ad4d9c7a4", + "x-ms-client-request-id": "c7de90369d9bbd0e08cb6f70d83b0611", + "x-ms-correlation-request-id": "bacba5d9-c5e7-4f1a-8abc-1bd0dc11057a", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "3d93a5b7-ae51-4a19-bb90-6c2f1442e078", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074222Z:bacba5d9-c5e7-4f1a-8abc-1bd0dc11057a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2d7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bf1013f367439046be0e80177779a0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bbfac6d-51b6-45ab-b2ee-c5f07c0dd476", + "x-ms-client-request-id": "8bf1013f367439046be0e80177779a0d", + "x-ms-correlation-request-id": "17d4f40d-9f1b-48d1-8a7e-f38b2996c461", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "de05db38-1018-4233-a3cf-76f91102e45b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074223Z:17d4f40d-9f1b-48d1-8a7e-f38b2996c461" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2d8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d81c169af8f77651f01cb4262f37b495", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2fcfc058-bad9-4bcb-bf3c-2f4894a033cb", + "x-ms-client-request-id": "d81c169af8f77651f01cb4262f37b495", + "x-ms-correlation-request-id": "ff0edf70-3c65-4c2c-80df-629e33c453b8", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "4681597e-22cd-4613-9e1d-ef253cc1723c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074224Z:ff0edf70-3c65-4c2c-80df-629e33c453b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2d9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2670f5690d7ff658ba55cbab50d4691", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50b6ae85-8e5a-45e8-9e18-150582e06bfc", + "x-ms-client-request-id": "c2670f5690d7ff658ba55cbab50d4691", + "x-ms-correlation-request-id": "b2adea57-d51e-41ac-97dc-2db8654749e6", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "0fe07851-27cc-466b-9769-0a98a7c21537", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074226Z:b2adea57-d51e-41ac-97dc-2db8654749e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2da-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2d562302d1f471ab07b9a5781de0934", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0dbcf5c9-27b8-4802-91cd-cad2c0c3ffdb", + "x-ms-client-request-id": "c2d562302d1f471ab07b9a5781de0934", + "x-ms-correlation-request-id": "35f50e7b-83aa-42cf-9588-68da64b6b889", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "8d1f3e81-311f-4d86-85fa-deef25427ece", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074227Z:35f50e7b-83aa-42cf-9588-68da64b6b889" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2db-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67ab522cd80f0a35b11c4d529c96c0e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7809df66-b19f-46c6-96a1-da271344424f", + "x-ms-client-request-id": "67ab522cd80f0a35b11c4d529c96c0e3", + "x-ms-correlation-request-id": "0a99d1e6-0965-4ce0-b7b4-7f0aae37e6a8", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "24676992-dc4c-4264-aba9-721141a0a18c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074228Z:0a99d1e6-0965-4ce0-b7b4-7f0aae37e6a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2dc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccf523d6f2612976f420115cf50d7ead", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c3f05ed0-f18c-451a-9a45-8c8f860e6b59", + "x-ms-client-request-id": "ccf523d6f2612976f420115cf50d7ead", + "x-ms-correlation-request-id": "3a2bf4b5-a829-4d5a-974d-21306425bbec", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "cdd8ba4b-bc71-429c-b976-62f981e41e78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074229Z:3a2bf4b5-a829-4d5a-974d-21306425bbec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2dd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "628e279bde6158822dcb1003e0c7aa19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a6f638f-3d5a-44a1-b311-da065a48d792", + "x-ms-client-request-id": "628e279bde6158822dcb1003e0c7aa19", + "x-ms-correlation-request-id": "4f5bd2d8-9867-47d3-a459-9c012309f317", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "ed803ce5-e136-4520-9944-a7d30ef088d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074231Z:4f5bd2d8-9867-47d3-a459-9c012309f317" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2de-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e81b6ba3ce839d2dc8272eec6d914a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f9b10bf-a9fa-4a6d-a36e-acf9760a2f6e", + "x-ms-client-request-id": "5e81b6ba3ce839d2dc8272eec6d914a3", + "x-ms-correlation-request-id": "3a8f5ac6-b8c5-416d-b395-8dd68bd577c4", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "3b8a3347-fd97-4cfe-b179-d9865732893e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074232Z:3a8f5ac6-b8c5-416d-b395-8dd68bd577c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2df-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74b69f9e5e08f781a19d9f96e172492d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "194d91e7-d457-4f0c-b8fe-07f713157b57", + "x-ms-client-request-id": "74b69f9e5e08f781a19d9f96e172492d", + "x-ms-correlation-request-id": "7a6f7a25-0d28-4439-a280-f2b121988d5c", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "89411592-61e1-4a94-85e7-994cfe7eb45c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074233Z:7a6f7a25-0d28-4439-a280-f2b121988d5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2e0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ea2f7761f8c5fc4555485df6b949153", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f96ef672-4626-492e-8b2d-c2914960d62c", + "x-ms-client-request-id": "3ea2f7761f8c5fc4555485df6b949153", + "x-ms-correlation-request-id": "c3e56963-f8d9-4484-b086-3589f9c79df1", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "65824b6a-b966-46ba-8c37-7b7d448c9cd2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074235Z:c3e56963-f8d9-4484-b086-3589f9c79df1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2e1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40646cb735115b113589bd4b9c3c586a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59d25be2-ae24-4706-8707-0543b3441b03", + "x-ms-client-request-id": "40646cb735115b113589bd4b9c3c586a", + "x-ms-correlation-request-id": "0e998d9a-2a76-454f-a9e7-0092390d1683", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "aac4a1b8-0254-43e1-8201-4597c585f11a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074236Z:0e998d9a-2a76-454f-a9e7-0092390d1683" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2e2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce774539d5367e17db571fb3d8a18c0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8438fd7-bb11-41a9-87b4-5fd7d1a716a5", + "x-ms-client-request-id": "ce774539d5367e17db571fb3d8a18c0c", + "x-ms-correlation-request-id": "8c8806f7-e45c-49c8-b6f4-dd7558eee4b7", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "7eb0e093-284d-4aa9-a23b-1a0e88124b45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074237Z:8c8806f7-e45c-49c8-b6f4-dd7558eee4b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2e3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75de4b0b080d401ce64609026279c218", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fcd260a3-3681-4f09-9cb9-f34b41a5ecc3", + "x-ms-client-request-id": "75de4b0b080d401ce64609026279c218", + "x-ms-correlation-request-id": "4786f2ec-df63-40e6-8008-75fd51dc66b8", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "fc6eda55-cb2b-48f7-8b3d-d310bea6ea1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074238Z:4786f2ec-df63-40e6-8008-75fd51dc66b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2e4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25a61bfcc21ce11d55e664b9165e8393", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e5ceb9c-de57-4d8c-ab29-51981e0564b9", + "x-ms-client-request-id": "25a61bfcc21ce11d55e664b9165e8393", + "x-ms-correlation-request-id": "ba91ba9b-88bf-4442-9b00-dbe43dcdac03", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "1d99caae-40ff-4fe4-9049-667c2143633a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074240Z:ba91ba9b-88bf-4442-9b00-dbe43dcdac03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2e5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "503fb0fde25d305c2937e8f0cb141c62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e4b5293-bb25-4de9-8c7c-7f6f8457fbff", + "x-ms-client-request-id": "503fb0fde25d305c2937e8f0cb141c62", + "x-ms-correlation-request-id": "ba288a0a-0def-4a6c-aacd-d34808dccd21", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "262c035e-0d31-4c64-b676-47108bd21caa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074241Z:ba288a0a-0def-4a6c-aacd-d34808dccd21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2e6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdb6069566fb49f02efd1f27a3622a87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8bcb5d76-fabb-4556-8d14-339baa250590", + "x-ms-client-request-id": "bdb6069566fb49f02efd1f27a3622a87", + "x-ms-correlation-request-id": "65e41208-3d46-4231-b836-415e2aff9af0", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "8703a0c7-430c-4e19-8eff-6c4142d3ce60", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074242Z:65e41208-3d46-4231-b836-415e2aff9af0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2e7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b10576c3713919bbbf76fbe5d92c1640", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02b1bef1-9607-4273-ae7a-4f3645da3ad3", + "x-ms-client-request-id": "b10576c3713919bbbf76fbe5d92c1640", + "x-ms-correlation-request-id": "428558fc-cdad-4d7d-b44a-c348e330036a", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "72adf401-0605-4a8d-8dc4-39bc2f4ab52b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074244Z:428558fc-cdad-4d7d-b44a-c348e330036a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2e8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "102402cac5a89798c0f52160c3348cc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4f6425a-efbe-4171-84f2-dfc3ad7e008d", + "x-ms-client-request-id": "102402cac5a89798c0f52160c3348cc7", + "x-ms-correlation-request-id": "870ef42c-ab81-4047-b3cb-fe6686179d70", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "89aadaba-fe25-48a4-9e97-47fcb41880a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074245Z:870ef42c-ab81-4047-b3cb-fe6686179d70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2e9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "542d610d6a0f23284b9cfd846a0b6f02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e501bafd-8b65-44c1-abfc-5bc0216779db", + "x-ms-client-request-id": "542d610d6a0f23284b9cfd846a0b6f02", + "x-ms-correlation-request-id": "2e0e82b6-3308-4201-b9df-34ef20994c82", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "fe25fee3-af87-486a-86e1-720d68c7a69b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074246Z:2e0e82b6-3308-4201-b9df-34ef20994c82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ea-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a05ddfe6193efddfde6df1434f5a568a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71c73685-9b8b-4b53-81f9-2a75277f963e", + "x-ms-client-request-id": "a05ddfe6193efddfde6df1434f5a568a", + "x-ms-correlation-request-id": "b5946e54-84d3-426b-8a93-77adbb9b7edc", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "c02cc442-b4ff-4470-81c8-3da6886deaaf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074247Z:b5946e54-84d3-426b-8a93-77adbb9b7edc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2eb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78d734eac1ff5f30da00c40bc8132cb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18d6f530-b7ce-4080-a06b-c9b7bdb03bcf", + "x-ms-client-request-id": "78d734eac1ff5f30da00c40bc8132cb4", + "x-ms-correlation-request-id": "8d56d742-d674-4d95-b4ad-b2d69cfd8f62", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "59b58d0f-c44d-45d9-8bb9-77de7d2a44ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074249Z:8d56d742-d674-4d95-b4ad-b2d69cfd8f62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ec-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3791f85ebd7f389812f76a178e4d4f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f0c6b7a-8697-4671-a86d-a5ded3b1f203", + "x-ms-client-request-id": "e3791f85ebd7f389812f76a178e4d4f0", + "x-ms-correlation-request-id": "cd374a9f-af4f-4f78-9356-840e19beef6a", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "4a7a7db8-efe9-405d-a018-451b0adb2a58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074250Z:cd374a9f-af4f-4f78-9356-840e19beef6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ed-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "359a7345f7332502aefdc63d55d435cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1acaf46-79a0-4146-b1af-6e6577773bab", + "x-ms-client-request-id": "359a7345f7332502aefdc63d55d435cb", + "x-ms-correlation-request-id": "592f8d5e-5d01-4b1d-90f9-4b2208474244", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "a15e1341-4360-4411-9087-8895fc687b8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074251Z:592f8d5e-5d01-4b1d-90f9-4b2208474244" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ee-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fbe3c4173e0feb3abe4f7cf4b8ee6f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8918872f-8319-42b4-b4dc-a724b90842b6", + "x-ms-client-request-id": "2fbe3c4173e0feb3abe4f7cf4b8ee6f6", + "x-ms-correlation-request-id": "904ea26f-a794-4de0-a271-1530fc472701", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "b3ddcfcf-71f2-4b13-b9f5-36476e5bb742", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074253Z:904ea26f-a794-4de0-a271-1530fc472701" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ef-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55c5d32cf6788e811d5434d9254b9dad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb706e2d-bb91-45ea-9a30-af456b360506", + "x-ms-client-request-id": "55c5d32cf6788e811d5434d9254b9dad", + "x-ms-correlation-request-id": "240f9d67-8f94-428d-9ad5-aa820d117470", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "663e49ef-82ff-4a27-9fbb-edf0c19f0557", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074254Z:240f9d67-8f94-428d-9ad5-aa820d117470" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2f0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b60aafaa426d20fbf9c8a4e0032d920", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be687778-2f65-4cab-b644-bc7f9768dbb6", + "x-ms-client-request-id": "3b60aafaa426d20fbf9c8a4e0032d920", + "x-ms-correlation-request-id": "546bfd88-15de-4c17-a6ff-8611bfb1579a", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "590af857-04b5-4ce8-82c2-6b2fd3cd42ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074255Z:546bfd88-15de-4c17-a6ff-8611bfb1579a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2f1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8111cf16df0e4a52bb2f128c3edad95f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "510a75f8-e061-4043-bcfc-ee194dd4c530", + "x-ms-client-request-id": "8111cf16df0e4a52bb2f128c3edad95f", + "x-ms-correlation-request-id": "58f66ff8-3f6d-41b9-9209-e57779a736fa", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "2922dcb1-569b-4865-ac67-7541ad490e63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074257Z:58f66ff8-3f6d-41b9-9209-e57779a736fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2f2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0d54946ab2d87d0c3f295dc6c328eea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "82124196-daff-47c7-b106-50e80475809e", + "x-ms-client-request-id": "a0d54946ab2d87d0c3f295dc6c328eea", + "x-ms-correlation-request-id": "bf44bc9b-848a-498b-9db2-4caaef321512", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "153a3099-cb02-457b-8b9a-5081f06bb98a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074258Z:bf44bc9b-848a-498b-9db2-4caaef321512" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2f3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55c2147a1c3a1a9e581680f6928394e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:42:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5881c059-ab34-4479-a207-eaac968d594c", + "x-ms-client-request-id": "55c2147a1c3a1a9e581680f6928394e4", + "x-ms-correlation-request-id": "2e6b9df6-3a3d-4bde-aa1f-b33ad6fe070e", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "c57534c5-ab0f-45b1-b86b-5bf70e41b3b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074259Z:2e6b9df6-3a3d-4bde-aa1f-b33ad6fe070e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2f4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6082ac2385d6bf2ff89bd1b4a76dd88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c629ed0e-9096-4636-b0a5-6fe224717c1b", + "x-ms-client-request-id": "b6082ac2385d6bf2ff89bd1b4a76dd88", + "x-ms-correlation-request-id": "8ccd819a-6ee5-4a63-9c42-30aa69160f9a", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "def2ff7f-cfb7-4a2a-9ab0-643e37d8ccda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074300Z:8ccd819a-6ee5-4a63-9c42-30aa69160f9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2f5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "291127a183182a24abba48172ad9f540", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be5dfd43-da82-45c4-a7cc-ea9cb3ad840c", + "x-ms-client-request-id": "291127a183182a24abba48172ad9f540", + "x-ms-correlation-request-id": "e75fb2f5-2161-4efd-aed2-7be8d87e9d5c", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "1ebc176f-9089-419a-9538-7b7bd754a92b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074302Z:e75fb2f5-2161-4efd-aed2-7be8d87e9d5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2f6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4119b15ed72a418c215655b05e83d0e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4a494b6-6bc8-4a51-8a81-435a526c9136", + "x-ms-client-request-id": "4119b15ed72a418c215655b05e83d0e1", + "x-ms-correlation-request-id": "8286a396-66af-4d7d-91ec-a7fa00ffff92", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "629a39c1-6541-4af4-9974-10fa4ab55f1b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074303Z:8286a396-66af-4d7d-91ec-a7fa00ffff92" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2f7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a55f7386a713fcc05dd0ba3f0db4126", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e1fad82-68ee-4936-8869-07ec45adc06b", + "x-ms-client-request-id": "6a55f7386a713fcc05dd0ba3f0db4126", + "x-ms-correlation-request-id": "c8eac2f5-7bfa-43ed-9002-a3babe6f8793", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "c4cb2d1f-c64d-41f4-9d00-4af962e7f8d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074304Z:c8eac2f5-7bfa-43ed-9002-a3babe6f8793" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2f8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99bd7d949b5cc95e9bd008c12e74cb28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aaf40595-abeb-4a6b-9721-928e891dc3fc", + "x-ms-client-request-id": "99bd7d949b5cc95e9bd008c12e74cb28", + "x-ms-correlation-request-id": "4f5271d4-836d-4eff-97af-d4ecc72501e2", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "d74c3bd3-6998-4434-8e60-a82694d99e19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074305Z:4f5271d4-836d-4eff-97af-d4ecc72501e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2f9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32de66e98a83f3cee4da3b4ccce95146", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a34032b-5fbe-4552-8f6c-91e0d68898dd", + "x-ms-client-request-id": "32de66e98a83f3cee4da3b4ccce95146", + "x-ms-correlation-request-id": "76b10d1d-9785-4d81-88a3-efd71f1131f8", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "a6650517-c3e6-4fbc-855f-707816f59103", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074307Z:76b10d1d-9785-4d81-88a3-efd71f1131f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2fa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e11c2f1537c59d85998ccfa1620a1091", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "976e45ea-acd0-4eef-b0ff-b12effe1bf77", + "x-ms-client-request-id": "e11c2f1537c59d85998ccfa1620a1091", + "x-ms-correlation-request-id": "080adebc-1344-427f-b0b0-6cde844486b5", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "7a2d853f-3117-42eb-b974-b1ed0fa8a442", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074308Z:080adebc-1344-427f-b0b0-6cde844486b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2fb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89b9e3120efc09a2aec9b4816011fcb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea470236-611e-4959-8720-a65edfe92954", + "x-ms-client-request-id": "89b9e3120efc09a2aec9b4816011fcb1", + "x-ms-correlation-request-id": "323f8cd4-58fc-4869-9f54-53fbede83520", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "8cfc247b-fd39-4e67-ab9e-0f05fcd292d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074309Z:323f8cd4-58fc-4869-9f54-53fbede83520" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2fc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "feacc17ee957b262e14198f7bb2d91d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c5a4a26-87eb-4ddf-a05a-b0f47437fe60", + "x-ms-client-request-id": "feacc17ee957b262e14198f7bb2d91d9", + "x-ms-correlation-request-id": "351e3a6d-0423-4be6-8fa1-80aa54a7c3a2", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "2dffcf09-de5f-4dfe-9ba3-e9cbbdcf6299", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074311Z:351e3a6d-0423-4be6-8fa1-80aa54a7c3a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2fd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e93aa9c9c830064a8c1233fc82033c88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31f51e98-dee3-4940-9b63-3b403082ec81", + "x-ms-client-request-id": "e93aa9c9c830064a8c1233fc82033c88", + "x-ms-correlation-request-id": "641ce98d-b5b7-402d-a4c7-6b8dfcd8f3ec", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "027b680a-0e6a-4e6b-88c7-2f79e66ccf22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074312Z:641ce98d-b5b7-402d-a4c7-6b8dfcd8f3ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2fe-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1221e8f125e293a8007a7bb75ab4e80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86d4cdd6-3d75-43c1-bee0-5a4b2b7a0bba", + "x-ms-client-request-id": "a1221e8f125e293a8007a7bb75ab4e80", + "x-ms-correlation-request-id": "9aaa3e6f-9363-4b45-accb-0452d7f557a4", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "7e7aa6c0-bafe-449b-9d5c-6f4b3c4137ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074313Z:9aaa3e6f-9363-4b45-accb-0452d7f557a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f2ff-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6b8db3713d7b58176a67245b5652fdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87b89531-3c6a-408c-83e8-add8889229df", + "x-ms-client-request-id": "b6b8db3713d7b58176a67245b5652fdd", + "x-ms-correlation-request-id": "a69e6bd1-9a1e-43a8-93a5-e1a2151201bf", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "f766da58-8406-45c9-b243-a2fefb5cf42d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074314Z:a69e6bd1-9a1e-43a8-93a5-e1a2151201bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f300-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d681004f00ab77b6f116829208e90e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57a0ac0a-8ff1-437d-9c2a-d38d22291a40", + "x-ms-client-request-id": "9d681004f00ab77b6f116829208e90e1", + "x-ms-correlation-request-id": "5e373f01-7853-4c9a-b2aa-132b368a094d", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "f7641a73-77c3-42c2-9e6f-c7300899534f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074316Z:5e373f01-7853-4c9a-b2aa-132b368a094d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f301-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7c4b3c4864b7cb19c6c2ab89ff4731b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c286f40-7b7d-4524-a719-78b10b4d31fd", + "x-ms-client-request-id": "a7c4b3c4864b7cb19c6c2ab89ff4731b", + "x-ms-correlation-request-id": "aa982620-8bcd-45e7-82f5-0eb2d3bebaa2", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "60dc71d1-31de-43bf-b5ee-e801bf9d164a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074317Z:aa982620-8bcd-45e7-82f5-0eb2d3bebaa2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f302-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65b6c9d7b0424775600046c6aa5795e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d8fd83b-5aeb-44ba-b7ee-41823e70a414", + "x-ms-client-request-id": "65b6c9d7b0424775600046c6aa5795e7", + "x-ms-correlation-request-id": "6594cf08-c7ff-4168-8d90-689a7201bc65", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "91582862-9ca6-4aa2-a563-db12c7a0c3e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074318Z:6594cf08-c7ff-4168-8d90-689a7201bc65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f303-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0281901588a07d925fec009dc5c2177a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2fbe4653-5d56-46eb-a327-7b890e3258c4", + "x-ms-client-request-id": "0281901588a07d925fec009dc5c2177a", + "x-ms-correlation-request-id": "e598751a-f3ca-405b-96f0-65234fd864eb", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "474b59e2-5374-4841-b94b-cc0af6b9b2ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074320Z:e598751a-f3ca-405b-96f0-65234fd864eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f304-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57514d9d2bd7139e3d7d474a3febd145", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e60f0b2d-7f19-44f2-8ac6-fe86adc437af", + "x-ms-client-request-id": "57514d9d2bd7139e3d7d474a3febd145", + "x-ms-correlation-request-id": "33946175-fbbf-461c-9ffa-08a8e4a7e7c4", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "7d813034-e43c-40e0-a164-8976ef18fed1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074321Z:33946175-fbbf-461c-9ffa-08a8e4a7e7c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f305-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ea242d770734f7a36390656b0d8829d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98d37a73-37e4-4b4b-86b8-f665c117e135", + "x-ms-client-request-id": "0ea242d770734f7a36390656b0d8829d", + "x-ms-correlation-request-id": "79612a41-969f-463e-9a46-a178e36d90ea", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "20f6abbd-c6f5-42e5-8ed8-de31ff7c1d88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074322Z:79612a41-969f-463e-9a46-a178e36d90ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f306-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c28cbe83d05ea0ff26ec42340483d74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65ccb09e-0b76-4ce6-b4d0-bd97cfe63729", + "x-ms-client-request-id": "5c28cbe83d05ea0ff26ec42340483d74", + "x-ms-correlation-request-id": "b17286d7-daaa-42a2-9d2e-37407bdaed7a", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "841f9483-15ec-4b9d-a91d-a1fc3aecb203", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074323Z:b17286d7-daaa-42a2-9d2e-37407bdaed7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f307-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83c5bb1a09202c07d302209e25486265", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b276c8c-f962-4ca8-adbe-10bae698c824", + "x-ms-client-request-id": "83c5bb1a09202c07d302209e25486265", + "x-ms-correlation-request-id": "eaea7887-d4ea-488d-9431-c681c723442d", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "b656e556-90ca-4dee-81eb-1a246a6c8adb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074325Z:eaea7887-d4ea-488d-9431-c681c723442d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f308-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7461aafb75c2993f32b81c05ab560eee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da31fcbd-caa4-499c-9e7a-b2744f42bd66", + "x-ms-client-request-id": "7461aafb75c2993f32b81c05ab560eee", + "x-ms-correlation-request-id": "c8668355-fdef-4677-9a40-2a3b07e236a4", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "0053ec18-9e64-454c-a5d5-a08fadacb541", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074326Z:c8668355-fdef-4677-9a40-2a3b07e236a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f309-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f53c92fbfe12df7cc4fb89031d71c5aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e6bb388-773b-4a20-98e0-4ec7664dda8e", + "x-ms-client-request-id": "f53c92fbfe12df7cc4fb89031d71c5aa", + "x-ms-correlation-request-id": "303f35b9-72ab-4e81-a903-aa492784c8e9", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "b3ad817e-cad3-4c55-b1d4-69cd9b6ba091", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074327Z:303f35b9-72ab-4e81-a903-aa492784c8e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f30a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96285f0bc9e6a5b17b2b5067ec02807c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a56084d-e2bf-4c2f-9310-54c6e6bc768b", + "x-ms-client-request-id": "96285f0bc9e6a5b17b2b5067ec02807c", + "x-ms-correlation-request-id": "ec40bc74-551e-49a5-9346-a8ee4f43d424", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "fefd9842-d46b-43c7-b584-25f4f65adeb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074328Z:ec40bc74-551e-49a5-9346-a8ee4f43d424" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f30b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92a331f46d0bfc522d82afc6eb3c7cc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73d35e85-038d-42b3-9067-76b9b88ce95a", + "x-ms-client-request-id": "92a331f46d0bfc522d82afc6eb3c7cc1", + "x-ms-correlation-request-id": "b1f91ca7-566e-4a05-a244-c8adb3f1a48b", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "b99886e3-a351-421f-9959-a6a9f08aaa53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074330Z:b1f91ca7-566e-4a05-a244-c8adb3f1a48b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f30c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cf972f3772d3108e09779e6ae14f2c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29c2a380-33f5-45a3-9986-66c77dbd7eb2", + "x-ms-client-request-id": "4cf972f3772d3108e09779e6ae14f2c2", + "x-ms-correlation-request-id": "d223b1c4-1406-44f4-8895-418d754878c9", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "521e82b9-e591-4754-836f-d352e7291c68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074331Z:d223b1c4-1406-44f4-8895-418d754878c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f30d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb0e0c7b32cd9e9e0d2c69641aeab93f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47c843e0-8717-49c8-a295-063e32d8dfe8", + "x-ms-client-request-id": "eb0e0c7b32cd9e9e0d2c69641aeab93f", + "x-ms-correlation-request-id": "87425a92-211d-4793-b8b9-46516fff7d54", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "86df0879-7b1e-492e-a578-69ca7464389f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074332Z:87425a92-211d-4793-b8b9-46516fff7d54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f30e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a748faf34087d4f2972b173f36c4d18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cae0c033-c8c5-4194-b093-252ee40ed07d", + "x-ms-client-request-id": "7a748faf34087d4f2972b173f36c4d18", + "x-ms-correlation-request-id": "d66c795d-58a4-4963-a416-3a6c64925230", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "9c526c56-7bdb-409d-a5f2-b03522f2c5df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074334Z:d66c795d-58a4-4963-a416-3a6c64925230" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f30f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de4bed8f902dc0f3d35b3f000da316f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee58ec9d-54cc-4260-9d5d-ee8dac5a6681", + "x-ms-client-request-id": "de4bed8f902dc0f3d35b3f000da316f6", + "x-ms-correlation-request-id": "eb390f0f-9788-4ff1-9645-4a7286912827", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "e82e7d93-51ed-4db9-8ce2-004686a4bea5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074335Z:eb390f0f-9788-4ff1-9645-4a7286912827" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f310-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f3739de77a046b9bd91c25b802baaa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65aed367-bd90-4df3-9358-37db6e42b977", + "x-ms-client-request-id": "1f3739de77a046b9bd91c25b802baaa0", + "x-ms-correlation-request-id": "80c93f03-8083-4099-b80b-9e3be32e1797", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "23db2bf1-e99e-4ebe-baa4-2fcd46d83869", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074336Z:80c93f03-8083-4099-b80b-9e3be32e1797" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f311-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cd451deda9e1e129bb3a7adf54e6f85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c20a86f4-e6e4-4f00-9aa2-3e54e18bbadb", + "x-ms-client-request-id": "2cd451deda9e1e129bb3a7adf54e6f85", + "x-ms-correlation-request-id": "e5e7cef9-4002-42f7-abc5-7340319938d0", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "ad1a6770-d1d7-43c5-a361-9b998c28c959", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074337Z:e5e7cef9-4002-42f7-abc5-7340319938d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f312-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b995bb5b2e3417783305219bce9840a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd92031c-f9d7-4e12-8012-87e0a92cb078", + "x-ms-client-request-id": "b995bb5b2e3417783305219bce9840a8", + "x-ms-correlation-request-id": "6fc21e81-6268-4a3a-9dfd-aeea296f3df5", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "80acacd9-353c-4185-9b33-74a03ebc6f72", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074339Z:6fc21e81-6268-4a3a-9dfd-aeea296f3df5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f313-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc229eb0e9ce0357271883ecd00c506e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6bf63fa7-e7e9-48bb-8cb7-57d8fac7e04b", + "x-ms-client-request-id": "bc229eb0e9ce0357271883ecd00c506e", + "x-ms-correlation-request-id": "ecdd7625-7523-40eb-b811-5d6df9e48c00", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "368ebd15-268c-444b-b869-4b8703cd4440", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074340Z:ecdd7625-7523-40eb-b811-5d6df9e48c00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f314-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5ff3c22f095af6cd9bdf999b9765002", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f64110b7-33a0-4d76-b4bc-9b566b2de45e", + "x-ms-client-request-id": "c5ff3c22f095af6cd9bdf999b9765002", + "x-ms-correlation-request-id": "cffebd7d-664a-41a5-b009-dca980b61de4", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "ca5901a7-ae54-4991-b0e2-101ca538b952", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074341Z:cffebd7d-664a-41a5-b009-dca980b61de4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f315-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57fdff73b22c71b76392921cab8b4727", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ce3f7dd-2bd7-4c1f-bd44-577de54df8e6", + "x-ms-client-request-id": "57fdff73b22c71b76392921cab8b4727", + "x-ms-correlation-request-id": "62613834-f22f-4a8b-8649-036875ac623e", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "6eed9f38-5ab0-440c-a9f4-916bcc33328c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074342Z:62613834-f22f-4a8b-8649-036875ac623e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f316-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9279b2b47b99bf123272e311f0be4ab1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "648e0a2d-574f-4096-9ccb-cfb8632b08a7", + "x-ms-client-request-id": "9279b2b47b99bf123272e311f0be4ab1", + "x-ms-correlation-request-id": "23a45e1a-345b-4bc1-8bfe-2ba52771c761", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "d406afec-abeb-415c-a1be-ba91d1c49e1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074344Z:23a45e1a-345b-4bc1-8bfe-2ba52771c761" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f317-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d07881c8f90e7042858e61035e4f044d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "504c8247-5f85-464a-ad11-a22bfe13337f", + "x-ms-client-request-id": "d07881c8f90e7042858e61035e4f044d", + "x-ms-correlation-request-id": "d4bda3e1-d89a-4f00-a9e3-98b2a529fc34", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "5ed1bf5e-51df-4938-9830-3cd5032d906c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074345Z:d4bda3e1-d89a-4f00-a9e3-98b2a529fc34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f318-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06e4d175befcf869ed3d25bacea580a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9cf54f1-a05d-450c-9735-a6710b28ed4b", + "x-ms-client-request-id": "06e4d175befcf869ed3d25bacea580a5", + "x-ms-correlation-request-id": "a9e5c6a7-03e0-4691-aeb6-d07c0d76bcfd", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "d8fad546-d8d6-4f1a-99c7-2e546c645d01", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074346Z:a9e5c6a7-03e0-4691-aeb6-d07c0d76bcfd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f319-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a53e0487713ba186f090c0b190f61e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31c4ff10-722c-46e8-960f-ee8db7fb66c8", + "x-ms-client-request-id": "2a53e0487713ba186f090c0b190f61e2", + "x-ms-correlation-request-id": "1cbe0f26-1d44-40e9-94de-16ccd717a412", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "bcaee585-768b-43df-99ef-3398cc555c83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074348Z:1cbe0f26-1d44-40e9-94de-16ccd717a412" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f31a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f9c966d43d90ab41780e3d1d488a1df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d73f1cf-5731-4db6-a614-3e12083b2774", + "x-ms-client-request-id": "1f9c966d43d90ab41780e3d1d488a1df", + "x-ms-correlation-request-id": "496188de-4342-42ea-abb6-da032b98f4f0", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "04dc3665-86cb-4996-a87b-70096a1ff78e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074349Z:496188de-4342-42ea-abb6-da032b98f4f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f31b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dbbbc0ddafcfe3ab82a96f3b15ededd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "801403a1-10ad-4ca3-8cb3-9e8f1df0f4f4", + "x-ms-client-request-id": "7dbbbc0ddafcfe3ab82a96f3b15ededd", + "x-ms-correlation-request-id": "e1e94730-4372-4d6e-a9b8-e0ee184d4423", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "8e54f231-481c-464a-a8be-5640b6dde226", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074350Z:e1e94730-4372-4d6e-a9b8-e0ee184d4423" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f31c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "374c43dc610904cb2c4912929347e6e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddb1ef44-673c-44ba-b785-50c14ebc6ba2", + "x-ms-client-request-id": "374c43dc610904cb2c4912929347e6e7", + "x-ms-correlation-request-id": "e69fadef-c19b-4e24-8cd3-62465a7d88ca", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "daf4ee6d-dba6-4d7d-849a-5af820b4010f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074351Z:e69fadef-c19b-4e24-8cd3-62465a7d88ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f31d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5dfd2d67e35492e65c9d66afacc058b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3164c5b5-9fa2-46a0-8866-af14f5c022f4", + "x-ms-client-request-id": "5dfd2d67e35492e65c9d66afacc058b9", + "x-ms-correlation-request-id": "fbb66cf8-1512-4681-8dbc-c55605f41586", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "4c70ae0e-b8d7-4b01-924e-0609a1fc6336", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074353Z:fbb66cf8-1512-4681-8dbc-c55605f41586" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f31e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91f405a16a3bacd5f0b651b2c7a76a70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7af7a42e-1bdb-4a66-a31c-60fc00d6c3bc", + "x-ms-client-request-id": "91f405a16a3bacd5f0b651b2c7a76a70", + "x-ms-correlation-request-id": "428c5a47-512b-4985-8d74-f2d874796ffa", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "b8d6c1be-fc24-4810-b9f0-9f1da4cbed28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074354Z:428c5a47-512b-4985-8d74-f2d874796ffa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f31f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "838caf438160f9895cb9db6bfa1b586b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac51473a-610b-4fbb-a603-7c5dee9821d3", + "x-ms-client-request-id": "838caf438160f9895cb9db6bfa1b586b", + "x-ms-correlation-request-id": "df869a3b-34c5-47c8-9f81-e4d57dfacd0a", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "cd757fa2-69a1-4192-bbf3-2c83b7cd8e4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074355Z:df869a3b-34c5-47c8-9f81-e4d57dfacd0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f320-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8df159f15453fdab57516c9d9133cab4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f299103-d7db-4121-94ae-cf95017febd2", + "x-ms-client-request-id": "8df159f15453fdab57516c9d9133cab4", + "x-ms-correlation-request-id": "30676a0b-c94f-4059-865b-7f593e193f9a", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "d139f4b3-7ebb-4f83-8c14-30d40a23aa71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074357Z:30676a0b-c94f-4059-865b-7f593e193f9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f321-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc6bf633d43420587cfb34818e6ab1d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4ff562b-c0a9-4079-9102-156b27f76d1b", + "x-ms-client-request-id": "fc6bf633d43420587cfb34818e6ab1d5", + "x-ms-correlation-request-id": "f6b4ae0b-ed03-4ea3-9eb5-0d1c9d46e509", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "38fd51b6-087b-49e9-9a83-fb32703b89df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074358Z:f6b4ae0b-ed03-4ea3-9eb5-0d1c9d46e509" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f322-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ec0e65ddcb6ef1c038f2c0f14eb6729", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:43:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a301ec5f-1471-411f-98bc-eddd7f81bfa6", + "x-ms-client-request-id": "6ec0e65ddcb6ef1c038f2c0f14eb6729", + "x-ms-correlation-request-id": "3de4e2bd-ffcf-4672-9957-c25f1e89f7fb", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "589adf49-72eb-47f4-bb68-d61f0ec8a708", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074400Z:3de4e2bd-ffcf-4672-9957-c25f1e89f7fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f323-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "033826ef5baf1c3601d01158202a6eed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5521f65-b89e-4727-aee8-399f2f34ade5", + "x-ms-client-request-id": "033826ef5baf1c3601d01158202a6eed", + "x-ms-correlation-request-id": "1d68ac57-904c-4367-985e-832eae1ee635", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "5bff826e-4484-4528-bc09-d05981d8caee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074401Z:1d68ac57-904c-4367-985e-832eae1ee635" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f324-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab3f979f5c7356fed97cf9a5a8490c90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "839b507d-59e5-42d0-a446-0c6c13c60027", + "x-ms-client-request-id": "ab3f979f5c7356fed97cf9a5a8490c90", + "x-ms-correlation-request-id": "f6261972-ff0b-412c-8171-06ee7d4f2b50", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "36ef7f3c-aebf-4b70-86b8-c910c1a7146d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074402Z:f6261972-ff0b-412c-8171-06ee7d4f2b50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f325-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67920b93ad320225afa46de6cbc4ced9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb27ffe6-d10c-4602-8331-8d543cf05460", + "x-ms-client-request-id": "67920b93ad320225afa46de6cbc4ced9", + "x-ms-correlation-request-id": "73004bfb-3fc1-495a-b931-677af273efaa", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "a923ccce-13ac-409d-85b0-42dc3be2eef3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074403Z:73004bfb-3fc1-495a-b931-677af273efaa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f326-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c6f3f20bbab92b628e12a33629173b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd87df58-b7a6-4d04-a96f-5882589c4865", + "x-ms-client-request-id": "7c6f3f20bbab92b628e12a33629173b7", + "x-ms-correlation-request-id": "700bb7cf-d578-43f8-9212-0cd5d589cd2f", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "e5d0b3e2-b14f-46e0-82e4-6cc4d3cbe6e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074405Z:700bb7cf-d578-43f8-9212-0cd5d589cd2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f327-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15c481c40697f2bb723dfbceef188b15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "126901b2-874c-4db8-94e9-b88c78154225", + "x-ms-client-request-id": "15c481c40697f2bb723dfbceef188b15", + "x-ms-correlation-request-id": "dd2df1cb-334f-4ace-b583-4d00026df238", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "f0d53991-c5d7-4975-a7a5-d5a5c374679a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074406Z:dd2df1cb-334f-4ace-b583-4d00026df238" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f328-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69841fae8fdad7e455ff3f5083f19f1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc35c541-5c82-4e98-9635-de4f05cb1508", + "x-ms-client-request-id": "69841fae8fdad7e455ff3f5083f19f1e", + "x-ms-correlation-request-id": "dd1265c6-8068-4552-84f8-2906afdadeb6", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "efe5da4a-86ee-49f9-8a75-6dcaee88d19c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074407Z:dd1265c6-8068-4552-84f8-2906afdadeb6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f329-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a21b530b9ff1a41847c0a6ec0e7a30f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "776c1b95-b2c7-4e45-b813-41d234b4b74c", + "x-ms-client-request-id": "4a21b530b9ff1a41847c0a6ec0e7a30f", + "x-ms-correlation-request-id": "040366b3-7f87-4fee-8339-e7bccbc335c5", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "521c3ed3-9a3c-4ba8-8aef-7b4e077cc4f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074408Z:040366b3-7f87-4fee-8339-e7bccbc335c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f32a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "428514560a0d34dd9cecbf97c76a6e80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb6b3942-22c4-4234-be88-022e70730c57", + "x-ms-client-request-id": "428514560a0d34dd9cecbf97c76a6e80", + "x-ms-correlation-request-id": "12a37b0a-00a8-46b5-81f0-faa172087785", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "7e80fa60-eca0-4f47-9684-f2c3cca5b50f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074410Z:12a37b0a-00a8-46b5-81f0-faa172087785" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f32b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "399ddd9e41f6f415de69e55d8576176d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0c9d02e-f122-4a89-847c-59899619dc50", + "x-ms-client-request-id": "399ddd9e41f6f415de69e55d8576176d", + "x-ms-correlation-request-id": "65ee14cb-10b1-40d1-9704-4794c56a30a6", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "2e52a80e-8b4f-4916-b505-945d81257ed4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074411Z:65ee14cb-10b1-40d1-9704-4794c56a30a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f32c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6efa2f5c5c6c2510d7edad12f9a95319", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f2d547a-c221-4a87-a0a2-159ae5f8e59f", + "x-ms-client-request-id": "6efa2f5c5c6c2510d7edad12f9a95319", + "x-ms-correlation-request-id": "d95ef295-ee77-414e-b8aa-ccb3ce00d650", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "f7965f92-a4c2-43d4-a032-f0fc7cf0d000", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074412Z:d95ef295-ee77-414e-b8aa-ccb3ce00d650" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f32d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2d0890e6a491419ff9064a32580ae25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1775c0cb-6d77-4092-ad62-00dccedbd149", + "x-ms-client-request-id": "e2d0890e6a491419ff9064a32580ae25", + "x-ms-correlation-request-id": "9c84ef3f-0b78-4ec3-bcd8-5c0c13f551a6", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "2d25b02f-4a5b-458d-8e4c-5fd88f234a3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074414Z:9c84ef3f-0b78-4ec3-bcd8-5c0c13f551a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f32e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "973b51d500704113cd7761089303fa34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae6c75bb-13b9-44c0-b75a-8d1c0da86a45", + "x-ms-client-request-id": "973b51d500704113cd7761089303fa34", + "x-ms-correlation-request-id": "1d0a3799-aad3-4b23-b3d2-6ba1e1d5197f", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "819e5e59-5de6-4a29-9bfa-c79db211fa3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074415Z:1d0a3799-aad3-4b23-b3d2-6ba1e1d5197f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f32f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc4fcb1635a6f22416e56fdcf86c0057", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2707fc3a-71df-4377-99f1-84700734f623", + "x-ms-client-request-id": "fc4fcb1635a6f22416e56fdcf86c0057", + "x-ms-correlation-request-id": "3e1f3413-a26d-4c13-bbef-2672cdf18463", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "98790e81-27bf-4586-a2d8-28789b442b2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074416Z:3e1f3413-a26d-4c13-bbef-2672cdf18463" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f330-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a73d873ebb6e0da9758e14d1081080fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc97bfe8-1988-4c2e-aaf7-61f6f3218301", + "x-ms-client-request-id": "a73d873ebb6e0da9758e14d1081080fc", + "x-ms-correlation-request-id": "d462601a-611d-474b-890c-fee7c55fcc2d", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "32184768-b1a5-43c5-a595-4feb5ad0668e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074418Z:d462601a-611d-474b-890c-fee7c55fcc2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f331-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a8d3095b2319f7f2d49808a91374860", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bce1f1a-7d64-41e2-9534-b76c40be46d8", + "x-ms-client-request-id": "5a8d3095b2319f7f2d49808a91374860", + "x-ms-correlation-request-id": "7941bd4f-928a-43ba-914a-f4e4236e4273", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "1a35fdb5-f211-44fd-a7fa-096d9c088d47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074419Z:7941bd4f-928a-43ba-914a-f4e4236e4273" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f332-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0cca0a7752c55ac6214186172052e905", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "654a4423-12ea-42ad-897e-cbf8f822ec48", + "x-ms-client-request-id": "0cca0a7752c55ac6214186172052e905", + "x-ms-correlation-request-id": "d7195496-5679-4220-938d-ff0212299542", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "398cae7d-d162-4e20-a6e9-2b0b5fb74e88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074420Z:d7195496-5679-4220-938d-ff0212299542" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f333-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7467365a5df8c25089d79253b1f7c3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccd4b000-608a-4419-9fb3-dfedcda7dc18", + "x-ms-client-request-id": "c7467365a5df8c25089d79253b1f7c3e", + "x-ms-correlation-request-id": "dc1c08d5-a3bf-4118-bbed-2bb256b914cf", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "6e4b7a9f-fa9e-4b78-953d-17b6e8bffaa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074421Z:dc1c08d5-a3bf-4118-bbed-2bb256b914cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f334-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe5ab445744642366a3238f02c687fdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a581188-6447-424b-9a88-3b5cb17e49b8", + "x-ms-client-request-id": "fe5ab445744642366a3238f02c687fdb", + "x-ms-correlation-request-id": "050b61b0-5840-4a84-af0e-29dd84f5a8b0", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "c98ca405-bd2e-4aac-9fad-9d3bdf0d2723", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074423Z:050b61b0-5840-4a84-af0e-29dd84f5a8b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f335-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e257b5f80f0d180e43e0328d9a01f02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e72e5539-4770-420c-8ecf-6e9f6ccacc17", + "x-ms-client-request-id": "1e257b5f80f0d180e43e0328d9a01f02", + "x-ms-correlation-request-id": "dae7c445-f2e2-4968-a893-cca89c47585b", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "ccdabb2b-8c5a-492c-bdf4-567c99d8637c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074424Z:dae7c445-f2e2-4968-a893-cca89c47585b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f336-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cd148c4ebf8f0bf3c045dad6d355fa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61b4ed66-0e4b-4c3e-8818-ea43a8bc93d3", + "x-ms-client-request-id": "6cd148c4ebf8f0bf3c045dad6d355fa0", + "x-ms-correlation-request-id": "180972a1-d9b9-4993-880f-cf245cf47c62", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "48c570da-bd7d-4df0-bc08-6add7eb4663c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074425Z:180972a1-d9b9-4993-880f-cf245cf47c62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f337-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0c59e1e5efac54d33881908700d69c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "03c9ef90-c544-47f0-baea-7ad60148352e", + "x-ms-client-request-id": "c0c59e1e5efac54d33881908700d69c9", + "x-ms-correlation-request-id": "4fb72dab-c398-4c3f-9456-9cd49ed62735", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "6b81b24f-23f0-4596-8e0b-ba4376616da7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074426Z:4fb72dab-c398-4c3f-9456-9cd49ed62735" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f338-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e42b3612139673e3bb34e1ec23d364af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13516fde-80b3-4d76-a3c8-3bf176f9938e", + "x-ms-client-request-id": "e42b3612139673e3bb34e1ec23d364af", + "x-ms-correlation-request-id": "82501cb7-d4cf-4492-9708-971cf4276957", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "b2fdf73d-2e28-4708-b5dc-c10bf908d335", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074428Z:82501cb7-d4cf-4492-9708-971cf4276957" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f339-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a0963de5fdb6608fa0c386fd1b67f2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2370805-4610-4e3e-bc21-3e95feeb884f", + "x-ms-client-request-id": "3a0963de5fdb6608fa0c386fd1b67f2e", + "x-ms-correlation-request-id": "08940bbd-2f78-48dd-9bef-1a82a368b70b", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "2d4fdd8c-e13f-4208-88bf-2bdfe88d068b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074429Z:08940bbd-2f78-48dd-9bef-1a82a368b70b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f33a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "379a949a7b0a0b09ba5104c57d60a15f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4b605e28-8d32-43a0-99ff-c7b00eb2313e", + "x-ms-client-request-id": "379a949a7b0a0b09ba5104c57d60a15f", + "x-ms-correlation-request-id": "3483b0d8-e714-4c92-a8b5-cbc0e523346a", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "bce9ec27-f389-4414-b65e-be7c874fad13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074430Z:3483b0d8-e714-4c92-a8b5-cbc0e523346a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f33b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c2a6a242e04b3ed2dc4e98ada74a204", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8df47e11-f6c1-4582-ba10-d6edee7d2e72", + "x-ms-client-request-id": "0c2a6a242e04b3ed2dc4e98ada74a204", + "x-ms-correlation-request-id": "85baa0fc-067a-4e0c-9d3b-16d7d436b14a", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "0d684ea4-dfb6-4a76-9425-87dbedeb8e80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074432Z:85baa0fc-067a-4e0c-9d3b-16d7d436b14a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f33c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e52b2b42d3962a45afe80895b42e999", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34880f29-3351-4c7c-8107-419682413892", + "x-ms-client-request-id": "8e52b2b42d3962a45afe80895b42e999", + "x-ms-correlation-request-id": "43a7fb2c-7f2f-4702-a266-e8a516e0f75f", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "e13a878f-00bf-479f-9193-9f00429c6a40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074433Z:43a7fb2c-7f2f-4702-a266-e8a516e0f75f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f33d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "674bd96a738c6b2aa6e60945917f3146", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b51bc44-4e55-4fc5-a83e-8851ccc4665b", + "x-ms-client-request-id": "674bd96a738c6b2aa6e60945917f3146", + "x-ms-correlation-request-id": "694eb34f-e1aa-4bb9-8a5e-22cd9b709897", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "64d1dc29-e537-45e5-b9fa-df15fef03662", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074434Z:694eb34f-e1aa-4bb9-8a5e-22cd9b709897" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f33e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb11ffaf130ef626c5c7b205ae6458eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b571b0b6-bec1-48d8-be3b-c364fab3d0ad", + "x-ms-client-request-id": "cb11ffaf130ef626c5c7b205ae6458eb", + "x-ms-correlation-request-id": "bd72932a-fcf5-402f-9983-d55550c959a2", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "fbc75a45-c9bf-4700-accf-de08a44e8ba8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074435Z:bd72932a-fcf5-402f-9983-d55550c959a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f33f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "001f50db3a28417887e6e752245fd1db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d771d78d-e99b-4c8c-9ec1-c78581f098ac", + "x-ms-client-request-id": "001f50db3a28417887e6e752245fd1db", + "x-ms-correlation-request-id": "cc1c6027-27f1-4de0-98e7-baa8f5ad84b6", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "923eb669-6830-4ed7-94fe-67e1c50040e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074437Z:cc1c6027-27f1-4de0-98e7-baa8f5ad84b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f340-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5bd939cd1d31568ab354a1c5c025bd42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85491dc4-5283-410e-a258-07dee54c37df", + "x-ms-client-request-id": "5bd939cd1d31568ab354a1c5c025bd42", + "x-ms-correlation-request-id": "7ed375b6-6726-4514-a0e8-c0dfaa29a83b", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "4d49127f-1b80-4c9e-96c0-fe3008f8d0ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074438Z:7ed375b6-6726-4514-a0e8-c0dfaa29a83b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f341-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41691d8e305f741d87cf43282bd3d266", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3191c679-10be-4773-9e18-5929adb23738", + "x-ms-client-request-id": "41691d8e305f741d87cf43282bd3d266", + "x-ms-correlation-request-id": "d06ebc6f-cb26-4a67-93e9-03eaa880ba2f", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "c6f5f3d6-c110-4c1e-8640-3bbb57241c49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074439Z:d06ebc6f-cb26-4a67-93e9-03eaa880ba2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f342-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7438d6f5fc8abdb9c5c84dd499b28061", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c3a56a21-18f6-49fa-90ae-6757c5254054", + "x-ms-client-request-id": "7438d6f5fc8abdb9c5c84dd499b28061", + "x-ms-correlation-request-id": "1e993022-9ae3-414d-a7cb-ff5f7f408975", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "88f08568-c31d-40de-9a3e-a8e7558867c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074440Z:1e993022-9ae3-414d-a7cb-ff5f7f408975" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f343-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06c3a52890f59c7c1c64d461da622bdf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b293c086-5475-4f67-bd81-b8f4f537f041", + "x-ms-client-request-id": "06c3a52890f59c7c1c64d461da622bdf", + "x-ms-correlation-request-id": "7b361e1a-ed2a-44f4-94c5-d8eadbbc2e75", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "7d93505d-ea95-4d9c-9366-35015f5f5f7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074442Z:7b361e1a-ed2a-44f4-94c5-d8eadbbc2e75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f344-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9cf3b8148ed92b763ab7b96e349dbd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8923a2d6-363b-47fb-b4d6-3aa200b081e5", + "x-ms-client-request-id": "e9cf3b8148ed92b763ab7b96e349dbd4", + "x-ms-correlation-request-id": "3f5b6e30-d191-4aad-8ec3-0918f2e9da35", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "1714a659-3d37-442d-ad5e-e695302618f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074443Z:3f5b6e30-d191-4aad-8ec3-0918f2e9da35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f345-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86ffe14ecc0f65705a9b58262758e363", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da44c4b8-6c74-41b1-a3b0-ec9f63732c77", + "x-ms-client-request-id": "86ffe14ecc0f65705a9b58262758e363", + "x-ms-correlation-request-id": "81052f9e-cd8c-44a7-9b9b-a2e830b46951", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "912e1e53-ee58-4be3-874d-54944408afca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074444Z:81052f9e-cd8c-44a7-9b9b-a2e830b46951" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f346-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d526e9d96e2df74ee31a24a14e6b9d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72630f85-5966-462c-88a5-a64c00523cc8", + "x-ms-client-request-id": "5d526e9d96e2df74ee31a24a14e6b9d3", + "x-ms-correlation-request-id": "795704ac-e1c9-4444-9561-76e22ac681a0", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "cc0851e5-5e35-44d0-a78f-b614adbdf00d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074446Z:795704ac-e1c9-4444-9561-76e22ac681a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f347-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f812ff88a562b5cfcb6a8f52f0916a0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7af56c03-d116-44cf-b192-f92089b43370", + "x-ms-client-request-id": "f812ff88a562b5cfcb6a8f52f0916a0b", + "x-ms-correlation-request-id": "ef576947-ab99-4f51-a284-984b4429490e", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "c11c2f12-5319-40bc-8d41-1d881d0e3fe1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074447Z:ef576947-ab99-4f51-a284-984b4429490e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f348-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74f818c87ef6b8f16d1f97de29265074", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80e34dcb-f441-4c09-860d-0b94577c9bf7", + "x-ms-client-request-id": "74f818c87ef6b8f16d1f97de29265074", + "x-ms-correlation-request-id": "bdf5d16a-58a1-4be8-b642-ec6e4b7da66c", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "0d8424ba-c0d1-4bd6-916d-fe9b0245332f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074448Z:bdf5d16a-58a1-4be8-b642-ec6e4b7da66c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f349-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "289d84e1eb45f8009e9c92780722ef5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5facf6fb-4434-4513-8a96-45f6dbfb8f9c", + "x-ms-client-request-id": "289d84e1eb45f8009e9c92780722ef5c", + "x-ms-correlation-request-id": "a742f04c-bcae-492b-b073-afc34df6ce60", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "2645ce63-a5c7-4b74-a747-ca1fcb7be2b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074450Z:a742f04c-bcae-492b-b073-afc34df6ce60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f34a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc8197c744ed0adc0d5a8a420df08ca4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2533ed50-c239-452d-92c3-8bb1e45dc53e", + "x-ms-client-request-id": "fc8197c744ed0adc0d5a8a420df08ca4", + "x-ms-correlation-request-id": "0d16d02c-d313-43a1-9f0d-be3e072b1a10", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "eb60e5e7-5933-48d2-9a4a-13ba9284ddfb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074451Z:0d16d02c-d313-43a1-9f0d-be3e072b1a10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f34b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c701a1942f4dcc61700d659eb79b04b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f08da106-31f0-4489-b1d9-7473b6dd5dd7", + "x-ms-client-request-id": "6c701a1942f4dcc61700d659eb79b04b", + "x-ms-correlation-request-id": "7fea085c-6b69-4231-b5ad-0e97e64f2860", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "40776edc-7c57-4b00-bb52-692191ece76f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074452Z:7fea085c-6b69-4231-b5ad-0e97e64f2860" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f34c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91173a3054a49c86a7921aea60beebad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2c5715f8-3ea8-46fa-bfdb-960871abba68", + "x-ms-client-request-id": "91173a3054a49c86a7921aea60beebad", + "x-ms-correlation-request-id": "23ae1ff8-81a8-423c-8055-51fd61fbc667", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "57b0c633-90d8-4891-9f0d-b93276b774c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074454Z:23ae1ff8-81a8-423c-8055-51fd61fbc667" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f34d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec5fee1082b18568d1a4e4ed6e831f94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e877c9ee-1a73-4fce-a51a-a1920f042822", + "x-ms-client-request-id": "ec5fee1082b18568d1a4e4ed6e831f94", + "x-ms-correlation-request-id": "943095b1-981f-4501-bb05-d7d5c48772f7", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "8920240f-5d49-4f4f-8fce-e72a1bba9cbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074455Z:943095b1-981f-4501-bb05-d7d5c48772f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f34e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2113eaafad9c40093d4c46127db7c59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0568b79e-aefb-422c-b97b-ec39bfac9de2", + "x-ms-client-request-id": "d2113eaafad9c40093d4c46127db7c59", + "x-ms-correlation-request-id": "8e7318fc-2c3f-436c-a357-7cde61542341", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "4963c605-670e-479d-8271-33f2a5f2e392", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074456Z:8e7318fc-2c3f-436c-a357-7cde61542341" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f34f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd492815c31aad9ad292c0ff6f992e24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "729b553d-02fd-4c32-b943-f43b338987f6", + "x-ms-client-request-id": "fd492815c31aad9ad292c0ff6f992e24", + "x-ms-correlation-request-id": "ce34859f-65a7-476c-b99c-011b6771703a", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "8f883d38-823c-4f9d-bd82-d1276f1d2f24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074457Z:ce34859f-65a7-476c-b99c-011b6771703a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f350-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2140867218ac15d3ed9a58dcbe075df5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:44:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb17ece5-1fa3-4889-9f0f-9ab1f30b61b2", + "x-ms-client-request-id": "2140867218ac15d3ed9a58dcbe075df5", + "x-ms-correlation-request-id": "2a7a1700-570c-4c0d-9c90-b5565999de42", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "b2a50c8b-a47b-4701-8b80-7655d09a6656", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074459Z:2a7a1700-570c-4c0d-9c90-b5565999de42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f351-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45d88b28223ae679a46400473a0054fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7af73c4d-36e7-4c5c-bdfa-a100b222c4a6", + "x-ms-client-request-id": "45d88b28223ae679a46400473a0054fa", + "x-ms-correlation-request-id": "92758956-30d9-4e27-a144-6b73215cb504", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "17846a0d-7da7-440b-bdbe-2a333c68a696", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074500Z:92758956-30d9-4e27-a144-6b73215cb504" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f352-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1ee9fa65a9bfcac54330f806bbdeeca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8116402d-2d22-4172-b626-f40acec405f2", + "x-ms-client-request-id": "a1ee9fa65a9bfcac54330f806bbdeeca", + "x-ms-correlation-request-id": "dc312bed-dc70-4e65-9b9a-046f5e7ec831", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "bccfa7d3-a64f-4638-aa0f-8f37c534d916", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074501Z:dc312bed-dc70-4e65-9b9a-046f5e7ec831" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f353-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3d6ca34e8c150ea0c5a7d48188cdbed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed8f9029-e7f3-4d0b-8826-fb4b0b24be09", + "x-ms-client-request-id": "e3d6ca34e8c150ea0c5a7d48188cdbed", + "x-ms-correlation-request-id": "3326086b-9f27-4cdb-b438-b64394966ad9", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "fbe1f0c6-d9bc-4c01-91f5-5afb3f2f8696", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074502Z:3326086b-9f27-4cdb-b438-b64394966ad9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f354-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f365e45bc18ce5adfdbf00612f97ae6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0b610c0-2b9f-42ee-825c-023673fdf227", + "x-ms-client-request-id": "1f365e45bc18ce5adfdbf00612f97ae6", + "x-ms-correlation-request-id": "56eefac5-3c7f-4e1a-8c15-a62e8404bf33", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "184c84f2-5315-43c8-898d-0d0a9712f834", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074504Z:56eefac5-3c7f-4e1a-8c15-a62e8404bf33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f355-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f1335757129bd39b49e9440dc64e4c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d61db1a-7f9a-4e12-ae35-67bcb3e76dc5", + "x-ms-client-request-id": "6f1335757129bd39b49e9440dc64e4c8", + "x-ms-correlation-request-id": "148547ff-b61e-4576-b9e8-45650fdedaf4", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "86359160-a712-474e-a92b-8b033fb3ec01", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074505Z:148547ff-b61e-4576-b9e8-45650fdedaf4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f356-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d3a2257cf8777b2700804e5f7e43e13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8bbc3b6f-b738-4029-8d45-c45a2685b9d5", + "x-ms-client-request-id": "0d3a2257cf8777b2700804e5f7e43e13", + "x-ms-correlation-request-id": "da34a01f-5247-4fc2-8709-f66b48909abe", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "900088b4-12ea-4dc6-8ba5-91936d0d6a74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074506Z:da34a01f-5247-4fc2-8709-f66b48909abe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f357-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2d297df6c78d4c324786a7a2719f17a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83b63d22-44eb-4e76-8e15-526901d97ecd", + "x-ms-client-request-id": "e2d297df6c78d4c324786a7a2719f17a", + "x-ms-correlation-request-id": "dcb738a5-9fab-4cc5-bc05-9cafb7027257", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "3fa4adbd-788b-434a-9160-b14ae06983c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074508Z:dcb738a5-9fab-4cc5-bc05-9cafb7027257" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f358-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0ae28f76dbea55e829bff216c53c6d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4b7e76d0-bd30-4ba3-9398-ee44045597eb", + "x-ms-client-request-id": "f0ae28f76dbea55e829bff216c53c6d0", + "x-ms-correlation-request-id": "fc8382ce-593c-40b2-aed2-208c93cd7511", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "7d38e156-9853-41c7-b463-64ce0dfeabbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074509Z:fc8382ce-593c-40b2-aed2-208c93cd7511" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f359-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4561815f0291eb4f5f66e80f64385056", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8e6e401-6dd5-4d48-bff3-67f6ce9766ee", + "x-ms-client-request-id": "4561815f0291eb4f5f66e80f64385056", + "x-ms-correlation-request-id": "1cb5a464-9e3e-44d1-9eac-2b3578d96554", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "5e16500e-1b9f-4f2b-a053-ed74bad4ca10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074510Z:1cb5a464-9e3e-44d1-9eac-2b3578d96554" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f35a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfee8a164d357154382d5fdd6da167d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8a52092-6617-4328-a340-862ad1a1f4d2", + "x-ms-client-request-id": "cfee8a164d357154382d5fdd6da167d0", + "x-ms-correlation-request-id": "721fdaa9-c94f-408c-8d78-cad5e33e2cf0", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "e525e4b7-57a4-41fd-901f-88a0c7fb8669", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074512Z:721fdaa9-c94f-408c-8d78-cad5e33e2cf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f35b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a61a9ab2acb8f5e8d8c39158854f4149", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "833ee9a6-4736-49a5-b49e-b6963c4f1dba", + "x-ms-client-request-id": "a61a9ab2acb8f5e8d8c39158854f4149", + "x-ms-correlation-request-id": "58591613-701d-4d26-a154-50c7025a6ee6", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "65e41f85-e060-4a89-9f07-aeac9b7aceec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074513Z:58591613-701d-4d26-a154-50c7025a6ee6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f35c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e20ba84bf765119b2def0d64a2727ebd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7555f90e-83af-4d0d-8cb7-8fa8528b0f7c", + "x-ms-client-request-id": "e20ba84bf765119b2def0d64a2727ebd", + "x-ms-correlation-request-id": "68cf0a34-6688-4179-9578-51a774868034", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "61c7dee0-0d8c-41d9-85f4-b2d2b72f9dda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074514Z:68cf0a34-6688-4179-9578-51a774868034" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f35d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca5d17feaa1e699da1f8f671bcfbece8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c829f154-a19f-4e45-9c52-13fe28a080a5", + "x-ms-client-request-id": "ca5d17feaa1e699da1f8f671bcfbece8", + "x-ms-correlation-request-id": "7f1d8809-44ce-4cf1-88ac-cf1716b65e07", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "fe6ad1c8-b907-4cb7-94c6-570efb20777b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074515Z:7f1d8809-44ce-4cf1-88ac-cf1716b65e07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f35e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c49215eb8595bb6bff0878c99f835366", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47a1e044-7a6d-4e43-8328-92cfb70744c5", + "x-ms-client-request-id": "c49215eb8595bb6bff0878c99f835366", + "x-ms-correlation-request-id": "d863e472-1baa-4747-9150-4a9a6b194ff4", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "beb28f4a-5700-4d6e-985b-ea4a3d0e59d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074517Z:d863e472-1baa-4747-9150-4a9a6b194ff4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f35f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d59d34577f2a02b0ba2406d00295431", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b662ce6-aeb5-4696-a884-67a0fed17ae4", + "x-ms-client-request-id": "6d59d34577f2a02b0ba2406d00295431", + "x-ms-correlation-request-id": "c9588f6e-242b-41b0-921c-d2e7c83064b6", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "903c97ca-54c6-490e-bab3-36f45654c78a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074518Z:c9588f6e-242b-41b0-921c-d2e7c83064b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f360-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c782403badf7928aca1ca1531d4ca1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00ccec43-1c43-421e-b3d0-37dee00964e0", + "x-ms-client-request-id": "8c782403badf7928aca1ca1531d4ca1d", + "x-ms-correlation-request-id": "942baad6-cd8f-462f-8a21-8c72b7bb0b01", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "c35e9c6b-8be9-4c65-85fb-755382e80f8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074520Z:942baad6-cd8f-462f-8a21-8c72b7bb0b01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f361-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e92c90a57ea174f6eaf1b8f344fdbad5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da10427a-7b98-415c-a5dd-95722e4efb02", + "x-ms-client-request-id": "e92c90a57ea174f6eaf1b8f344fdbad5", + "x-ms-correlation-request-id": "6a1c7f29-714a-47a5-910c-599717f31dc1", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "ef81533f-c904-4ae2-a647-7ec77e969305", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074521Z:6a1c7f29-714a-47a5-910c-599717f31dc1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f362-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ac646b3c60a8a87abe0c150ac156f36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab095fa2-7a3d-4a27-9606-9289f6e7a7a6", + "x-ms-client-request-id": "7ac646b3c60a8a87abe0c150ac156f36", + "x-ms-correlation-request-id": "50af2b38-e6c3-40f0-ac1c-d043e6ee4cb3", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "69bd46f9-6e03-4fb0-b5bf-f625cdacc80e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074522Z:50af2b38-e6c3-40f0-ac1c-d043e6ee4cb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f363-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70c722d76bfd84902e04a1ed013434ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ffec32a5-74c9-498c-bf67-d27c8e905095", + "x-ms-client-request-id": "70c722d76bfd84902e04a1ed013434ae", + "x-ms-correlation-request-id": "0d3cbb8d-9e23-4da1-8f70-6484b39291cf", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "74509f1d-1f59-4fc2-88fb-923ee6488cab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074523Z:0d3cbb8d-9e23-4da1-8f70-6484b39291cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f364-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea62f5e74f0ede1308a13ec1bca5c8d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8b3b2eb-af97-40dd-a45a-956607c72b21", + "x-ms-client-request-id": "ea62f5e74f0ede1308a13ec1bca5c8d4", + "x-ms-correlation-request-id": "62aa6ec8-000f-478c-98e3-54022fab0899", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "384e6445-69ef-44cf-bdca-d1af8d39fdaf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074525Z:62aa6ec8-000f-478c-98e3-54022fab0899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f365-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "221b81824a3648d8b6414c0624998976", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46b2ca6a-3c6a-4074-be40-d9e3b83f4eb6", + "x-ms-client-request-id": "221b81824a3648d8b6414c0624998976", + "x-ms-correlation-request-id": "8e5a171c-cbb9-423c-8165-2cf8c7771ec0", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "90837525-827b-4925-9f0b-9378fe1f3fd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074526Z:8e5a171c-cbb9-423c-8165-2cf8c7771ec0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f366-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b76913ac84b387280fe8675b2dcfc788", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cbbd576d-f4b0-45ba-86c1-3847cc11ea9d", + "x-ms-client-request-id": "b76913ac84b387280fe8675b2dcfc788", + "x-ms-correlation-request-id": "4e9446c2-2baf-42c2-b440-2e7789905fcd", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "9bc7ad7f-70e2-4c1f-adea-e032ded74105", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074527Z:4e9446c2-2baf-42c2-b440-2e7789905fcd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f367-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f6bcd3b12199c771c1a33cd030cba6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49814944-4496-468a-8adc-797ba60ff7e2", + "x-ms-client-request-id": "7f6bcd3b12199c771c1a33cd030cba6f", + "x-ms-correlation-request-id": "a530ba21-1afd-4d4e-a384-08841cac8693", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "32038d26-fb94-4aab-80e4-5fcd6179ed6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074528Z:a530ba21-1afd-4d4e-a384-08841cac8693" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f368-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a914c817103cfd215993124de37c1be7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b3c26622-0e4a-4803-a11e-2b405c7339c9", + "x-ms-client-request-id": "a914c817103cfd215993124de37c1be7", + "x-ms-correlation-request-id": "175150de-36d2-402d-8142-b34f08538b20", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "9b8611e2-023b-4ed2-ad37-d014edb3d7f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074530Z:175150de-36d2-402d-8142-b34f08538b20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f369-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57cbc379092d995d9bcc9a99505b8403", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78adc4e8-96c9-40b8-9464-83a8c866abba", + "x-ms-client-request-id": "57cbc379092d995d9bcc9a99505b8403", + "x-ms-correlation-request-id": "962d8d6c-cb38-4302-8f72-28673e86a8fd", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "5bf921e1-ba6c-4864-aa30-b3619a090822", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074531Z:962d8d6c-cb38-4302-8f72-28673e86a8fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f36a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6443f72e1eba2a4cab6d26850029b99f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6eecdcdd-f434-414d-b66f-cdb21b3e9b1c", + "x-ms-client-request-id": "6443f72e1eba2a4cab6d26850029b99f", + "x-ms-correlation-request-id": "0e4c4057-ff86-41c3-b7b9-c6df2fedb196", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "b8785a69-56df-46bc-9fb8-ee84833d43ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074532Z:0e4c4057-ff86-41c3-b7b9-c6df2fedb196" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f36b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f534cff62410e416b7a0e6f7588acfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a698a614-be45-40a1-9f3c-498e5be97240", + "x-ms-client-request-id": "3f534cff62410e416b7a0e6f7588acfd", + "x-ms-correlation-request-id": "f0ac87d9-5e25-4726-b437-e37e3bd33f2e", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "412105c7-7f5e-4862-978b-a43c5f7926a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074534Z:f0ac87d9-5e25-4726-b437-e37e3bd33f2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f36c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb1f0f0fb6395b2d76a0acbfe3d89971", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "caa69b1a-5b57-42cd-a813-ac4f9a0119d9", + "x-ms-client-request-id": "eb1f0f0fb6395b2d76a0acbfe3d89971", + "x-ms-correlation-request-id": "6f9dca9d-29fd-4b0a-abb5-074231b189cc", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "bc078a97-a4cb-4670-a990-0a8f6fed0eb0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074535Z:6f9dca9d-29fd-4b0a-abb5-074231b189cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f36d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "049afb134407ccc1b535f93f0fddb423", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25a65854-cff6-46d9-8b6e-5b24a18e27df", + "x-ms-client-request-id": "049afb134407ccc1b535f93f0fddb423", + "x-ms-correlation-request-id": "843775a9-a0a0-4a31-bcb5-f9b261eaa4b9", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "c69a8eae-9a46-4310-a87b-58a6aa07e87e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074536Z:843775a9-a0a0-4a31-bcb5-f9b261eaa4b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f36e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f07528c0cd0a48661ef8c8a0b6822b92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d164d399-6bd2-4c12-822c-9ac2c7f77c2a", + "x-ms-client-request-id": "f07528c0cd0a48661ef8c8a0b6822b92", + "x-ms-correlation-request-id": "8b8a03e3-27bb-4548-b0b9-e490285eb875", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "cc14350a-1752-4a97-811f-b122265a071b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074537Z:8b8a03e3-27bb-4548-b0b9-e490285eb875" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f36f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a5c9de0a8eecaf54d533603bced4b99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c74c8c0a-93dc-47c7-a9e1-ba493e12e557", + "x-ms-client-request-id": "7a5c9de0a8eecaf54d533603bced4b99", + "x-ms-correlation-request-id": "50494879-9996-44d9-af47-fa811c4d05b3", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "32748726-8f10-4416-91e3-0a796d899628", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074539Z:50494879-9996-44d9-af47-fa811c4d05b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f370-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bafe88eba96245669451e50f7b201533", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e27dfead-03aa-4c9a-8318-14cdd6cca939", + "x-ms-client-request-id": "bafe88eba96245669451e50f7b201533", + "x-ms-correlation-request-id": "bf76f31f-a100-4c95-acd3-df125e5f585d", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "addb1460-259c-45ed-a9b5-eac099eccddf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074540Z:bf76f31f-a100-4c95-acd3-df125e5f585d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f371-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "725e660a3a81183532aaa3b797638c30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3dcfc34-eb69-4a7f-8636-05fdd4c60e57", + "x-ms-client-request-id": "725e660a3a81183532aaa3b797638c30", + "x-ms-correlation-request-id": "cbaaeecc-27b9-496e-baec-6ad7db4400c5", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "78877120-74ef-4f9c-bd09-1d80c101e771", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074542Z:cbaaeecc-27b9-496e-baec-6ad7db4400c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f372-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2db52fac708337303616e69cc2e64e2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b60bf6f-2ece-4efe-b3fe-0f3ed3cc7fd4", + "x-ms-client-request-id": "2db52fac708337303616e69cc2e64e2c", + "x-ms-correlation-request-id": "2537ad01-03df-4d53-ade6-5396c1a93104", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "0fe08447-17d2-4731-ad5d-00c55be661c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074543Z:2537ad01-03df-4d53-ade6-5396c1a93104" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f373-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55f9023dd98fb11853e687b705afad31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1358d42b-a022-4b77-9e38-17ffc951f945", + "x-ms-client-request-id": "55f9023dd98fb11853e687b705afad31", + "x-ms-correlation-request-id": "877ada27-8c25-4001-aa7f-6ac41b5c2880", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "8665f222-a432-4f11-9675-b26f6d59c1f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074544Z:877ada27-8c25-4001-aa7f-6ac41b5c2880" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f374-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c62b4c4e86b99b036263b6a5498564c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d82d7a08-fe02-4fe8-bbd5-bcd7063edfcb", + "x-ms-client-request-id": "4c62b4c4e86b99b036263b6a5498564c", + "x-ms-correlation-request-id": "3b2bcb00-209e-4dd8-8a0e-a98fef93b1d6", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "e0bc9b99-121c-4d03-874a-1e45171a257e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074546Z:3b2bcb00-209e-4dd8-8a0e-a98fef93b1d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f375-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9579775c3669d3a11603da9de8783286", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "946c9dea-7de8-4ca5-8ef9-188f5b94c025", + "x-ms-client-request-id": "9579775c3669d3a11603da9de8783286", + "x-ms-correlation-request-id": "d375d7ca-45dd-4808-8669-03ba75459f5a", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "4e2eea15-75b1-43a2-8393-04718899ee4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074547Z:d375d7ca-45dd-4808-8669-03ba75459f5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f376-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0dd7b469028355c0525f1f689dae5dba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8c59934-b13c-46a8-939a-ef86e9c558ac", + "x-ms-client-request-id": "0dd7b469028355c0525f1f689dae5dba", + "x-ms-correlation-request-id": "9120d873-241f-4418-bd4a-a47aab0f1cd8", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "101e7504-90b3-4034-890c-913654340f19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074549Z:9120d873-241f-4418-bd4a-a47aab0f1cd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f377-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d5b3b9018368ec7138f35670d13b0bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd8d9a5b-0c27-4fe9-b654-286bbfebe4ce", + "x-ms-client-request-id": "8d5b3b9018368ec7138f35670d13b0bd", + "x-ms-correlation-request-id": "5d24cfbf-f628-4967-9d3b-787fe151c349", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "93dcc6c2-623c-4483-b140-4ec17bde195a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074550Z:5d24cfbf-f628-4967-9d3b-787fe151c349" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f378-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f00b5f448c059c8b623420a17383668", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f5d9920-47a3-42fa-b161-28a325ad8dc7", + "x-ms-client-request-id": "9f00b5f448c059c8b623420a17383668", + "x-ms-correlation-request-id": "79fb439c-eaf2-4f21-a6df-b9e2a6cbce2c", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "41d361ff-7cfd-4f5c-88c1-7fb1b6434bf5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074551Z:79fb439c-eaf2-4f21-a6df-b9e2a6cbce2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f379-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad0c1fa6a41d5050ec49faf4cc59473f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c44a5e70-e5be-4e29-a814-eebff6b026ca", + "x-ms-client-request-id": "ad0c1fa6a41d5050ec49faf4cc59473f", + "x-ms-correlation-request-id": "a523c333-7a56-441a-8407-4d1909b4b862", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "789d06a3-b1b8-4008-af26-c4231b5f7677", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074553Z:a523c333-7a56-441a-8407-4d1909b4b862" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f37a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e87461aebdad47fa7201d712d5bd76da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9fcbeae1-7416-476e-bd9d-d7ce4be4e7ca", + "x-ms-client-request-id": "e87461aebdad47fa7201d712d5bd76da", + "x-ms-correlation-request-id": "63262a47-2b22-4a8d-ac57-22fa533ca24f", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "ab9b5647-b65c-4ab9-ab7c-6576e8529bfb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074554Z:63262a47-2b22-4a8d-ac57-22fa533ca24f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f37b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eec0cd5903064fa064afb3774dd48d5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a01013af-c9a2-4df3-b4e0-6316a79d5d91", + "x-ms-client-request-id": "eec0cd5903064fa064afb3774dd48d5d", + "x-ms-correlation-request-id": "80b84719-e94a-4f0b-98f9-6328c8eacd4d", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "20d7cb3b-c756-40d5-857c-8b93bf3cac97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074555Z:80b84719-e94a-4f0b-98f9-6328c8eacd4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f37c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b55b02dc4ec3e8ba25c43a1bcd3e7b2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ecca17a-53d4-4104-babb-63d4e3d191c7", + "x-ms-client-request-id": "b55b02dc4ec3e8ba25c43a1bcd3e7b2e", + "x-ms-correlation-request-id": "554f068e-b613-4749-b4b2-acb5e4b20106", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "bec3e878-9ded-4a75-be9d-9d2ef4977490", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074556Z:554f068e-b613-4749-b4b2-acb5e4b20106" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f37d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff9a1fd25998ab39c12583fd0a82fa9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84f4a0ab-5765-4982-8554-a4dfedabb84d", + "x-ms-client-request-id": "ff9a1fd25998ab39c12583fd0a82fa9e", + "x-ms-correlation-request-id": "feb40313-ee24-4a65-9584-d4deae1f5128", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "b65ea6c3-2de2-45a6-9578-6c5ad5ee8037", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074558Z:feb40313-ee24-4a65-9584-d4deae1f5128" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f37e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2357974c1620b1612d8c841c8848125", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:45:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7447c6be-5804-4ba3-b38b-eb079b1c9780", + "x-ms-client-request-id": "d2357974c1620b1612d8c841c8848125", + "x-ms-correlation-request-id": "29a55cec-f0b9-4021-9a7d-a7e525121660", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "943667fc-9b1b-4aef-835a-bf7eb4c47eba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074559Z:29a55cec-f0b9-4021-9a7d-a7e525121660" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f37f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ea484348e3982c5c9aff39ecabddda2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6603f9b9-9a8c-45d3-b73f-d799a5bf954d", + "x-ms-client-request-id": "2ea484348e3982c5c9aff39ecabddda2", + "x-ms-correlation-request-id": "d99c78dd-fe2d-4562-a6ae-dcebf31483fb", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "660be9a9-ad33-4f31-b8c8-eed091e1195e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074600Z:d99c78dd-fe2d-4562-a6ae-dcebf31483fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f380-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53a79ccaa80811cb088fecbf90f8e23c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "082d4b25-ecc8-4044-be76-0447e86276bf", + "x-ms-client-request-id": "53a79ccaa80811cb088fecbf90f8e23c", + "x-ms-correlation-request-id": "c3794cfa-4033-4424-8ef8-9af60b6ab2fd", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "d29e66ea-f708-4541-83d4-ba51b7152606", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074602Z:c3794cfa-4033-4424-8ef8-9af60b6ab2fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f381-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86c95ea3cbdee564b4b309b2cd784055", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c1455956-3326-4c83-9228-9280fe3a7921", + "x-ms-client-request-id": "86c95ea3cbdee564b4b309b2cd784055", + "x-ms-correlation-request-id": "d59eb10a-4cc9-4899-9a66-363c9c392d16", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "c22a6504-5255-42b4-a30b-0ce921e00fbe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074604Z:d59eb10a-4cc9-4899-9a66-363c9c392d16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f382-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c7626fa2edd8c1db89325a9a105f1d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ab5503a-639e-4e7a-9ae0-9217eafa7391", + "x-ms-client-request-id": "2c7626fa2edd8c1db89325a9a105f1d1", + "x-ms-correlation-request-id": "35d66d98-e0da-4463-9d93-3042463ebfdd", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "02f80a0d-dc1b-4313-b8c3-38e5aa5dd5ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074605Z:35d66d98-e0da-4463-9d93-3042463ebfdd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f383-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6bfbb7cd57f4ffc337c19f559e194390", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1bff6427-ba08-451f-9bd5-9e6af6edaedc", + "x-ms-client-request-id": "6bfbb7cd57f4ffc337c19f559e194390", + "x-ms-correlation-request-id": "b302bb88-52c1-46fb-b7f3-c9d92d16e4ba", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "1ae22fe2-ba62-4633-a016-b341ab3b84d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074606Z:b302bb88-52c1-46fb-b7f3-c9d92d16e4ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f384-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ac5974fb581755f413ccd4ba6bb44ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4485db7e-a1f2-434b-92a9-c429d8c378fb", + "x-ms-client-request-id": "6ac5974fb581755f413ccd4ba6bb44ae", + "x-ms-correlation-request-id": "133b5d33-1ac5-4c1f-80b8-2d02ed80e5ab", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "ff38594d-8342-4e6e-9e05-b7f122ba4554", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074608Z:133b5d33-1ac5-4c1f-80b8-2d02ed80e5ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f385-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16e538c1d47da2616277f51c8ec7ed9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6514a1e4-9337-47e9-ab60-f904516285cc", + "x-ms-client-request-id": "16e538c1d47da2616277f51c8ec7ed9f", + "x-ms-correlation-request-id": "9ac40f21-d89d-4b84-850e-808705ae7a4a", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "16ce86dd-bd45-458e-a6ba-4a9bd0f3a5d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074609Z:9ac40f21-d89d-4b84-850e-808705ae7a4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f386-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a5a944f8740174f58852ab78978587c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "035cfe9f-9182-46a1-b271-c7e13d64858a", + "x-ms-client-request-id": "0a5a944f8740174f58852ab78978587c", + "x-ms-correlation-request-id": "cc4ea963-953a-4bb5-97f0-ed0afa5ffbce", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "539a4cdb-0edf-41c9-ac41-f943fadc114a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074610Z:cc4ea963-953a-4bb5-97f0-ed0afa5ffbce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f387-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6693f17d2d337a133522080ac042e779", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f394d11d-29e2-4dc2-b9ee-14aff990f643", + "x-ms-client-request-id": "6693f17d2d337a133522080ac042e779", + "x-ms-correlation-request-id": "b2cb7895-6143-4028-9830-55fe95cc06af", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "40b3ad46-1a94-4d27-a7bd-8553db3aae85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074611Z:b2cb7895-6143-4028-9830-55fe95cc06af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f388-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11fc2e4e39603a6ee8cebdf7aaa919ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc985d51-ecb6-44dd-868c-095640990768", + "x-ms-client-request-id": "11fc2e4e39603a6ee8cebdf7aaa919ea", + "x-ms-correlation-request-id": "fab0d7b5-ef3e-409e-a745-f3393bc33e44", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "9867bea2-ee3f-431d-8c3b-eb9b45481419", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074613Z:fab0d7b5-ef3e-409e-a745-f3393bc33e44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f389-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c9f781e8634216c81e0d41d7f445615", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6c01b90-e550-4819-8add-10d31be63d20", + "x-ms-client-request-id": "9c9f781e8634216c81e0d41d7f445615", + "x-ms-correlation-request-id": "37beb877-4a74-48d4-9608-b5e0e9e01bfb", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "63fa49c8-97bd-4091-b3d1-35b48b42b633", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074614Z:37beb877-4a74-48d4-9608-b5e0e9e01bfb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f38a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a68b19e467c431c83587d656f1bd08b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db5b34b5-452c-4fe4-be7f-0c53f98d8fad", + "x-ms-client-request-id": "5a68b19e467c431c83587d656f1bd08b", + "x-ms-correlation-request-id": "c5fba6d3-f53c-40fd-807a-ed00f8e7cd39", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "cad58363-0c22-41fb-bd16-9670b395909c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074615Z:c5fba6d3-f53c-40fd-807a-ed00f8e7cd39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f38b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48ec1d084aa3c744c2db90806450bba4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48a3012c-c752-4b52-9317-068b0a70a017", + "x-ms-client-request-id": "48ec1d084aa3c744c2db90806450bba4", + "x-ms-correlation-request-id": "357eb454-ea44-490d-9f98-94d951215662", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "fa62372a-7310-402f-97c4-20c3bd0e9424", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074617Z:357eb454-ea44-490d-9f98-94d951215662" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f38c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f858a877be41d86d5c5b19db0906b165", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bbe50f30-a443-4954-bc23-d24d40011dd4", + "x-ms-client-request-id": "f858a877be41d86d5c5b19db0906b165", + "x-ms-correlation-request-id": "50616aad-33ca-4dad-bd6f-96679174a21c", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "aa93bfd5-002e-4f4c-81e8-b75da0ed10f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074618Z:50616aad-33ca-4dad-bd6f-96679174a21c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f38d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "611548100e5854716ca098a1b59bde33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "885a8100-cdb7-4188-b384-746adbe47e13", + "x-ms-client-request-id": "611548100e5854716ca098a1b59bde33", + "x-ms-correlation-request-id": "932805e9-cc07-4d0f-b784-a7b07ae85ddf", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "8452be50-a63d-4795-928b-e69d0596eaa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074619Z:932805e9-cc07-4d0f-b784-a7b07ae85ddf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f38e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7eed99dd7c34a4ab013eb483069bebb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35c7ad4b-040e-4db4-a16f-eaf367345b58", + "x-ms-client-request-id": "c7eed99dd7c34a4ab013eb483069bebb", + "x-ms-correlation-request-id": "63738123-104f-42ca-827f-f1567a197870", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "bfd70da5-0633-4ffa-be8b-6af68d0e0379", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074621Z:63738123-104f-42ca-827f-f1567a197870" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f38f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c6f2b295a3b684b37048ba026cc22c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7deeef3a-fbe7-4cb7-a9cd-7d2b0c4c2584", + "x-ms-client-request-id": "1c6f2b295a3b684b37048ba026cc22c0", + "x-ms-correlation-request-id": "53e46d54-dc7d-4860-bce6-b9909483280b", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "2c573e01-4517-4241-b89a-d8dcc0508520", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074622Z:53e46d54-dc7d-4860-bce6-b9909483280b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f390-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f3ee67cea1838a2fecab14423292403", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bfd38daa-c965-48a6-aca4-2f62bf7e9837", + "x-ms-client-request-id": "2f3ee67cea1838a2fecab14423292403", + "x-ms-correlation-request-id": "3e4c1a10-7935-406f-a8b4-ae086e11eb10", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "a22b4aa4-3200-4ac8-8174-3cb5c1d57e87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074623Z:3e4c1a10-7935-406f-a8b4-ae086e11eb10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f391-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a77dce2c22c43f78e858fbe4baa23e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53f87062-b3ee-4157-8469-945c3c115d3f", + "x-ms-client-request-id": "8a77dce2c22c43f78e858fbe4baa23e3", + "x-ms-correlation-request-id": "8045ee76-4d34-4a1f-80a9-c7852304dca1", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "a7025c03-29eb-4f80-af46-5aaf569bcd5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074624Z:8045ee76-4d34-4a1f-80a9-c7852304dca1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f392-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49cb2af18f2a3fa289361d70a906440d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80300b21-2904-49a5-8b5a-87dfc1b2ff4f", + "x-ms-client-request-id": "49cb2af18f2a3fa289361d70a906440d", + "x-ms-correlation-request-id": "40df56f9-74f1-40b4-9294-64b27d36c877", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "3be03ca9-0582-40e5-9354-149c9a7c788c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074626Z:40df56f9-74f1-40b4-9294-64b27d36c877" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f393-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49be87df9755ba94eefaa0935ae3ed53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9e7b6b2-d2eb-41ed-afbd-c959161fe102", + "x-ms-client-request-id": "49be87df9755ba94eefaa0935ae3ed53", + "x-ms-correlation-request-id": "28038469-3dba-4928-ba0f-98d709c72c68", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "163a9a0e-982b-4500-ab22-76ebcc26adb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074627Z:28038469-3dba-4928-ba0f-98d709c72c68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f394-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f852cda7da5d52d8393701f5a4879a87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49c8280a-0cef-4660-813e-798576565984", + "x-ms-client-request-id": "f852cda7da5d52d8393701f5a4879a87", + "x-ms-correlation-request-id": "4fc89ee6-d9a7-41e2-b58f-66327d7a6ac3", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "fb5638df-13bc-4248-8e9b-799fc77b50fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074628Z:4fc89ee6-d9a7-41e2-b58f-66327d7a6ac3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f395-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3df8140d9eb5a8d96115a30ee0fe5a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "824a5db9-8f07-4123-8378-38c9b2c8b435", + "x-ms-client-request-id": "c3df8140d9eb5a8d96115a30ee0fe5a5", + "x-ms-correlation-request-id": "a4202a80-2ab0-4d27-a2db-baf2241a1574", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "9b59f6b9-d2b4-4acc-8091-6813a0a38f5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074630Z:a4202a80-2ab0-4d27-a2db-baf2241a1574" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f396-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbc9ca494cb405b0af6b101d959f1567", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04b7c05d-4ff4-4767-91a5-3df68f7343fd", + "x-ms-client-request-id": "dbc9ca494cb405b0af6b101d959f1567", + "x-ms-correlation-request-id": "9ee0de52-51aa-4745-aa0b-2bc0a8a20010", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "8b3adbac-f3e4-494b-bbf7-b3aa2e67c840", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074631Z:9ee0de52-51aa-4745-aa0b-2bc0a8a20010" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f397-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d85219602904cd683ff8614c80a86329", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cca18d7-bf19-4597-8404-72fd8731f258", + "x-ms-client-request-id": "d85219602904cd683ff8614c80a86329", + "x-ms-correlation-request-id": "02d0c664-bfee-48ea-9187-7593f5967131", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "8578f8d4-c936-40d7-94ed-b31b8e66fa82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074632Z:02d0c664-bfee-48ea-9187-7593f5967131" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f398-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "daab5b52bebef4d3d1d9147fc970c4f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3267ee34-8816-44cc-a949-a6076a77b47b", + "x-ms-client-request-id": "daab5b52bebef4d3d1d9147fc970c4f7", + "x-ms-correlation-request-id": "cbd97f97-ba2a-4a9c-b500-f293daf5b8f3", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "80a2c12b-3227-41bf-b714-4efc28913fcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074634Z:cbd97f97-ba2a-4a9c-b500-f293daf5b8f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f399-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4cff3fb0dbd20a161fb9bbbea638506", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bcb8b991-381f-4231-b0c2-ed328e67cd11", + "x-ms-client-request-id": "d4cff3fb0dbd20a161fb9bbbea638506", + "x-ms-correlation-request-id": "377feddd-7619-4533-84ea-2d9a7b426ead", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "df6671e1-849d-4901-b3a9-6c5cc11982e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074635Z:377feddd-7619-4533-84ea-2d9a7b426ead" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f39a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3acbe6083af3a1a8465d062a14e803cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0434cae-5c8e-4387-bb78-c14433dc3b4e", + "x-ms-client-request-id": "3acbe6083af3a1a8465d062a14e803cf", + "x-ms-correlation-request-id": "651c691b-c06c-433d-bd9f-71f3bdcfa71a", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "dcfbd251-2c48-498b-91ae-7789f375f5f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074636Z:651c691b-c06c-433d-bd9f-71f3bdcfa71a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f39b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c506a338ed9456bba8b78c223170a6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40ecca3b-8986-4b01-8515-bfdbe6346371", + "x-ms-client-request-id": "8c506a338ed9456bba8b78c223170a6e", + "x-ms-correlation-request-id": "45ec3681-26f1-49fb-b9d4-904c87dc50bc", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "e1db562d-9adc-4b0b-9d02-c5c09cafbf29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074637Z:45ec3681-26f1-49fb-b9d4-904c87dc50bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f39c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2770e548aa5c1044a2d8e6006770b79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b4101fc-d721-4830-b617-0f0063aa2fff", + "x-ms-client-request-id": "e2770e548aa5c1044a2d8e6006770b79", + "x-ms-correlation-request-id": "7970ec80-5470-4127-8ede-54a618b93106", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "b403920b-ab9b-4fd9-888e-1a7dbeac2c65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074639Z:7970ec80-5470-4127-8ede-54a618b93106" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f39d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8087ccf7f812792c7b857f68c1e57e2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac930b5b-fb8a-464b-a823-1906c25d29d8", + "x-ms-client-request-id": "8087ccf7f812792c7b857f68c1e57e2f", + "x-ms-correlation-request-id": "17338ba4-e6bf-4205-89d7-85eaec928933", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "b264966e-0e2b-4ef8-8a10-ae6862a59a7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074640Z:17338ba4-e6bf-4205-89d7-85eaec928933" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f39e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06d597532170a92a668f41ab000b3e43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff15ee88-82f1-4d87-a076-7adfca5280e5", + "x-ms-client-request-id": "06d597532170a92a668f41ab000b3e43", + "x-ms-correlation-request-id": "b8f36493-5af9-4819-817a-02f8a8b2aa4e", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "c6f74b3b-c69e-4e26-af94-dc8900cc51f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074641Z:b8f36493-5af9-4819-817a-02f8a8b2aa4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f39f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57cafe7f898f5c5be1fe671f0a9bff64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "82a6e3f9-26e6-4656-80ad-1b2eed53a3df", + "x-ms-client-request-id": "57cafe7f898f5c5be1fe671f0a9bff64", + "x-ms-correlation-request-id": "7085f647-1809-4fc0-82b8-bfb02bfba549", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "390fb56d-079a-40cd-9dfa-466ccd620d70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074643Z:7085f647-1809-4fc0-82b8-bfb02bfba549" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3a0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e0c5faf05a1d609a2de1982b681796f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8934859-ee97-422b-9f46-eb42365dc96e", + "x-ms-client-request-id": "6e0c5faf05a1d609a2de1982b681796f", + "x-ms-correlation-request-id": "52324b8d-edf6-43d4-9a06-a8ed6c0fbc4b", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "561a7717-b64a-4993-a595-1a2224a6b0a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074644Z:52324b8d-edf6-43d4-9a06-a8ed6c0fbc4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3a1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3e93c46271bc99f3c792572ba0a9eca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2cabf064-e726-42fc-9500-3abff3885013", + "x-ms-client-request-id": "c3e93c46271bc99f3c792572ba0a9eca", + "x-ms-correlation-request-id": "1f136c56-5985-423c-909a-3ae24b1c45e6", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "8d97e13c-35e2-4055-87e5-ee68b72b7c8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074646Z:1f136c56-5985-423c-909a-3ae24b1c45e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3a2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1fcdc90d0ff7aa1f5f4b5b16fd9a55f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b080c95-de38-45e3-9c5e-d576dd7f3cda", + "x-ms-client-request-id": "a1fcdc90d0ff7aa1f5f4b5b16fd9a55f", + "x-ms-correlation-request-id": "a8e40afa-8acc-4f97-aa56-351ec2550ec4", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "8ae4f39b-ff53-4f13-b538-bbebecb0608a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074647Z:a8e40afa-8acc-4f97-aa56-351ec2550ec4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3a3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ced8f7853cb28849bf423228e0971c97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8b55598-6b2e-4078-890c-43603cf8d518", + "x-ms-client-request-id": "ced8f7853cb28849bf423228e0971c97", + "x-ms-correlation-request-id": "c950708f-2eb8-4f42-be1d-0eed26af7ee7", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "fcd52061-097d-4527-8f38-ac8bccf349f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074648Z:c950708f-2eb8-4f42-be1d-0eed26af7ee7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3a4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "daf24f3fd78576709a6fcd2672ee5963", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3bf1b875-1226-4495-a572-4b2c1462675d", + "x-ms-client-request-id": "daf24f3fd78576709a6fcd2672ee5963", + "x-ms-correlation-request-id": "d547d0bb-dfaa-4507-8223-8e745ab682da", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "0140221d-aadd-4abe-af88-3c588beb8238", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074650Z:d547d0bb-dfaa-4507-8223-8e745ab682da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3a5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2ecc5d3d03154189273e1bc9d79995e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9a1d3a7-fe45-4fa4-bb9c-1b8d4a6ec41a", + "x-ms-client-request-id": "c2ecc5d3d03154189273e1bc9d79995e", + "x-ms-correlation-request-id": "135e2b54-d5b2-44e5-865c-d6a3616c7204", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "6db35f96-fa18-4fd9-95d4-8b8a28b3cedf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074651Z:135e2b54-d5b2-44e5-865c-d6a3616c7204" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3a6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20711dd8cbe7adda876134436e2216d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2beaa31c-26b1-436b-b01a-7212f814aed7", + "x-ms-client-request-id": "20711dd8cbe7adda876134436e2216d0", + "x-ms-correlation-request-id": "507f90bb-36c8-4dce-b2bd-ba702f6b1ddc", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "7746fcab-50d8-4379-87ae-861e7329193d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074652Z:507f90bb-36c8-4dce-b2bd-ba702f6b1ddc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3a7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b54cfe859aa6f65379d4711f5b3d920", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b89f5f06-b689-4f57-b282-be75285e31c5", + "x-ms-client-request-id": "1b54cfe859aa6f65379d4711f5b3d920", + "x-ms-correlation-request-id": "7db68a95-398f-4158-a707-ab38d6b43001", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "da6ad5ce-b9d0-42fc-a746-6c9966558b6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074654Z:7db68a95-398f-4158-a707-ab38d6b43001" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3a8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "544e6fd5397c087cea3f3acf9cd4e670", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d966c533-8525-4f44-b8dd-7bdca1593392", + "x-ms-client-request-id": "544e6fd5397c087cea3f3acf9cd4e670", + "x-ms-correlation-request-id": "3fef0ba4-a405-4f41-8cce-f3c78e2912e9", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "8ecab355-cbbb-45db-8ccd-24541c8b0f52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074655Z:3fef0ba4-a405-4f41-8cce-f3c78e2912e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3a9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ced3115d7e247eb4b702e94983c8b7d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84d052a0-e3b7-43e5-a36f-b99994c2d952", + "x-ms-client-request-id": "ced3115d7e247eb4b702e94983c8b7d3", + "x-ms-correlation-request-id": "3b8bfc6c-6c0c-426f-bacc-a0cc18cbb630", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "be20fb0b-e794-41c6-b288-39d4820da37b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074656Z:3b8bfc6c-6c0c-426f-bacc-a0cc18cbb630" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3aa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff6e1388c1d4af53534c306a1f96d262", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "719f4881-0c24-4b4d-95af-bf8666858a28", + "x-ms-client-request-id": "ff6e1388c1d4af53534c306a1f96d262", + "x-ms-correlation-request-id": "697d5a45-2764-44d4-bbda-b122748ddaa8", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "5a6ea10c-c9b7-4990-8cc0-0bf819b7f196", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074657Z:697d5a45-2764-44d4-bbda-b122748ddaa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ab-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4b3d7b70bdf56fcbad09d7a4f328421", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4851c62-4459-4a36-bd36-c2df77e0f199", + "x-ms-client-request-id": "e4b3d7b70bdf56fcbad09d7a4f328421", + "x-ms-correlation-request-id": "c1eabfaa-fbca-4bcb-bea2-bfdbf3841e7c", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "98914ff6-3e13-4980-b351-66909f01f9f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074659Z:c1eabfaa-fbca-4bcb-bea2-bfdbf3841e7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ac-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89476687e6669c9bbd247ad84e495f21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:46:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "add1ecbd-27d3-456a-9f2e-bdef6437f2a2", + "x-ms-client-request-id": "89476687e6669c9bbd247ad84e495f21", + "x-ms-correlation-request-id": "54192f9e-ca5f-45f0-b9aa-a629fef15df6", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "e542176d-8d5d-457a-bccf-9251735a39d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074700Z:54192f9e-ca5f-45f0-b9aa-a629fef15df6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ad-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac928630d2157df41717440324d95f21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7c5ffda-54c3-4519-99de-13224b4469f6", + "x-ms-client-request-id": "ac928630d2157df41717440324d95f21", + "x-ms-correlation-request-id": "1c882740-e0ce-4395-b163-c42661a07c26", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "ebb68a36-7c17-45a6-847f-7a33cafcee50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074701Z:1c882740-e0ce-4395-b163-c42661a07c26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ae-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8e20ec7494ed0fc3b1727bb90230871", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39046691-1144-47ba-85f4-44cc9a405cb9", + "x-ms-client-request-id": "b8e20ec7494ed0fc3b1727bb90230871", + "x-ms-correlation-request-id": "2856096e-5641-4001-aad4-085f2a73789d", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "bab9ed6a-a305-4a41-b272-cf0758b512fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074703Z:2856096e-5641-4001-aad4-085f2a73789d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3af-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c94a7b71d7a0b40c72c9724ea19778e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58154b24-f2bc-4e6e-848f-3c1c892efa0f", + "x-ms-client-request-id": "c94a7b71d7a0b40c72c9724ea19778e4", + "x-ms-correlation-request-id": "d032cbb8-80d1-4a6c-bba4-083656b63708", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "49b5d26b-9ed0-4a4c-8066-77906978d53a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074704Z:d032cbb8-80d1-4a6c-bba4-083656b63708" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3b0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f1159c4a666e6d28ac171feab38ecf3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e58c664-518b-4cd4-a0dc-db66493694eb", + "x-ms-client-request-id": "3f1159c4a666e6d28ac171feab38ecf3", + "x-ms-correlation-request-id": "79396111-4268-4ecf-9ff0-2b4cf9ebd2f8", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "866a0fe9-928f-4424-b2ae-cfa631d6beea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074705Z:79396111-4268-4ecf-9ff0-2b4cf9ebd2f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3b1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a892d30f968fef81022d4584d7ae2fa3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8573bef-b19a-4254-b0c6-33904e9dae21", + "x-ms-client-request-id": "a892d30f968fef81022d4584d7ae2fa3", + "x-ms-correlation-request-id": "7819813a-a7db-4572-ae35-315661c3ee4e", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "5ae74ea5-d054-4859-88b1-e39b542d6f56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074707Z:7819813a-a7db-4572-ae35-315661c3ee4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3b2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37f7439fc812ca0aa8633fde660e093a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ba8ec43-85cb-4c94-b266-ea4d5deb8a5d", + "x-ms-client-request-id": "37f7439fc812ca0aa8633fde660e093a", + "x-ms-correlation-request-id": "d8f93771-c7d5-46ec-a894-17e6e43cde29", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "01bc977e-8917-4a96-8994-118deccbd77e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074708Z:d8f93771-c7d5-46ec-a894-17e6e43cde29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3b3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce3f7eddcf052d54d8213d38614d0fdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "478043e8-21e1-48c4-a01a-f85f85e6d5dd", + "x-ms-client-request-id": "ce3f7eddcf052d54d8213d38614d0fdb", + "x-ms-correlation-request-id": "de884bdf-58a2-4089-bc8a-796866f2295c", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "56d2a38b-2e8f-4770-844e-9e5bebb8e2fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074710Z:de884bdf-58a2-4089-bc8a-796866f2295c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3b4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "685fcd92b54146e1c8c8002b57a288f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e5cf075-c487-4947-972c-62d99c5085b7", + "x-ms-client-request-id": "685fcd92b54146e1c8c8002b57a288f3", + "x-ms-correlation-request-id": "9dda7995-ae6f-4311-a6a3-5a4eb097b16e", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "056c1135-fbad-47be-a7ff-38643e90a345", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074711Z:9dda7995-ae6f-4311-a6a3-5a4eb097b16e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3b5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58a70b24606ecf9eeec95ff08bd1695a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06e44fbf-eb86-4253-945e-ed7106263914", + "x-ms-client-request-id": "58a70b24606ecf9eeec95ff08bd1695a", + "x-ms-correlation-request-id": "736ba824-9901-4625-8a53-faf57832bc0b", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "f9dc83c1-a229-479c-b3dd-be9d3d0e0c7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074712Z:736ba824-9901-4625-8a53-faf57832bc0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3b6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "994c6354a0af28f89df9053ccf28d635", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e87b914-f57e-4c7d-b926-063830c5bd3e", + "x-ms-client-request-id": "994c6354a0af28f89df9053ccf28d635", + "x-ms-correlation-request-id": "3cb891fe-034d-4c31-a2e6-143e48618ba4", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "a2e38033-4c2d-40ce-8a08-2855a21a7c70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074713Z:3cb891fe-034d-4c31-a2e6-143e48618ba4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3b7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55144998b6a6316d2f8f7a7856f0baf6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85109d5f-8f95-47c8-811d-72b20fcc8c66", + "x-ms-client-request-id": "55144998b6a6316d2f8f7a7856f0baf6", + "x-ms-correlation-request-id": "26b060f6-9e14-49af-a6de-065c9c91cf1a", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "ad918c4a-8080-4867-bae6-300737559149", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074715Z:26b060f6-9e14-49af-a6de-065c9c91cf1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3b8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4d7a55fef568444127fbb755a6200c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "280a39c8-6887-4811-9ff3-4ee212bfd157", + "x-ms-client-request-id": "f4d7a55fef568444127fbb755a6200c5", + "x-ms-correlation-request-id": "2f324efd-6a64-4d33-a4b5-2dbfacf24a29", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "0d407bd4-bfbe-4105-babd-13445914bb84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074716Z:2f324efd-6a64-4d33-a4b5-2dbfacf24a29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3b9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "425729f213bd9db4f51a6a202580d2ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "827ccdf3-4812-4be5-a356-71e231b05e23", + "x-ms-client-request-id": "425729f213bd9db4f51a6a202580d2ac", + "x-ms-correlation-request-id": "d216ea2f-fa9f-43e2-bd2b-bb3667a69291", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "0e6ce6ec-7076-4d89-96da-57fcbb5f5fb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074717Z:d216ea2f-fa9f-43e2-bd2b-bb3667a69291" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ba-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29dd0f3ee251a8df058f4227fbf7d6cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08571955-2c8a-4cb2-aaac-53ae26fda3ae", + "x-ms-client-request-id": "29dd0f3ee251a8df058f4227fbf7d6cc", + "x-ms-correlation-request-id": "c5c1e563-57cf-46f8-bc26-e103b63cc623", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "cb4e8041-068d-4be7-b651-167e3f8c680a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074719Z:c5c1e563-57cf-46f8-bc26-e103b63cc623" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3bb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c85b48e78984b39f03afe3b85245e92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba776b23-b5ba-46da-8d5d-a5ba4c66d489", + "x-ms-client-request-id": "2c85b48e78984b39f03afe3b85245e92", + "x-ms-correlation-request-id": "6a55d35c-b15b-493b-b783-a5d466d3fa08", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "d53518b4-525d-404e-8eb7-96b2417ac503", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074720Z:6a55d35c-b15b-493b-b783-a5d466d3fa08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3bc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b370eacd685107449ae3c2dd08da1fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92478f5f-8923-47d0-9dc9-cddb517371fe", + "x-ms-client-request-id": "4b370eacd685107449ae3c2dd08da1fe", + "x-ms-correlation-request-id": "a94bb2ef-ec5a-457c-a8d0-3b7abacca785", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "d1df4058-2089-4ffe-a1c9-7b5793d6a929", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074721Z:a94bb2ef-ec5a-457c-a8d0-3b7abacca785" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3bd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71919d44a5fbc513d5913816e4a423e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09b05ba9-5a84-4c44-9bb8-0c2f258c1ba6", + "x-ms-client-request-id": "71919d44a5fbc513d5913816e4a423e0", + "x-ms-correlation-request-id": "e2debc9d-4c38-40fe-99d4-e87ff9e6b192", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "2b637a65-7973-47e4-a92b-d5b3e88fd0d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074723Z:e2debc9d-4c38-40fe-99d4-e87ff9e6b192" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3be-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed7ab0318ac0b8474075e3e93b0b7a63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6595e6a-140b-4b7b-b81a-7e7a57b3aad1", + "x-ms-client-request-id": "ed7ab0318ac0b8474075e3e93b0b7a63", + "x-ms-correlation-request-id": "6a45b673-ad3c-4512-a042-bad529fe601f", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "7a7bbdb3-0c8e-4fb2-b3cc-26fc9c193232", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074724Z:6a45b673-ad3c-4512-a042-bad529fe601f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3bf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8f7ff98ed930796fa7176f39d5e2ca5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce1331df-f9d9-410f-94c5-57c747cb1ff4", + "x-ms-client-request-id": "e8f7ff98ed930796fa7176f39d5e2ca5", + "x-ms-correlation-request-id": "b6c01ceb-8de8-4618-96ea-b7563642a170", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "79f28008-e889-49a2-a2a0-f96a54802e17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074725Z:b6c01ceb-8de8-4618-96ea-b7563642a170" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3c0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20fc5b8bb412b93d55d93186c2298aca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d67f819-a4e9-4f4b-86fc-9b8182263e7b", + "x-ms-client-request-id": "20fc5b8bb412b93d55d93186c2298aca", + "x-ms-correlation-request-id": "b11dcbd9-aee2-42db-81e3-4171cfa98f9c", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "8e043621-684f-4418-a9be-387a6c5c301d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074727Z:b11dcbd9-aee2-42db-81e3-4171cfa98f9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3c1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e47dd5163aac444d1972f24f14531ae2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29cf5fc2-7bec-4182-9b64-505184505ff3", + "x-ms-client-request-id": "e47dd5163aac444d1972f24f14531ae2", + "x-ms-correlation-request-id": "f62b5c02-fab2-4dbf-a2da-204e3edf8992", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "03ab8a18-37c9-4606-aa99-5ea7ee2750d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074728Z:f62b5c02-fab2-4dbf-a2da-204e3edf8992" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3c2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df5e3d485a0ee451c13d93b9bb1045d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b120fb18-5483-4d93-a050-1fb77e917de5", + "x-ms-client-request-id": "df5e3d485a0ee451c13d93b9bb1045d0", + "x-ms-correlation-request-id": "94a3869d-de4b-47eb-8cf2-7a217d9a22b8", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "d34a6654-cfd0-4625-bcdc-43ab85e2ec9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074729Z:94a3869d-de4b-47eb-8cf2-7a217d9a22b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3c3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8ddabe647e051f80eb8069fc1eea401", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6975ab11-de99-48a1-80d5-9b10faf6abcd", + "x-ms-client-request-id": "c8ddabe647e051f80eb8069fc1eea401", + "x-ms-correlation-request-id": "69c32edc-3b2a-4dee-8f51-759274a51b23", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "0782effd-6943-4e8f-bedd-dc2909653d44", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074730Z:69c32edc-3b2a-4dee-8f51-759274a51b23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3c4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "843d4fbeaacbbcbb8499226ea7938809", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c646a41-352b-4a67-8da5-8c58dbff0349", + "x-ms-client-request-id": "843d4fbeaacbbcbb8499226ea7938809", + "x-ms-correlation-request-id": "a764d7b9-ebe0-4bfd-ba2e-fa7334fccccd", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "b1cd6bcf-3d17-4103-b562-9f9d63a63737", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074732Z:a764d7b9-ebe0-4bfd-ba2e-fa7334fccccd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3c5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6968222d51760101450cd15653b122d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a7cf79f-5af9-4fca-ad7a-45df56543064", + "x-ms-client-request-id": "6968222d51760101450cd15653b122d3", + "x-ms-correlation-request-id": "b4067ed4-2e55-4b65-939e-e7399882ed07", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "cdbadf6b-844b-4f96-a16d-6066b13cb5da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074733Z:b4067ed4-2e55-4b65-939e-e7399882ed07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3c6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cfb9199c1d33c04ef2144472589a97a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ac3dbb9-b8eb-4eb4-be64-fc12d8e3c36a", + "x-ms-client-request-id": "6cfb9199c1d33c04ef2144472589a97a", + "x-ms-correlation-request-id": "136f2739-7d6a-47f4-9130-175bc6de6350", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "7ea19dfd-9160-4786-a420-d74010f7178e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074735Z:136f2739-7d6a-47f4-9130-175bc6de6350" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3c7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f72fd2f3b866d8a4d3c3ebed96568d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88636190-82c0-48c3-abed-a5e64558656c", + "x-ms-client-request-id": "9f72fd2f3b866d8a4d3c3ebed96568d3", + "x-ms-correlation-request-id": "cc147e94-463a-44f1-83d6-bc29be04891c", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "ca1f4a8a-8f10-4c05-a233-972ac32da820", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074736Z:cc147e94-463a-44f1-83d6-bc29be04891c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3c8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15d54f761b986c351d2b79550dbadbbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4de0f95d-25d7-4cc0-80ed-0a6ce9314dad", + "x-ms-client-request-id": "15d54f761b986c351d2b79550dbadbbb", + "x-ms-correlation-request-id": "f2f5c763-34a9-4959-84cd-16f1765a4dbb", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "5f9da088-f338-41a8-b098-93ae3e6bfcd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074737Z:f2f5c763-34a9-4959-84cd-16f1765a4dbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3c9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56265763833e5d4c068d1f978245638a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77c93a69-771a-4948-bbd1-b9d6354e5faf", + "x-ms-client-request-id": "56265763833e5d4c068d1f978245638a", + "x-ms-correlation-request-id": "ff162bc0-8a8c-4459-923a-30705a983edd", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "b270e47b-8662-4e0f-a817-a60916703590", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074739Z:ff162bc0-8a8c-4459-923a-30705a983edd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ca-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6d171b893b314e1c706825ac1346093", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "895445f5-8351-473b-8f3d-d08c276b705d", + "x-ms-client-request-id": "d6d171b893b314e1c706825ac1346093", + "x-ms-correlation-request-id": "feebf791-900b-4986-a4af-5a74e06b7a05", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "e6b21eec-e21f-453e-86e4-69f1ff664608", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074740Z:feebf791-900b-4986-a4af-5a74e06b7a05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3cb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "825b8360113ef39402780e0afc9eead7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f25b2007-f2e2-466c-98d4-5e51e3ce8e66", + "x-ms-client-request-id": "825b8360113ef39402780e0afc9eead7", + "x-ms-correlation-request-id": "10437179-5c73-48fd-bbcd-361ff5eb8bd3", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "e9850e84-7a15-44eb-a0da-87f6deb96b69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074741Z:10437179-5c73-48fd-bbcd-361ff5eb8bd3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3cc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b9cefc805e9cf0775128e3800f19cd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08a05c85-a451-41c0-9781-2e2a03820baf", + "x-ms-client-request-id": "9b9cefc805e9cf0775128e3800f19cd1", + "x-ms-correlation-request-id": "402be95f-45f3-465d-acd1-c1f87891b8ba", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "bd92cbd8-0357-4ba3-b737-27b318c910b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074743Z:402be95f-45f3-465d-acd1-c1f87891b8ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3cd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe368c2de1eaa74bdcddd33b84d61829", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50c7d4c1-779a-4687-83d2-0a530f3b360a", + "x-ms-client-request-id": "fe368c2de1eaa74bdcddd33b84d61829", + "x-ms-correlation-request-id": "d95d7703-ad94-400d-90bb-8010deae7be5", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "4b90a601-60ff-4cd0-a965-9f35d88f149f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074744Z:d95d7703-ad94-400d-90bb-8010deae7be5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ce-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d192aa1bc4985ba97b8c0c2c825cf210", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8b39000-f4f5-4315-a1c4-a2fa513fa896", + "x-ms-client-request-id": "d192aa1bc4985ba97b8c0c2c825cf210", + "x-ms-correlation-request-id": "d1ad0d84-eae2-40df-8c7e-ad1217d6c5a1", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "dc6e3264-b044-4946-8468-5916412dd807", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074745Z:d1ad0d84-eae2-40df-8c7e-ad1217d6c5a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3cf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70dc3cdbeb67e7eda4f5be0b32cb4a9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5208f0c8-ab38-4197-aecd-aed67d5223df", + "x-ms-client-request-id": "70dc3cdbeb67e7eda4f5be0b32cb4a9e", + "x-ms-correlation-request-id": "488267a6-cdb9-441b-85c7-9ebb61dbb58f", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "ad2cda79-d2bb-42cc-8963-8f873174a965", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074747Z:488267a6-cdb9-441b-85c7-9ebb61dbb58f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3d0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "551c65faca5f6939e2db835ed41f2480", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "405af801-ce3f-4997-a89f-d98a9f415484", + "x-ms-client-request-id": "551c65faca5f6939e2db835ed41f2480", + "x-ms-correlation-request-id": "5e9cc99a-de9e-4c7a-9ce2-d655510758f6", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "c3997405-9251-4a02-9ef4-55a00f1cf9a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074748Z:5e9cc99a-de9e-4c7a-9ce2-d655510758f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3d1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4860c2eba7f930c2bdab2da2059e28af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2070772f-a0af-4859-b88e-2b7d17a20935", + "x-ms-client-request-id": "4860c2eba7f930c2bdab2da2059e28af", + "x-ms-correlation-request-id": "000eea3e-f0e6-43f0-8cd9-b04ddd333209", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "d4465d9c-7612-4ffa-b12c-51edf1d0cb76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074749Z:000eea3e-f0e6-43f0-8cd9-b04ddd333209" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3d2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d316e419c3f11b103738e8b688e1285", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4fc2bd8-b592-4b00-9a86-335bf10aeeb5", + "x-ms-client-request-id": "1d316e419c3f11b103738e8b688e1285", + "x-ms-correlation-request-id": "6e103a02-8a1c-4ccb-962f-2a50b7bea9dd", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "802127e5-a292-463a-8b4d-d5d29188639a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074750Z:6e103a02-8a1c-4ccb-962f-2a50b7bea9dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3d3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f1f3dd0026b52a4a3eb98b49c966343", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29f5eab9-a5e3-47a3-9620-87c02af65022", + "x-ms-client-request-id": "6f1f3dd0026b52a4a3eb98b49c966343", + "x-ms-correlation-request-id": "6e7bb9e7-f2e9-4ed2-a638-318a7cb50c4d", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "fbb8d3d9-dd9c-4985-b9e7-7235d84f28ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074752Z:6e7bb9e7-f2e9-4ed2-a638-318a7cb50c4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3d4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "661cd3b307ed4f41114e44861936c82e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47a70e9c-471c-404c-b225-10fa98228e3f", + "x-ms-client-request-id": "661cd3b307ed4f41114e44861936c82e", + "x-ms-correlation-request-id": "6bc362f9-3387-498c-84d4-f2f1dc491ba3", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "75aad6ae-f5ed-456c-a851-4eca3208b69c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074753Z:6bc362f9-3387-498c-84d4-f2f1dc491ba3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3d5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8d2a898b97e3f44c9df795304fc746c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b0290af-5c8f-4821-98c2-ea808b9c3c57", + "x-ms-client-request-id": "c8d2a898b97e3f44c9df795304fc746c", + "x-ms-correlation-request-id": "ba7585c9-3a3e-484e-ba8c-09169ac92157", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "d2bd701e-4393-4bd4-9ea2-a9003cc7c993", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074754Z:ba7585c9-3a3e-484e-ba8c-09169ac92157" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3d6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95d84a10ab72c897fcd05e1dbd1e386c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a72b8e5e-f3ad-4bff-b52c-5a0c80a060f9", + "x-ms-client-request-id": "95d84a10ab72c897fcd05e1dbd1e386c", + "x-ms-correlation-request-id": "21b02ea5-b123-4873-85b2-0a9cc3b1694f", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "217ac8b1-0df6-4b69-885e-36d505510d17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074756Z:21b02ea5-b123-4873-85b2-0a9cc3b1694f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3d7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f41b69239bc4f9c58fdd9c0d8ded4b14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67e0b591-ab2f-4d80-92b2-09d47eaca27f", + "x-ms-client-request-id": "f41b69239bc4f9c58fdd9c0d8ded4b14", + "x-ms-correlation-request-id": "81e3ebc5-7ce0-41f7-9fd5-e245d39554be", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "7ddf71a7-a576-4814-8e01-e7afdd235980", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074757Z:81e3ebc5-7ce0-41f7-9fd5-e245d39554be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3d8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf75d8d9335eedbc100acbad5b2681ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd1d204a-a2f5-4a37-bd15-c6d05930b4a0", + "x-ms-client-request-id": "cf75d8d9335eedbc100acbad5b2681ab", + "x-ms-correlation-request-id": "2dcf4c15-9399-4f48-af5a-ce9de93dbd6e", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "bfaca30a-b8c7-4ba8-b452-8405a3baaaa6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074758Z:2dcf4c15-9399-4f48-af5a-ce9de93dbd6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3d9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a2f0da680e174a885de06950e8a3a0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:47:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95ce130d-1e9c-491d-bda6-8ff9d6ee48a1", + "x-ms-client-request-id": "9a2f0da680e174a885de06950e8a3a0f", + "x-ms-correlation-request-id": "5ce4cec8-7c74-4be1-a464-147d1bdb5a4e", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "ed094d5f-8446-484b-b5ac-ea8e94986580", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074800Z:5ce4cec8-7c74-4be1-a464-147d1bdb5a4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3da-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e443498569a8f00dac2ee3b9d0179e68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9ffe775-56c0-4def-8268-bf8ac30f0cd8", + "x-ms-client-request-id": "e443498569a8f00dac2ee3b9d0179e68", + "x-ms-correlation-request-id": "6f6b08ea-f5a3-49d8-b703-a9853165db79", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "147edbd8-25f5-45df-8a13-86045762b0ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074801Z:6f6b08ea-f5a3-49d8-b703-a9853165db79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3db-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8067f15bb0bd59333001497f2c27de86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a28d2764-22ec-4a19-8d6c-8d3979c3c000", + "x-ms-client-request-id": "8067f15bb0bd59333001497f2c27de86", + "x-ms-correlation-request-id": "900fdd6d-47cf-4378-a724-913cfc6c6930", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "1bedd537-55e2-49da-8255-d74a1ad82a76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074802Z:900fdd6d-47cf-4378-a724-913cfc6c6930" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3dc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1128bbcf9ce33d02003eeeb29deea46d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0916698-a202-4cdc-b66b-5f1cb4988106", + "x-ms-client-request-id": "1128bbcf9ce33d02003eeeb29deea46d", + "x-ms-correlation-request-id": "044361d7-484d-43d2-8983-e964c2ca01d6", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "8f62a2e3-72be-4dc4-ae39-e70f3a2017a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074803Z:044361d7-484d-43d2-8983-e964c2ca01d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3dd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d399d40ba22d55116eab4a71f8dc385", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33aba344-e032-4d88-b9cb-e01856d03c62", + "x-ms-client-request-id": "1d399d40ba22d55116eab4a71f8dc385", + "x-ms-correlation-request-id": "b3fdf45c-cd08-4374-a19e-fa4d1b805982", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "4c5403c7-831b-45c5-a6c3-f54335057d93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074805Z:b3fdf45c-cd08-4374-a19e-fa4d1b805982" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3de-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14e95c508cefbe84ee2a807ec280bc42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43ab1bfc-b961-4518-b299-fa86c3722304", + "x-ms-client-request-id": "14e95c508cefbe84ee2a807ec280bc42", + "x-ms-correlation-request-id": "8fee8786-a09d-4410-bc5a-2d56d4770d65", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "1a2e7397-1446-4822-ac65-7aef67ddfc84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074806Z:8fee8786-a09d-4410-bc5a-2d56d4770d65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3df-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f3fdc5cc1ed15636a52fbf8e85b1d72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa3f916d-74d8-455c-828a-c1aa43a1e1b4", + "x-ms-client-request-id": "8f3fdc5cc1ed15636a52fbf8e85b1d72", + "x-ms-correlation-request-id": "cc3adb85-e22d-4616-aa77-c7afd58a72f9", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "fe87714f-012a-4573-8f5d-2c35a68573af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074807Z:cc3adb85-e22d-4616-aa77-c7afd58a72f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3e0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4062687b9004b47e197a2ef83ad31395", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1164305-8e83-4105-a5eb-e459983931a9", + "x-ms-client-request-id": "4062687b9004b47e197a2ef83ad31395", + "x-ms-correlation-request-id": "bc05e048-333c-4741-9076-adc5fce96693", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "3262b1a7-5dd4-4b5f-b578-272a7b4c1400", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074809Z:bc05e048-333c-4741-9076-adc5fce96693" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3e1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "434a722e344e8e97f9d4aa9c908bd692", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "995948a3-ebd1-4efe-ae1c-790f50d8ceea", + "x-ms-client-request-id": "434a722e344e8e97f9d4aa9c908bd692", + "x-ms-correlation-request-id": "67549360-e3d4-4d84-82df-a99a28e3210c", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "c9d3c0f7-9c52-4b41-b6b5-faa509fe126d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074810Z:67549360-e3d4-4d84-82df-a99a28e3210c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3e2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59030d0c7b1dcc3d5d8b7572926adb96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c763dbbc-6985-4ff6-b28c-96ab050e3d5c", + "x-ms-client-request-id": "59030d0c7b1dcc3d5d8b7572926adb96", + "x-ms-correlation-request-id": "2f3328ce-07cc-4258-a2d1-38e0790ff4c3", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "2eae6c4e-4c65-4435-b815-e2a0a6173753", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074811Z:2f3328ce-07cc-4258-a2d1-38e0790ff4c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3e3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75ca663fd9114624d0d34630e6e2238d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08d4fb2a-6bf9-4260-9e09-d89730123059", + "x-ms-client-request-id": "75ca663fd9114624d0d34630e6e2238d", + "x-ms-correlation-request-id": "df743f53-06e8-48f4-8bc1-dbb7bb97573d", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "3d584977-61be-424f-ab13-7163ed9e1475", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074813Z:df743f53-06e8-48f4-8bc1-dbb7bb97573d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3e4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cec9ba4b9cfb277347ee6c3bf25fc8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ed07d5e-5daf-4f36-9a2e-cdd4e3e80b1e", + "x-ms-client-request-id": "2cec9ba4b9cfb277347ee6c3bf25fc8e", + "x-ms-correlation-request-id": "797a05d6-3c71-4f45-b189-a44e04693a46", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "dba20b6c-1d89-4172-928d-cbf1827beb40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074814Z:797a05d6-3c71-4f45-b189-a44e04693a46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3e5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a5d13f860c13281e9bd8849350de57a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80b1d796-6e11-400e-b60f-15393c1a2548", + "x-ms-client-request-id": "2a5d13f860c13281e9bd8849350de57a", + "x-ms-correlation-request-id": "feb531d7-7058-4b2d-b72c-be0cd3349f3a", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "33a9a965-15a9-4d32-bc8d-2f71f2b6ed9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074815Z:feb531d7-7058-4b2d-b72c-be0cd3349f3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3e6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6cde867af7e85c7ee174092f36187ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d22a557-ad4c-4732-b74d-444d6b05baae", + "x-ms-client-request-id": "f6cde867af7e85c7ee174092f36187ab", + "x-ms-correlation-request-id": "f88a20ef-17bc-4001-9951-2ae4fa224abb", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "f2f08c02-4d1e-4db2-976d-9e5d9d312df3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074817Z:f88a20ef-17bc-4001-9951-2ae4fa224abb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3e7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d238b8d7f98544cb19b94312312d7d27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a71ca8a-e496-4691-a730-3bf546c436da", + "x-ms-client-request-id": "d238b8d7f98544cb19b94312312d7d27", + "x-ms-correlation-request-id": "54bcc6d0-2256-4d9a-9301-6fc570f639a6", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "46a90cd9-126b-4013-a6e6-4d67b35777d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074818Z:54bcc6d0-2256-4d9a-9301-6fc570f639a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3e8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d65b6b98055748104cd73ba91fef3f87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff586d7a-09fd-48f4-b0ab-5de4d7bac6da", + "x-ms-client-request-id": "d65b6b98055748104cd73ba91fef3f87", + "x-ms-correlation-request-id": "76cad4ef-7366-43fe-9893-2b7ada456871", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "76b28c7e-a913-4bb8-b63e-d8e365a68992", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074819Z:76cad4ef-7366-43fe-9893-2b7ada456871" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3e9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c72dd3613d46df51c89dcc46bb454c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1bffad77-b664-4979-b2e2-0a4ec67f36ac", + "x-ms-client-request-id": "7c72dd3613d46df51c89dcc46bb454c0", + "x-ms-correlation-request-id": "17dad96f-f25c-4bbe-a40e-89a42247ca46", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "85509628-e7ad-4d79-9bcc-ee7c3eeb754b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074821Z:17dad96f-f25c-4bbe-a40e-89a42247ca46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ea-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88fa199ab005d154a7ef86adbd21242a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3edc5a1d-8bf1-4cbc-a36a-6e117107faf0", + "x-ms-client-request-id": "88fa199ab005d154a7ef86adbd21242a", + "x-ms-correlation-request-id": "42dca0e0-d85a-45b4-9657-35157b5a20c4", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "9e29a5ed-d4a7-4409-9743-7316fe1f440d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074822Z:42dca0e0-d85a-45b4-9657-35157b5a20c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3eb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54dcbb7a00bb855375edb9cd284bdd97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84f8ac4c-57c1-48a3-84e7-b5aaace1c343", + "x-ms-client-request-id": "54dcbb7a00bb855375edb9cd284bdd97", + "x-ms-correlation-request-id": "8cd99fa5-b6d3-4ad1-94e0-61585dd9cf64", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "47c2b40f-2fc3-47e7-aec5-d1c7c55c4f84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074823Z:8cd99fa5-b6d3-4ad1-94e0-61585dd9cf64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ec-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "060f7b83b7f4858188a0d4e58c48affb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "773850f2-358b-4f3c-8da3-49b81ac1a612", + "x-ms-client-request-id": "060f7b83b7f4858188a0d4e58c48affb", + "x-ms-correlation-request-id": "93e181a6-7057-40ee-8383-221c49715bb0", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "f843d899-2cdf-4c03-aec7-c48c4f76573a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074824Z:93e181a6-7057-40ee-8383-221c49715bb0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ed-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b04ab16400d89905c6741217f787a95c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3555d91c-163e-48c1-a2a7-e8c42d4003ea", + "x-ms-client-request-id": "b04ab16400d89905c6741217f787a95c", + "x-ms-correlation-request-id": "a803951e-f9a5-4e61-b9be-157794b37755", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "264042c4-450a-4fd0-9590-fbe03f71153e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074826Z:a803951e-f9a5-4e61-b9be-157794b37755" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ee-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4229ef121e12c3363956cb1a2b6df82c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d918821f-9728-4459-be4a-6304c4d145dc", + "x-ms-client-request-id": "4229ef121e12c3363956cb1a2b6df82c", + "x-ms-correlation-request-id": "f25176a0-6c6b-43b6-af55-d96245775238", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "986f9f5a-b937-47df-bd3f-faaf55c8060a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074827Z:f25176a0-6c6b-43b6-af55-d96245775238" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ef-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7668be3d2d0083be7675407fa46a8e01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67f54bee-424c-47c8-b48f-6824a5be953c", + "x-ms-client-request-id": "7668be3d2d0083be7675407fa46a8e01", + "x-ms-correlation-request-id": "d2e51601-6ae6-435e-a95b-f2d5ef89f07c", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "87571a32-bc21-43e7-a4d8-5d95fd29d46b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074828Z:d2e51601-6ae6-435e-a95b-f2d5ef89f07c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3f0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dd378f76d1f46e87b87768134ea6e58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb8e5ac0-f593-46ad-b27e-295d1c8fa2f3", + "x-ms-client-request-id": "9dd378f76d1f46e87b87768134ea6e58", + "x-ms-correlation-request-id": "3babd8e9-8830-4ac1-93d6-de25e3a347c3", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "29987531-d223-484d-a6b7-05431b3b294e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074829Z:3babd8e9-8830-4ac1-93d6-de25e3a347c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3f1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38d9e67b321ee55b30a5cc9cdeb61ecf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87b93295-5fc8-445f-a390-d24ac87dfadc", + "x-ms-client-request-id": "38d9e67b321ee55b30a5cc9cdeb61ecf", + "x-ms-correlation-request-id": "f16f9f5e-2c11-431e-80af-c1a9efba492f", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "359d35c6-243f-49e0-9493-440adeee94f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074831Z:f16f9f5e-2c11-431e-80af-c1a9efba492f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3f2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b323cac85b9ad00dd522fa79b63c4e8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "01753919-673d-4154-9f9f-c18f46502bcb", + "x-ms-client-request-id": "b323cac85b9ad00dd522fa79b63c4e8b", + "x-ms-correlation-request-id": "e8284972-9a31-4aff-80c4-dca7455f54fc", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "9ce7ebe7-5790-41ef-b806-ee0118d837d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074832Z:e8284972-9a31-4aff-80c4-dca7455f54fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3f3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be04e7075590c5e21cee6c79a04c67c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22fd5d35-b1ad-49a3-bb81-538d5ffc4751", + "x-ms-client-request-id": "be04e7075590c5e21cee6c79a04c67c5", + "x-ms-correlation-request-id": "99a52b18-de82-47be-ae52-39eab54c72b6", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "a8a4af32-08e1-4880-ba59-f14c5ab6c718", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074833Z:99a52b18-de82-47be-ae52-39eab54c72b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3f4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ab9a668bbc720bed80963fb37e12ef3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0fe20d3f-5048-4cb0-aa28-3fdc6e7da8c8", + "x-ms-client-request-id": "6ab9a668bbc720bed80963fb37e12ef3", + "x-ms-correlation-request-id": "61a41b0c-f33f-451e-aa6e-1c236de65794", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "8ad6007f-f4f3-4144-8688-30dcde89e7ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074835Z:61a41b0c-f33f-451e-aa6e-1c236de65794" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3f5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f695405760b2733fe75e96abef932f89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b95fd65e-4ab0-4674-99a7-41e1e4384b76", + "x-ms-client-request-id": "f695405760b2733fe75e96abef932f89", + "x-ms-correlation-request-id": "2cf37591-f015-4aaf-9707-6b7a855f3767", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "94b22e57-34e2-40bd-89af-ffe95bfc08e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074836Z:2cf37591-f015-4aaf-9707-6b7a855f3767" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3f6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "101135bae4834cc429e4e586f2e68d3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88e59ddb-1730-49c1-a0ef-8bb19be83032", + "x-ms-client-request-id": "101135bae4834cc429e4e586f2e68d3a", + "x-ms-correlation-request-id": "73909195-4c39-4d82-912b-a70094f32fc7", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "9aea52b5-4e4c-4c0e-9be0-abadd9a8712d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074837Z:73909195-4c39-4d82-912b-a70094f32fc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3f7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f2279c070b607136645836924123045", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ebac8cb-e296-4697-8b9c-cf794b4c3572", + "x-ms-client-request-id": "5f2279c070b607136645836924123045", + "x-ms-correlation-request-id": "cff266b0-9c04-436a-9200-a0726bfdf988", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "7e4f4461-fedb-41cc-bc53-b1199f051967", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074838Z:cff266b0-9c04-436a-9200-a0726bfdf988" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3f8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0241d9d91dd0726f7c49cdcd7bb88100", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18a6d86d-e1a4-4e64-afe3-af3e95584049", + "x-ms-client-request-id": "0241d9d91dd0726f7c49cdcd7bb88100", + "x-ms-correlation-request-id": "580da0a3-5050-4b61-9f0b-b89c6f0a1b93", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "9f306a1a-c6a1-4a1e-adba-13906218ba18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074840Z:580da0a3-5050-4b61-9f0b-b89c6f0a1b93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3f9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76eb5bd0cf7149d2210aa93d605b2716", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "daf62c60-c170-42e0-a97a-584d3443bca1", + "x-ms-client-request-id": "76eb5bd0cf7149d2210aa93d605b2716", + "x-ms-correlation-request-id": "2d7cfcd7-f9a9-4d9e-9283-23c15db332f2", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "7e48d1a8-d5e2-4be6-aab9-302f40610e27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074841Z:2d7cfcd7-f9a9-4d9e-9283-23c15db332f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3fa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18aca0b38aa5a26a09afe36da3458cad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5f9a3b5-595a-40bc-93cf-655b56b0d4d2", + "x-ms-client-request-id": "18aca0b38aa5a26a09afe36da3458cad", + "x-ms-correlation-request-id": "0e72ec43-7dd8-4566-a75a-27a1d7da716e", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "eabc8d0b-9c5b-4279-93f5-d24a7e1dd4d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074842Z:0e72ec43-7dd8-4566-a75a-27a1d7da716e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3fb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c89883c4ba2609d306f7e1c673321221", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2836a29a-a6e1-4a21-81cf-402a7248141a", + "x-ms-client-request-id": "c89883c4ba2609d306f7e1c673321221", + "x-ms-correlation-request-id": "79ce8568-260d-4e7c-86c4-bed3a795b313", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "6fdf8c44-4d6a-4137-ae99-4589b322d1cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074844Z:79ce8568-260d-4e7c-86c4-bed3a795b313" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3fc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da1ab721680c465af1496cc2ec65a6db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12b199b5-c506-4d45-b07b-46d952e46c58", + "x-ms-client-request-id": "da1ab721680c465af1496cc2ec65a6db", + "x-ms-correlation-request-id": "2a3bab77-cdb7-4fc6-89a8-6df2132c0dd4", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "1b50a208-08ec-439b-8709-386225b5b1fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074845Z:2a3bab77-cdb7-4fc6-89a8-6df2132c0dd4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3fd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd78fb7d5ec2f8efcca212aea9a32ed7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38f89f15-645f-4dcf-ac0e-bff803185a74", + "x-ms-client-request-id": "dd78fb7d5ec2f8efcca212aea9a32ed7", + "x-ms-correlation-request-id": "05ca277d-36cc-41be-bea8-db7f7e41a2af", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "0200d405-8dec-44d7-a535-b491ddbac024", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074846Z:05ca277d-36cc-41be-bea8-db7f7e41a2af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3fe-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb4cc19db12b5ca12852d7dd4e111da1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed2325bf-75b0-40c7-8e24-95247e02ca20", + "x-ms-client-request-id": "eb4cc19db12b5ca12852d7dd4e111da1", + "x-ms-correlation-request-id": "79f90ee2-9d4f-460f-8dea-417808048187", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "f6f9ec61-604b-4a88-abf9-581cb25f104b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074847Z:79f90ee2-9d4f-460f-8dea-417808048187" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f3ff-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7848055034b9c35ec7220e6956ab9c4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1dac37f7-4b25-474d-9a21-57b6f25c5f25", + "x-ms-client-request-id": "7848055034b9c35ec7220e6956ab9c4d", + "x-ms-correlation-request-id": "4778890f-18d7-4abd-a7e1-b238b5163b07", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "71bc9714-2599-4ac3-833b-d247da9b3d01", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074849Z:4778890f-18d7-4abd-a7e1-b238b5163b07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f400-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a24951abb18ccb05a1cb4708711aabb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dcfb0a06-09e6-4129-be0a-2c667b7e4abb", + "x-ms-client-request-id": "2a24951abb18ccb05a1cb4708711aabb", + "x-ms-correlation-request-id": "54cdf532-86c2-4b66-a13f-d7d68efb9881", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "506b6312-420a-4aaf-be7b-ebce99f57465", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074850Z:54cdf532-86c2-4b66-a13f-d7d68efb9881" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f401-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a45e7085b65b681d62882408a338067d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5eb816f3-bfa2-4c86-b714-0afa05f60870", + "x-ms-client-request-id": "a45e7085b65b681d62882408a338067d", + "x-ms-correlation-request-id": "bedae5b7-6f8a-458c-9474-0e97239a7eb9", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "95c03eff-39c9-4abd-9ef1-5f15c5d278c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074851Z:bedae5b7-6f8a-458c-9474-0e97239a7eb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f402-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8c389b5f2ec9588547c1d9d7fee3bb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06a642c9-ce8e-4465-a592-235a1d5a037c", + "x-ms-client-request-id": "b8c389b5f2ec9588547c1d9d7fee3bb6", + "x-ms-correlation-request-id": "61a67abe-f8cb-4e16-9f6e-43f4638390c0", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "b2be8118-7bce-47ae-8fdf-c04105f0495b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074853Z:61a67abe-f8cb-4e16-9f6e-43f4638390c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f403-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5e35277f84d64f277bcc89096a72921", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9e16a30-720e-4854-9b69-9eb9a1bcd059", + "x-ms-client-request-id": "e5e35277f84d64f277bcc89096a72921", + "x-ms-correlation-request-id": "c3d738ea-d62d-47e6-868c-1cf55843a774", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "5f5aed40-a23d-4eca-8347-20ac127c6cfd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074854Z:c3d738ea-d62d-47e6-868c-1cf55843a774" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f404-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "feba3715f14e93cee7c94fdf9880e973", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8110f95-23c9-4b66-acc5-72318a7fc27c", + "x-ms-client-request-id": "feba3715f14e93cee7c94fdf9880e973", + "x-ms-correlation-request-id": "43aca544-b56f-452a-bc68-c6f1c9a6e6d2", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "60997f5d-c2f3-41b3-8835-4b876b638ba1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074855Z:43aca544-b56f-452a-bc68-c6f1c9a6e6d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f405-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50906d4d2054bd2f965f40302af8feac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50eafc27-3842-4d0e-8d29-b68b9299e6f6", + "x-ms-client-request-id": "50906d4d2054bd2f965f40302af8feac", + "x-ms-correlation-request-id": "e8456fdf-5c92-4e58-bf52-877381ac05ba", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "f3ebabc7-294a-4c14-afd1-49d7e91897f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074857Z:e8456fdf-5c92-4e58-bf52-877381ac05ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f406-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4787fc523d3486678450fe84a913cbf6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0403b518-294d-4d55-bbf0-95a703a6443c", + "x-ms-client-request-id": "4787fc523d3486678450fe84a913cbf6", + "x-ms-correlation-request-id": "742cfd47-8534-47a8-a8fb-28f46826eb42", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "b5fbb231-4d54-436c-bcaf-845c5175a4d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074858Z:742cfd47-8534-47a8-a8fb-28f46826eb42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f407-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "294354d2d817f4cc08fc67efb09d69ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:48:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73dabf03-5156-4ce1-b412-d64d2c9e4db1", + "x-ms-client-request-id": "294354d2d817f4cc08fc67efb09d69ef", + "x-ms-correlation-request-id": "27557da6-2599-40ce-ab7a-0417f0177f1d", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "f7354764-c800-4fce-927c-c8af30976bf0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074859Z:27557da6-2599-40ce-ab7a-0417f0177f1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f408-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c8ca2caa1f90f3f050acc0422ab1483", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "011f3e10-335c-4242-b7fb-30b1e0225e6e", + "x-ms-client-request-id": "9c8ca2caa1f90f3f050acc0422ab1483", + "x-ms-correlation-request-id": "eb657c53-3259-4ad1-b158-b4ed8b87c0e3", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "fd38a523-8404-4159-a6a7-94f57adb6f66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074900Z:eb657c53-3259-4ad1-b158-b4ed8b87c0e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f409-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d55d4a93d5b579952f923f37d678d5e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "42adb591-34e3-4ad0-ac65-8cc3a8604364", + "x-ms-client-request-id": "d55d4a93d5b579952f923f37d678d5e6", + "x-ms-correlation-request-id": "449eff9b-41eb-46aa-9795-2c6735f5e909", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "0220e021-0239-412f-bdac-e22282ec7575", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074902Z:449eff9b-41eb-46aa-9795-2c6735f5e909" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f40a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06b90fe72f8731fd1433230c0cc8d25c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7eeed480-c773-44f8-91c0-4539c90342ad", + "x-ms-client-request-id": "06b90fe72f8731fd1433230c0cc8d25c", + "x-ms-correlation-request-id": "4b153b9e-356d-49d7-9016-7c7412b7a324", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "85cde6f4-1b8f-4ff4-ac23-c20c12469138", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074903Z:4b153b9e-356d-49d7-9016-7c7412b7a324" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f40b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "665be4e89340f5390d126c666108398d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f65251fd-721e-4dac-953f-ac5eaf34fc23", + "x-ms-client-request-id": "665be4e89340f5390d126c666108398d", + "x-ms-correlation-request-id": "93c0fa56-1603-4970-999d-24dad6d80524", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "39a31691-7634-4471-beeb-ca60d54094e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074904Z:93c0fa56-1603-4970-999d-24dad6d80524" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f40c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "131de5350df264fc4c2cc182b2886d67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1639ad3-a1dd-4217-8052-b62e0e2b43a8", + "x-ms-client-request-id": "131de5350df264fc4c2cc182b2886d67", + "x-ms-correlation-request-id": "8d2264a2-0708-4c9f-8797-0ee1b2fbd3f4", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "d068caae-d531-4387-af73-3333e3d76f0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074906Z:8d2264a2-0708-4c9f-8797-0ee1b2fbd3f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f40d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f24ee3c06e1d53a6d5c3f974c296cf0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1fe07a63-0680-4f39-a516-398caf42d8f0", + "x-ms-client-request-id": "f24ee3c06e1d53a6d5c3f974c296cf0c", + "x-ms-correlation-request-id": "58076b18-c555-40fc-9e85-7c28a983d55f", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "2f19e2c0-269f-4188-8423-b79760cd5e29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074907Z:58076b18-c555-40fc-9e85-7c28a983d55f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f40e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27d795fabeaadb6ae7f71913d2b74384", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b78a80e-7227-4e47-aed9-ec452bcb09f4", + "x-ms-client-request-id": "27d795fabeaadb6ae7f71913d2b74384", + "x-ms-correlation-request-id": "a31ac794-f1d9-4d47-b3ce-69c8ecff9289", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "08cd127a-c898-4545-8fc7-f2f409a3cc6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074908Z:a31ac794-f1d9-4d47-b3ce-69c8ecff9289" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f40f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ea605a547b9c66f3fc93e2e1487a1b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5422cfc2-0ce5-40bb-aa36-0a23ac1ae242", + "x-ms-client-request-id": "7ea605a547b9c66f3fc93e2e1487a1b6", + "x-ms-correlation-request-id": "c21ae175-3bac-49e8-bde3-1a2ea4917f0d", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "13415bbc-62b4-43a7-b119-d93d6905efbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074910Z:c21ae175-3bac-49e8-bde3-1a2ea4917f0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f410-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c87b45c46b102bc78730a265492811e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1fd655a0-7ada-4ae0-a939-1f22cbd26729", + "x-ms-client-request-id": "1c87b45c46b102bc78730a265492811e", + "x-ms-correlation-request-id": "ce171746-e8da-44e9-8b47-1c319deacb37", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "20ff3f33-5e2d-43f1-8052-3c2dc9ba29d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074911Z:ce171746-e8da-44e9-8b47-1c319deacb37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f411-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bccf758051f0b2532610e7e0803cc660", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "439249bf-898d-4b42-88e6-8ad735ed9552", + "x-ms-client-request-id": "bccf758051f0b2532610e7e0803cc660", + "x-ms-correlation-request-id": "b8d1ff83-95e8-4a67-b052-9f6a4b4f2345", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "0617a049-e0f8-4096-8ca3-a560485f23e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074912Z:b8d1ff83-95e8-4a67-b052-9f6a4b4f2345" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f412-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1db76355272f5fd248a305453d4972ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e29e94a-f7dd-416a-8ea4-809d37fa230f", + "x-ms-client-request-id": "1db76355272f5fd248a305453d4972ad", + "x-ms-correlation-request-id": "20bc8e39-f739-4d54-b4f0-a0d63f3be89e", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "922e8255-3264-43e3-ae29-42d1317dc386", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074914Z:20bc8e39-f739-4d54-b4f0-a0d63f3be89e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f413-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ead1f48e4b80ac561d5f6a15edb813c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bddc9115-c844-4d1a-b7db-c351b8ff7a29", + "x-ms-client-request-id": "9ead1f48e4b80ac561d5f6a15edb813c", + "x-ms-correlation-request-id": "725d68d9-536f-452e-9832-f88abaac6e65", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "3d9326be-54e1-4d33-a7a1-22900710e8a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074915Z:725d68d9-536f-452e-9832-f88abaac6e65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f414-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1d1a9ac63da59eea270744c4c0d75dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc1fe8bb-a085-4fcf-999b-d9bab8d5a727", + "x-ms-client-request-id": "f1d1a9ac63da59eea270744c4c0d75dc", + "x-ms-correlation-request-id": "d3e3c5b4-f5be-4468-afff-9ec2217317e2", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "ae2cf21d-6110-485e-a2be-53ace3f48e43", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074916Z:d3e3c5b4-f5be-4468-afff-9ec2217317e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f415-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60983a9e288e70a89dacbc5a3131006d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4d6c699-901e-4eb0-8d9c-6bc2acb49587", + "x-ms-client-request-id": "60983a9e288e70a89dacbc5a3131006d", + "x-ms-correlation-request-id": "6eb3620a-ec6c-4e2c-a3a1-45188e5e4947", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "4ff3205a-649e-4d0b-b654-d151e68a3910", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074917Z:6eb3620a-ec6c-4e2c-a3a1-45188e5e4947" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f416-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9398c8228078e5d23154fc477078be54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bfbb58f0-6de2-4f29-8ea0-6f5910bbbb3c", + "x-ms-client-request-id": "9398c8228078e5d23154fc477078be54", + "x-ms-correlation-request-id": "5a3f2543-a599-4daf-9c33-820cc6978f49", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "6c9709ec-a2dc-4297-84db-95477c32e628", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074919Z:5a3f2543-a599-4daf-9c33-820cc6978f49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f417-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2402195f214384ae0161532ea7942871", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5fafab18-0a65-441d-9b12-f5a91b9fad57", + "x-ms-client-request-id": "2402195f214384ae0161532ea7942871", + "x-ms-correlation-request-id": "108a4dea-603c-4b21-929c-7f2695ac9f38", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "282f18d2-a3c0-470d-9b6e-7a420dd60b00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074920Z:108a4dea-603c-4b21-929c-7f2695ac9f38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f418-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "832a066fe2741d6468b32f392c60ff25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f743b321-4742-4d61-8b29-1a90d0fb7392", + "x-ms-client-request-id": "832a066fe2741d6468b32f392c60ff25", + "x-ms-correlation-request-id": "86e8f78e-42a6-459a-8bd2-8da68f90983a", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "6eaa370d-0775-46b3-bc47-dd3319f215da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074921Z:86e8f78e-42a6-459a-8bd2-8da68f90983a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f419-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17fb68eedc2f0129191491162da33d9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3822915-c68d-430a-a9df-840d3888714a", + "x-ms-client-request-id": "17fb68eedc2f0129191491162da33d9c", + "x-ms-correlation-request-id": "50e40cc3-4471-43a2-ba7a-244201852360", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "541f4622-ea8f-44ce-8b62-180318c23cce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074923Z:50e40cc3-4471-43a2-ba7a-244201852360" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f41a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ad88a2c3a4e7ddfb4e4bc90f17458a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8fcbecab-307c-422e-87b8-a2b3e08f0e00", + "x-ms-client-request-id": "6ad88a2c3a4e7ddfb4e4bc90f17458a1", + "x-ms-correlation-request-id": "9c02c691-ddd7-497c-a032-788e86d4fde4", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "56eee263-c9d9-40d9-9103-e62c1149a868", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074924Z:9c02c691-ddd7-497c-a032-788e86d4fde4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f41b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f402e6210999341dc296a60504df0c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d0a73110-0997-45aa-b40b-47173f5ba632", + "x-ms-client-request-id": "3f402e6210999341dc296a60504df0c4", + "x-ms-correlation-request-id": "fee5b17c-270a-4220-9d89-4e0237578a9c", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "a0f9ebe1-4292-4fcc-a04c-158a6e690e82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074925Z:fee5b17c-270a-4220-9d89-4e0237578a9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f41c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a10d92759588b3d6887e634a20990fa5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf4072fd-f649-432e-b156-d3afb22c6fd2", + "x-ms-client-request-id": "a10d92759588b3d6887e634a20990fa5", + "x-ms-correlation-request-id": "84e0c45a-c104-4f6d-9d32-624192d85e7a", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "1c784464-203f-4c7e-b952-f133d9781462", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074926Z:84e0c45a-c104-4f6d-9d32-624192d85e7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f41d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffb4f0bbfe631b0348458d24d07f2c66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27e38eab-6bbd-4476-9ec6-7d9233c63d65", + "x-ms-client-request-id": "ffb4f0bbfe631b0348458d24d07f2c66", + "x-ms-correlation-request-id": "cdca35c9-cd13-4a3c-b56a-ffe85da8cdfb", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "29f72d2d-b1fc-4438-89b0-34cb1d39e741", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074928Z:cdca35c9-cd13-4a3c-b56a-ffe85da8cdfb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f41e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e1af8f4b767cc19578cb61aadf77243", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39325eff-b116-4bdf-9122-cfeb2bff2908", + "x-ms-client-request-id": "5e1af8f4b767cc19578cb61aadf77243", + "x-ms-correlation-request-id": "c5d88439-61ae-4c89-b38d-a18a07aadd07", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "87f5839d-cd32-485d-939c-c94597304665", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074929Z:c5d88439-61ae-4c89-b38d-a18a07aadd07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f41f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60a4c519f09976608ff1584207b2e308", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f33a8178-6f0d-43d2-8ee2-42228020921b", + "x-ms-client-request-id": "60a4c519f09976608ff1584207b2e308", + "x-ms-correlation-request-id": "5b8a0c1a-c4b7-4abd-ae4d-e6248d52614e", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "c71c819e-6091-41a6-824d-378f5ba06fa5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074930Z:5b8a0c1a-c4b7-4abd-ae4d-e6248d52614e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f420-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2855fc51b17e043dd6e7a7d747e86e51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e1a61e17-1ac9-41c9-becc-8d3514d4f4a1", + "x-ms-client-request-id": "2855fc51b17e043dd6e7a7d747e86e51", + "x-ms-correlation-request-id": "80ff2f33-c76b-4018-b652-a67b671fc87c", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "63e4491d-ec19-4566-a860-192a6d484cc4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074932Z:80ff2f33-c76b-4018-b652-a67b671fc87c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f421-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b0a49d2ccda03cd97a4cf755ed6c5a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b700b0c-65cb-42bb-b8b9-5e40472cecd0", + "x-ms-client-request-id": "0b0a49d2ccda03cd97a4cf755ed6c5a5", + "x-ms-correlation-request-id": "1ffc87ea-04b1-453a-9cb4-c96b8ab56db7", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "796d5b35-e1ac-489c-ae8b-78dd0a5ba7f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074933Z:1ffc87ea-04b1-453a-9cb4-c96b8ab56db7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f422-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1c9ada84aa168c4879f89b149882ea6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18030b7b-99a9-42c2-b41f-9aa5bad0b343", + "x-ms-client-request-id": "b1c9ada84aa168c4879f89b149882ea6", + "x-ms-correlation-request-id": "0977a02c-e552-4f15-abae-9a9065e704a1", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "138c8722-f94d-4282-93d3-733b37f88a7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074934Z:0977a02c-e552-4f15-abae-9a9065e704a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f423-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd700683d8a7852e2e5290dae2c8a500", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b7eff85-6a88-4ea3-85a0-84c43607d5d7", + "x-ms-client-request-id": "bd700683d8a7852e2e5290dae2c8a500", + "x-ms-correlation-request-id": "bcb64c71-fd4f-4e92-9efe-82a407191651", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "5176bc20-15d8-4864-b29a-3a0a25303740", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074935Z:bcb64c71-fd4f-4e92-9efe-82a407191651" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f424-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a2f0222bc1f87af85a2833b421cba0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b41b712e-e9db-4328-b294-be16c46339a7", + "x-ms-client-request-id": "9a2f0222bc1f87af85a2833b421cba0f", + "x-ms-correlation-request-id": "8b370d8a-24b1-4e52-8642-fe8fbb399fbd", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "291bb691-a616-47b8-936c-68d55e5ab155", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074937Z:8b370d8a-24b1-4e52-8642-fe8fbb399fbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f425-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57f128750765cffd7f43824fbae986bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "257b541b-4948-4211-bf81-5526e8cfa873", + "x-ms-client-request-id": "57f128750765cffd7f43824fbae986bf", + "x-ms-correlation-request-id": "e6536393-7634-4be7-8ad4-8b463fcc5b12", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "6245b5f3-b9e5-4ecb-85f5-ef8aa7d8726e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074938Z:e6536393-7634-4be7-8ad4-8b463fcc5b12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f426-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "468e88fa9458c78757e8380554f34212", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31d04cd3-a10e-4ff7-8ea3-b030ec615d4e", + "x-ms-client-request-id": "468e88fa9458c78757e8380554f34212", + "x-ms-correlation-request-id": "7439c5fb-e4e1-4b01-a598-0576e66f5b92", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "26294d1a-e460-4630-9062-298920ca8c40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074939Z:7439c5fb-e4e1-4b01-a598-0576e66f5b92" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f427-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b96580974dd61b9a055f1adb3a60cd9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61239e9a-ba93-4837-b203-9df63cd27847", + "x-ms-client-request-id": "b96580974dd61b9a055f1adb3a60cd9b", + "x-ms-correlation-request-id": "4d5cb100-4c74-44f3-a68f-50a8a3068eb7", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "84461d7a-3b88-4446-a46c-20d87a296d19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074941Z:4d5cb100-4c74-44f3-a68f-50a8a3068eb7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f428-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b940c41c748de1b7a12a007ccff87b8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d6a6633-8b3a-4a62-9bcf-6e152be8cf75", + "x-ms-client-request-id": "b940c41c748de1b7a12a007ccff87b8c", + "x-ms-correlation-request-id": "b1c68133-2411-4480-8c2e-d9d7cd50337d", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "cf26491c-29d0-4aec-9119-5aaaee6ec1e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074942Z:b1c68133-2411-4480-8c2e-d9d7cd50337d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f429-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39b77000cc84ace8ed7341f979ab8df7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d66f41ba-55c1-493e-925b-92083d4a2b6b", + "x-ms-client-request-id": "39b77000cc84ace8ed7341f979ab8df7", + "x-ms-correlation-request-id": "78a2a54c-004f-4300-9783-4e7000f19dbd", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "24faa746-bec5-4dd4-ad39-ae0be29acd50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074943Z:78a2a54c-004f-4300-9783-4e7000f19dbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f42a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90e89c1b89b22384c98418ac4d1d4c0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02f7cca6-fe08-4e81-a034-188ad8784292", + "x-ms-client-request-id": "90e89c1b89b22384c98418ac4d1d4c0c", + "x-ms-correlation-request-id": "3ba3b5b0-febd-4618-afca-fb0534155194", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "cef504ba-c0f4-4612-b11c-0467a755ce75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074944Z:3ba3b5b0-febd-4618-afca-fb0534155194" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f42b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9db8de494a84f17dc94cb1a33bd67f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8272d2d-93c8-45db-8b84-775adccb4fb0", + "x-ms-client-request-id": "c9db8de494a84f17dc94cb1a33bd67f5", + "x-ms-correlation-request-id": "1d0c755b-4564-4c8d-954a-adb16f72d4aa", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "7bdebae4-9b1f-459c-9375-a0f51e5cd61e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074946Z:1d0c755b-4564-4c8d-954a-adb16f72d4aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f42c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3261099deb0f77daec947000b43b5fcf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "951b6088-97ed-4f40-b9f6-cbcd134cbf1e", + "x-ms-client-request-id": "3261099deb0f77daec947000b43b5fcf", + "x-ms-correlation-request-id": "9cafaa55-5cfb-4bd3-b887-c2d7dc57ae9d", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "4ca6a558-5af7-44fc-8ae9-42b4646a8a45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074947Z:9cafaa55-5cfb-4bd3-b887-c2d7dc57ae9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f42d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec143426c3d0864f8499b31dbd69f00b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "734d632e-a364-43bf-afc7-9848d7374457", + "x-ms-client-request-id": "ec143426c3d0864f8499b31dbd69f00b", + "x-ms-correlation-request-id": "d91061df-3ea4-4c96-8ee6-60997124ec5b", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "8e69ff59-df11-471a-9f95-9250a0ce239c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074948Z:d91061df-3ea4-4c96-8ee6-60997124ec5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f42e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "430e221d19bcf9fcb363dd1324179ba0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c5040eb-26f6-4f1c-90ec-10855367a780", + "x-ms-client-request-id": "430e221d19bcf9fcb363dd1324179ba0", + "x-ms-correlation-request-id": "f839b65a-1e64-453a-af4c-9a0fce0be1f9", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "0e5fbd06-66ba-4cb0-8266-c381a3345123", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074950Z:f839b65a-1e64-453a-af4c-9a0fce0be1f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f42f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fef3fc347ba9d925badbae7637bcba82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe43bbf9-716c-4726-b8a8-5b4064f715c8", + "x-ms-client-request-id": "fef3fc347ba9d925badbae7637bcba82", + "x-ms-correlation-request-id": "525fa206-083b-41b5-94e8-0d7a633a3ffa", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "7386cb1d-583b-4cee-b508-e215e636ffae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074951Z:525fa206-083b-41b5-94e8-0d7a633a3ffa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f430-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91e364a41b2c0d13381b386ce63b626d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "792c9a05-610c-4733-864d-c5f978fbdaf1", + "x-ms-client-request-id": "91e364a41b2c0d13381b386ce63b626d", + "x-ms-correlation-request-id": "c3d8d212-78f4-4230-808f-1dec5ec6024a", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "3c7382a7-8de7-4f93-996e-dc6754bcde48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074952Z:c3d8d212-78f4-4230-808f-1dec5ec6024a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f431-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1e812fef175a262fd3589e16b86c1f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "278e456e-44fa-4df1-8d6b-6a124dfb44fc", + "x-ms-client-request-id": "c1e812fef175a262fd3589e16b86c1f6", + "x-ms-correlation-request-id": "38a74f2f-dbb6-4122-82dd-e7e9b396af73", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "209bbceb-08df-4e35-b45c-5f7d35f1498f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074954Z:38a74f2f-dbb6-4122-82dd-e7e9b396af73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f432-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf6e5aa90a341973e8e6c68d42b8f37e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba0b8496-4a7c-4786-80ac-bf960dd331d5", + "x-ms-client-request-id": "bf6e5aa90a341973e8e6c68d42b8f37e", + "x-ms-correlation-request-id": "5af6b89d-2f8f-4d85-8a21-8640c60d1be1", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "2bfe3476-8d0c-41f7-843c-3b1c846e529f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074955Z:5af6b89d-2f8f-4d85-8a21-8640c60d1be1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f433-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24784178f9d3b30d024093f79232a2b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36699010-06a1-4b20-ab68-a46314af5307", + "x-ms-client-request-id": "24784178f9d3b30d024093f79232a2b1", + "x-ms-correlation-request-id": "7f14f0e6-f8d8-4cdd-bf78-c146d2449eb7", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "c646ff9f-c894-4b83-bd37-4b2571aaf142", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074956Z:7f14f0e6-f8d8-4cdd-bf78-c146d2449eb7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f434-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cc34159a3ccf4389fcfd98f2bd45f44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73c2b916-fcba-4dd1-8189-faf82c86dfab", + "x-ms-client-request-id": "8cc34159a3ccf4389fcfd98f2bd45f44", + "x-ms-correlation-request-id": "8d9ae7ae-1143-4bbe-af6d-e8aa89926696", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "67439821-6f8c-45ee-95d0-86872c42019b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074958Z:8d9ae7ae-1143-4bbe-af6d-e8aa89926696" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f435-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a680b419d0eb0234dbbbdf3767b87b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:49:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21d37169-70b8-435f-9a7c-177003f62165", + "x-ms-client-request-id": "2a680b419d0eb0234dbbbdf3767b87b5", + "x-ms-correlation-request-id": "4b68d294-74bb-4ebf-af0c-0ff329cea227", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "6c744ae4-0190-4a7e-ba55-de48fa6b26e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T074959Z:4b68d294-74bb-4ebf-af0c-0ff329cea227" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f436-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0034144367f5d4b1088385031f7d872d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f82a946c-6e53-4318-9029-d30c64fd8c0e", + "x-ms-client-request-id": "0034144367f5d4b1088385031f7d872d", + "x-ms-correlation-request-id": "63dd8307-3547-4f5a-86f9-0a3beb371ac6", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "6b29be32-543e-4549-b6cf-84114dc27e65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075000Z:63dd8307-3547-4f5a-86f9-0a3beb371ac6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f437-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87b64fe178c9bca31e123f11e6457d23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0cfdeb3-d3d5-4bf6-86f4-ec8f85095c57", + "x-ms-client-request-id": "87b64fe178c9bca31e123f11e6457d23", + "x-ms-correlation-request-id": "c032e75d-5138-4b9b-af3f-b159a56cc997", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "dec98b45-a825-4bd2-92e7-3a566a0fe41f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075001Z:c032e75d-5138-4b9b-af3f-b159a56cc997" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f438-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "174c23485f9fda4f5994218a171f90cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e92a27f-898b-49aa-8d44-1ef3050b1588", + "x-ms-client-request-id": "174c23485f9fda4f5994218a171f90cf", + "x-ms-correlation-request-id": "bd8c25eb-d06f-45ec-9a5e-1851ec221615", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "a6c05afd-75dc-4658-94ca-1bb75ccb95e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075003Z:bd8c25eb-d06f-45ec-9a5e-1851ec221615" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f439-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27128f34ffc5cbeb7078e2e228a0eec3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e780c54-abea-4700-b371-7384b0a4217f", + "x-ms-client-request-id": "27128f34ffc5cbeb7078e2e228a0eec3", + "x-ms-correlation-request-id": "8542ba2d-6498-45a5-96c1-9ab3d137457a", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "7f6dd73d-275f-4576-baa8-8f013b44696d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075004Z:8542ba2d-6498-45a5-96c1-9ab3d137457a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f43a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcbb62067031828effdb2d355619a4ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe53e403-be72-4e12-aa7f-11e1c0a7cb8e", + "x-ms-client-request-id": "fcbb62067031828effdb2d355619a4ff", + "x-ms-correlation-request-id": "b6c023a7-8660-4977-9de3-9c3731b9320f", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "fe8db1aa-4c35-4d0a-b53f-0c243dc3a15f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075005Z:b6c023a7-8660-4977-9de3-9c3731b9320f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f43b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57dc6f825632485d3781a6277d6db2b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "346f07d2-d748-4f44-9da8-ecf06f72a4f4", + "x-ms-client-request-id": "57dc6f825632485d3781a6277d6db2b8", + "x-ms-correlation-request-id": "e8bd3670-f83a-4a98-bf6c-c85b9cda66be", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "73a79233-aee6-4f3a-b922-dba7fc857feb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075007Z:e8bd3670-f83a-4a98-bf6c-c85b9cda66be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f43c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5845ea69364c49e009027ead2b67457", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd60471c-6db7-4678-8dad-a410e8d2eebc", + "x-ms-client-request-id": "b5845ea69364c49e009027ead2b67457", + "x-ms-correlation-request-id": "d03c1bd4-db3b-42e3-b3f0-e55f8a610127", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "0babb59a-907d-4b98-9b6b-5a6fe9010fa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075008Z:d03c1bd4-db3b-42e3-b3f0-e55f8a610127" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f43d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b85fe2d397c3af900472c4b0c9660592", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75d89b0e-1cb5-4136-8632-f8c836eefc2f", + "x-ms-client-request-id": "b85fe2d397c3af900472c4b0c9660592", + "x-ms-correlation-request-id": "d1410492-ca8d-43de-a663-0d1f9d5c9276", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "ade217b7-7194-4128-93ae-1e45f3d976d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075009Z:d1410492-ca8d-43de-a663-0d1f9d5c9276" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f43e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f78f7428ef94ee9ad01856a22f737681", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "817ce401-aa3f-42e2-8a77-91cb5e971196", + "x-ms-client-request-id": "f78f7428ef94ee9ad01856a22f737681", + "x-ms-correlation-request-id": "def5fe48-ef60-4e20-aed1-dbb93322adbf", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "206185f7-2a1a-4e59-a0bb-785a6566567d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075010Z:def5fe48-ef60-4e20-aed1-dbb93322adbf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f43f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a544f0cf90d0ef5ced5b1f1cfeefa9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae29e569-ba6f-4c4b-8f43-8b22a6ffcce7", + "x-ms-client-request-id": "9a544f0cf90d0ef5ced5b1f1cfeefa9a", + "x-ms-correlation-request-id": "912a8cef-3495-4a4f-b5cc-954c1012bb82", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "0f359356-ff4f-4c19-9707-63c3c78f1bb0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075012Z:912a8cef-3495-4a4f-b5cc-954c1012bb82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f440-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5dc2948a7c26e3c24771e8aa40ed7f91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2735925-07aa-47f7-91c9-e344530af2e4", + "x-ms-client-request-id": "5dc2948a7c26e3c24771e8aa40ed7f91", + "x-ms-correlation-request-id": "f076a375-7f46-4f81-b1e5-1252d0642a86", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "a86aba03-38ca-4d6a-8c87-ac0863b19277", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075013Z:f076a375-7f46-4f81-b1e5-1252d0642a86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f441-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7aa342fb6b112e857f8029bf3ea91fe1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14392da9-14db-4c6c-b6b5-0227bbdba447", + "x-ms-client-request-id": "7aa342fb6b112e857f8029bf3ea91fe1", + "x-ms-correlation-request-id": "a84f5976-512e-4218-9055-481c26b2b9ce", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "bba3b22c-2d23-42c5-8599-3762e5b71833", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075014Z:a84f5976-512e-4218-9055-481c26b2b9ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f442-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a18bb1e19b0905b8c70529c114acee1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "752f9cce-985a-479a-88a6-69b37708c013", + "x-ms-client-request-id": "9a18bb1e19b0905b8c70529c114acee1", + "x-ms-correlation-request-id": "b1062246-94f0-4d13-b09c-641a302a618a", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "fe903c08-5cfd-4ce9-a974-ae4362965b49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075015Z:b1062246-94f0-4d13-b09c-641a302a618a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f443-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cf61f557f4b1f880f93dda65302a59e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "19852a42-7e62-4d27-a18b-600ca20a76c5", + "x-ms-client-request-id": "8cf61f557f4b1f880f93dda65302a59e", + "x-ms-correlation-request-id": "b739ef22-3d94-4ccd-8ef3-1fefbfcb9f35", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "2628c90b-4c81-4e79-abaf-18523d97aa51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075017Z:b739ef22-3d94-4ccd-8ef3-1fefbfcb9f35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f444-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "848c0752e5d5e2e0e713eea118e81d35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b993c0b1-942e-4422-bbb5-1d1443756357", + "x-ms-client-request-id": "848c0752e5d5e2e0e713eea118e81d35", + "x-ms-correlation-request-id": "5589e6ac-b4c8-49b7-8e55-415bf286ed47", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "fd416bd5-a515-47bb-b412-783fe30767fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075018Z:5589e6ac-b4c8-49b7-8e55-415bf286ed47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f445-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e6a48b292b39e9633f88a1d3bb43d89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa4707de-25b2-4e72-bfbc-db063255f561", + "x-ms-client-request-id": "1e6a48b292b39e9633f88a1d3bb43d89", + "x-ms-correlation-request-id": "adaccfe7-582d-4ec9-ba77-8d603170e327", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "c96302cc-992a-409c-ba17-e1aa31bcab23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075019Z:adaccfe7-582d-4ec9-ba77-8d603170e327" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f446-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "094ab3ca49bd6f0c3f13a53791e70626", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c36a9315-57d8-43cd-a400-88269df32f7f", + "x-ms-client-request-id": "094ab3ca49bd6f0c3f13a53791e70626", + "x-ms-correlation-request-id": "2d11c99b-0ce4-4e99-85b9-07ae834251d2", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "043502b3-a602-4941-b742-fffbc7ece776", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075021Z:2d11c99b-0ce4-4e99-85b9-07ae834251d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f447-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0bf3a8758798c0eb71ee51dc5ac2a732", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8fd6992a-e14e-494d-b70b-5ac2e477a29f", + "x-ms-client-request-id": "0bf3a8758798c0eb71ee51dc5ac2a732", + "x-ms-correlation-request-id": "3d4add4b-a9ed-4f6b-97db-912ca0909def", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "9f3d43d0-ea1a-4ea2-984e-6dcf7b7bbf03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075022Z:3d4add4b-a9ed-4f6b-97db-912ca0909def" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f448-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65d664d6139e69773bfade9fec5e0c4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9008bc0d-c99e-4988-9c8e-3c6247f8790c", + "x-ms-client-request-id": "65d664d6139e69773bfade9fec5e0c4b", + "x-ms-correlation-request-id": "bac87869-2c4a-4d89-a0d1-5979e6701cf2", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "c818b39c-e40f-44c8-80c5-d9d0193b3b47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075023Z:bac87869-2c4a-4d89-a0d1-5979e6701cf2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f449-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92a763f132c043f0c78998cff72f157c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a9a6686-446f-4b94-92a5-894ea568fdb5", + "x-ms-client-request-id": "92a763f132c043f0c78998cff72f157c", + "x-ms-correlation-request-id": "f006e641-327a-4413-8402-a028a52da26b", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "a30a6f1e-2f01-4b60-ad57-c032d1cc0311", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075024Z:f006e641-327a-4413-8402-a028a52da26b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f44a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d61726ca1116188308acf9ea84bd312", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "636d95dd-ae84-4caa-b146-1fa38b728a5f", + "x-ms-client-request-id": "2d61726ca1116188308acf9ea84bd312", + "x-ms-correlation-request-id": "85bdfee7-d2c6-4148-b071-4a35e37b27a8", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "848b233a-51c6-49f6-8abe-7c95d04e3953", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075026Z:85bdfee7-d2c6-4148-b071-4a35e37b27a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f44b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7eb06e1141ba47173929d147ba8710c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51fbb5af-763a-4819-8b72-0ff5bc1eaf1e", + "x-ms-client-request-id": "f7eb06e1141ba47173929d147ba8710c", + "x-ms-correlation-request-id": "bda9a1f8-c33c-47c3-872d-3d8386b03065", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "df6ca68d-bcad-4f0e-be0a-370031f3e04e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075027Z:bda9a1f8-c33c-47c3-872d-3d8386b03065" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f44c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "793362e5dffc4f3adb45613562529b7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d927260-3641-4563-a53e-ba33957ffad4", + "x-ms-client-request-id": "793362e5dffc4f3adb45613562529b7b", + "x-ms-correlation-request-id": "c5bad8fa-0f86-442a-a437-bcd7d95a0104", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "12d92b9c-cc78-4b0d-b72f-6917428952be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075028Z:c5bad8fa-0f86-442a-a437-bcd7d95a0104" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f44d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1ed85b61d43576100bdb97e0373e688", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d36108d-535a-441f-977e-c29c3a475bb1", + "x-ms-client-request-id": "f1ed85b61d43576100bdb97e0373e688", + "x-ms-correlation-request-id": "aadd6101-e984-42bd-a0ae-128d2b3cfd45", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "825e0cbd-4f2e-471b-834f-02f9b94a45c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075030Z:aadd6101-e984-42bd-a0ae-128d2b3cfd45" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f44e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46b8c21959180216cb9b1bd5b23c4121", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "42560b68-b3b3-4f0f-bc20-6f147cc76cc8", + "x-ms-client-request-id": "46b8c21959180216cb9b1bd5b23c4121", + "x-ms-correlation-request-id": "f97a0ab6-cf72-4d00-912e-0728e1d86d55", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "ad0a809b-a097-439e-8101-5f8a1ae01140", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075031Z:f97a0ab6-cf72-4d00-912e-0728e1d86d55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f44f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f65e21f780bbc7c801db793f25bb4c68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e1223af-6bf1-4791-bc09-47770f327780", + "x-ms-client-request-id": "f65e21f780bbc7c801db793f25bb4c68", + "x-ms-correlation-request-id": "b812a786-1067-4f8b-aa22-e1dbc969b999", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "8eac5b2a-3c67-4a48-b0a3-ab1b7d8a3622", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075032Z:b812a786-1067-4f8b-aa22-e1dbc969b999" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f450-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f1cd95f54995c636fea25a8028ba5c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff076ba7-87b5-4724-b276-f3af81fb9699", + "x-ms-client-request-id": "9f1cd95f54995c636fea25a8028ba5c4", + "x-ms-correlation-request-id": "0f2315af-61c7-43af-8255-25d4631dc5f1", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "6db9dc47-7729-4a06-b889-9b28c81e5978", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075034Z:0f2315af-61c7-43af-8255-25d4631dc5f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f451-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e187987bf01498ccfaf1453de0d6dc10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20146ace-b0f1-4744-826a-974b4e1fb6db", + "x-ms-client-request-id": "e187987bf01498ccfaf1453de0d6dc10", + "x-ms-correlation-request-id": "a2b4f295-e0a8-4702-ae1a-2dfbd1604815", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "afea3051-30e5-4f33-821c-ad09bafc2681", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075035Z:a2b4f295-e0a8-4702-ae1a-2dfbd1604815" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f452-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d976b34fa11fa287be0186d15b20c575", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f85b0ad8-cbd0-4d05-83a8-0ef1b238c08f", + "x-ms-client-request-id": "d976b34fa11fa287be0186d15b20c575", + "x-ms-correlation-request-id": "84a84ddb-4810-4186-a228-ba36f951a2ea", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "16e69ce4-3c10-4867-9f42-b44360e6e37b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075037Z:84a84ddb-4810-4186-a228-ba36f951a2ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f453-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8dc4b4366a346f540c83a5a80f267c99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c09effc-5b04-4515-bd8d-6d0f2ad5692b", + "x-ms-client-request-id": "8dc4b4366a346f540c83a5a80f267c99", + "x-ms-correlation-request-id": "86f583a1-9c21-43b3-a0ce-e71e1fe043a5", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "56c27682-6371-434f-adc8-30e32e61f282", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075038Z:86f583a1-9c21-43b3-a0ce-e71e1fe043a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f454-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f58140dcc15d9a511e4231269fb3dda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f12a9c6a-30e4-41a7-a98c-b21640f2a870", + "x-ms-client-request-id": "4f58140dcc15d9a511e4231269fb3dda", + "x-ms-correlation-request-id": "e5527b1a-2f93-49cb-b473-6056c5bd5699", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "a357c1ae-18e7-45dc-b2ee-265b029ebd85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075039Z:e5527b1a-2f93-49cb-b473-6056c5bd5699" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f455-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c07cf2c4f11e5db5e06cc9bfcde9298", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "786b981c-3222-42cf-b72c-96632a3a96bb", + "x-ms-client-request-id": "2c07cf2c4f11e5db5e06cc9bfcde9298", + "x-ms-correlation-request-id": "346bfdb8-f2a7-466b-a0fe-5aeea270579a", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "50047c9c-d2bf-4cac-b655-74986371a01e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075040Z:346bfdb8-f2a7-466b-a0fe-5aeea270579a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f456-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46c3ed8576c76a5f0fea7c4f47410510", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bff19da-24de-4e21-920b-150d935b9e56", + "x-ms-client-request-id": "46c3ed8576c76a5f0fea7c4f47410510", + "x-ms-correlation-request-id": "cc2d03da-7af0-4414-85ae-ed1bab55bd6e", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "25bbf5b1-48ea-4828-87aa-775800bfb134", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075042Z:cc2d03da-7af0-4414-85ae-ed1bab55bd6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f457-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f7ccb464f1ebd873973f00eff09dc32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a31a0232-8d70-471a-a40e-7fcb420eb4bf", + "x-ms-client-request-id": "3f7ccb464f1ebd873973f00eff09dc32", + "x-ms-correlation-request-id": "6a2cd968-4474-466a-b53a-1983ca95e4bd", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "c5d5748f-fbd0-486b-8633-7d9f0182ae5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075043Z:6a2cd968-4474-466a-b53a-1983ca95e4bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f458-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b8c8a51f738b512709d1d27d38c9e1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0203e044-9de6-47ad-9680-c2b963b7f1aa", + "x-ms-client-request-id": "7b8c8a51f738b512709d1d27d38c9e1d", + "x-ms-correlation-request-id": "43f2bec9-06d3-4350-9763-9733d1095a0a", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "b3ca025b-e6aa-444d-ab09-2a7bda19c041", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075045Z:43f2bec9-06d3-4350-9763-9733d1095a0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f459-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3155bc015362357966060d5486516a05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef8e5d9e-d8fe-461d-ac79-0790cea5fe6b", + "x-ms-client-request-id": "3155bc015362357966060d5486516a05", + "x-ms-correlation-request-id": "f6df84d5-bd05-4a90-9530-c65ba73d17a0", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "138894e7-59d9-4db1-a18c-88709ada6255", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075046Z:f6df84d5-bd05-4a90-9530-c65ba73d17a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f45a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcfe490e89b44fd8b8c6cf813260eaac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4d38701-95d0-47ce-bc71-647d5281054d", + "x-ms-client-request-id": "bcfe490e89b44fd8b8c6cf813260eaac", + "x-ms-correlation-request-id": "413b57c3-1f47-4397-a915-b049cc18599f", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "9b287fd1-384a-4765-b74a-b104c9919f03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075047Z:413b57c3-1f47-4397-a915-b049cc18599f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f45b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "420dd2d5abb4fecf10561531e9bd2f1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d6fc6b8-ac8a-4016-ad46-aafca2338750", + "x-ms-client-request-id": "420dd2d5abb4fecf10561531e9bd2f1e", + "x-ms-correlation-request-id": "008297ad-3f73-4924-a184-6f904d81a726", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "9c71acca-0ac5-4c31-97a2-230bf6ac9e26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075048Z:008297ad-3f73-4924-a184-6f904d81a726" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f45c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89181732e18e7768e305789c83f70206", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "767011b5-adf9-4aee-9bde-de3a882f970c", + "x-ms-client-request-id": "89181732e18e7768e305789c83f70206", + "x-ms-correlation-request-id": "191b0003-bf03-483f-b817-0fe59ee19ea5", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "1d4268b8-88a9-4fec-8a20-f6132d3f4a59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075050Z:191b0003-bf03-483f-b817-0fe59ee19ea5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f45d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b37f601c284363517affab5d74a665fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "409d3868-8926-4903-b2e4-54dd737579fe", + "x-ms-client-request-id": "b37f601c284363517affab5d74a665fa", + "x-ms-correlation-request-id": "105b5447-ecde-4397-8cfb-84049b17f95b", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "848fca3d-15d8-4dd6-bc7b-64a038c5f6a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075051Z:105b5447-ecde-4397-8cfb-84049b17f95b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f45e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b4fb0966047f31e6a955eae32327a18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80db8e1c-cb4f-4635-8291-a8245f9adfc3", + "x-ms-client-request-id": "1b4fb0966047f31e6a955eae32327a18", + "x-ms-correlation-request-id": "589ef092-b71d-4b75-8d20-51115e8e34df", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "c4d27c02-488a-4f4a-a201-4d709ec519ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075052Z:589ef092-b71d-4b75-8d20-51115e8e34df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f45f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89150e547c3e0adac6b50f8e350a033d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65ddf92d-7f2d-4ea0-9e15-c6425fc5a4d4", + "x-ms-client-request-id": "89150e547c3e0adac6b50f8e350a033d", + "x-ms-correlation-request-id": "3b98774b-3370-4a55-b415-61f63349a29e", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "91adb267-bc60-42d2-9580-3005e55955f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075054Z:3b98774b-3370-4a55-b415-61f63349a29e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f460-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2067da0e7a8bbbf418b48aec9a23047", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cd28496-ea28-44a4-a4c1-6ed5743c447d", + "x-ms-client-request-id": "d2067da0e7a8bbbf418b48aec9a23047", + "x-ms-correlation-request-id": "cedf2f3b-b469-4e8d-ab84-e9c7b786ca60", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "d1fda10f-8934-44dc-9a9f-32602c47e54a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075055Z:cedf2f3b-b469-4e8d-ab84-e9c7b786ca60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f461-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65099384dc9019bcd64555915190be60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6357c39c-da7a-41ef-b091-e29fc72b8bbd", + "x-ms-client-request-id": "65099384dc9019bcd64555915190be60", + "x-ms-correlation-request-id": "d8883403-8c9e-4d35-9c98-4ec0081a85aa", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "88f974a5-eaf0-4836-b079-dfaca0946655", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075056Z:d8883403-8c9e-4d35-9c98-4ec0081a85aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f462-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b40e2192a82c6c704f5a47b3342c4023", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86b377de-ed5d-43b3-830b-4f9b831c6335", + "x-ms-client-request-id": "b40e2192a82c6c704f5a47b3342c4023", + "x-ms-correlation-request-id": "e077bf2b-5015-41e5-90e5-1a4875bd2319", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "ffb539af-b3fd-4df2-a524-e724ed4a2105", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075057Z:e077bf2b-5015-41e5-90e5-1a4875bd2319" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f463-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a209c7849d00c3acc1ecfc62922d6ab1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:50:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fcbd8be0-f4e2-420e-bead-a541a5a9b17c", + "x-ms-client-request-id": "a209c7849d00c3acc1ecfc62922d6ab1", + "x-ms-correlation-request-id": "b1a780e7-394b-4ae3-bf45-c6aeb04330c7", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "d38e9d45-48d2-45e1-b6ec-fad2488c3e23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075059Z:b1a780e7-394b-4ae3-bf45-c6aeb04330c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f464-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a71be8cc7c94dc1b229d15369409e5a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1908274c-d369-4f01-af33-823709865939", + "x-ms-client-request-id": "a71be8cc7c94dc1b229d15369409e5a9", + "x-ms-correlation-request-id": "fd317b09-f7c8-442e-b90a-81580049070f", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "42c80f4e-c9ce-40e9-91c3-816edde4bae7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075100Z:fd317b09-f7c8-442e-b90a-81580049070f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f465-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a0c31041b86f45f744af23fac0dda21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12e355e6-b4c2-4ac7-a267-131db4992b85", + "x-ms-client-request-id": "8a0c31041b86f45f744af23fac0dda21", + "x-ms-correlation-request-id": "4278d377-7228-471c-88d7-54e9752ee3be", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "b22656b5-2907-49b5-89b9-51068812dacf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075101Z:4278d377-7228-471c-88d7-54e9752ee3be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f466-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4be696ef9811088fab2d7f6387762fb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29d7e48f-8fca-475a-9df3-4d20a434750f", + "x-ms-client-request-id": "4be696ef9811088fab2d7f6387762fb8", + "x-ms-correlation-request-id": "0dbfdb35-0624-4151-9e17-c5d6201e93c5", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "f24dd34d-967c-4f9d-871b-6c798f4eadaf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075102Z:0dbfdb35-0624-4151-9e17-c5d6201e93c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f467-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "605d5307df21b12a8926334989dc3015", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ecbc696-9b8b-4008-8408-45fc3e3ca098", + "x-ms-client-request-id": "605d5307df21b12a8926334989dc3015", + "x-ms-correlation-request-id": "3513e493-7a2e-4d98-8fde-7a6aae04efcf", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "61565b8f-df0e-4758-9ea3-31faac66d4c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075104Z:3513e493-7a2e-4d98-8fde-7a6aae04efcf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f468-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe46f4c29a226c98a103de589cfc6dfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17b3a759-08a4-48d2-a76a-9d4e8a816a7f", + "x-ms-client-request-id": "fe46f4c29a226c98a103de589cfc6dfe", + "x-ms-correlation-request-id": "fdcff23b-2d91-4acf-b50c-413abba93105", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "a64b58e5-426d-4c76-b705-26ce37bc2fa0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075105Z:fdcff23b-2d91-4acf-b50c-413abba93105" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f469-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58383a1b79af10006b35c2ea65467fcf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18555ed7-2a1e-416e-a0a1-f23980599aaa", + "x-ms-client-request-id": "58383a1b79af10006b35c2ea65467fcf", + "x-ms-correlation-request-id": "62289a0f-ca42-4549-9104-36d45905273e", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "b3f7264a-8ae8-4321-9fed-dec32cfae038", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075106Z:62289a0f-ca42-4549-9104-36d45905273e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f46a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93a06afd30306c95bbf1bf1d01d2148c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00020579-cc48-4f60-be88-a6e822253429", + "x-ms-client-request-id": "93a06afd30306c95bbf1bf1d01d2148c", + "x-ms-correlation-request-id": "f23eb44c-db69-4cf4-a4b1-b698ff4f6ce5", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "feb360d3-f761-4e1f-a900-83a52899520f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075108Z:f23eb44c-db69-4cf4-a4b1-b698ff4f6ce5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f46b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f2e35b9d7a34865f33693edd7ad065b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59c75357-eb31-4903-ab06-c9555266b31b", + "x-ms-client-request-id": "4f2e35b9d7a34865f33693edd7ad065b", + "x-ms-correlation-request-id": "8f35311e-5f4f-4a9c-8e13-48137e32a044", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "0cbc718b-27fa-4eca-b8c0-72bddcd11d37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075109Z:8f35311e-5f4f-4a9c-8e13-48137e32a044" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f46c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "315b0f84d95beacea4cb9dbdbae20e99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a6b6bae-89ce-4e79-ada9-63dbde71855a", + "x-ms-client-request-id": "315b0f84d95beacea4cb9dbdbae20e99", + "x-ms-correlation-request-id": "522097c4-81d5-4841-abe3-3da50dda1941", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "a2002abd-1cb5-4171-98db-59fdfedebb12", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075110Z:522097c4-81d5-4841-abe3-3da50dda1941" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f46d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "303035202f18262b05579ff99da8950d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "afa2fcfb-d4c1-4283-9498-9f4cb7f5c28c", + "x-ms-client-request-id": "303035202f18262b05579ff99da8950d", + "x-ms-correlation-request-id": "1c821d0b-051b-4546-80c7-9f251e7f818d", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "a596770a-9085-45c6-a28d-4911605e131a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075111Z:1c821d0b-051b-4546-80c7-9f251e7f818d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f46e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f19863eae376e0316743aad839a78e11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c20db5d-b5b8-407e-9d85-ec92eacee188", + "x-ms-client-request-id": "f19863eae376e0316743aad839a78e11", + "x-ms-correlation-request-id": "581c8839-292c-4e8d-af51-5f7c84cab825", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "2ea140f9-adff-4c8a-b34e-02bfeeacf853", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075113Z:581c8839-292c-4e8d-af51-5f7c84cab825" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f46f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2ccf927d67d5443e3342c0339d44cfc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d8f793c-f39e-40a9-9473-7a94e4dd515f", + "x-ms-client-request-id": "a2ccf927d67d5443e3342c0339d44cfc", + "x-ms-correlation-request-id": "d804e43b-53f6-4ba3-bda9-2c1025a2f3ca", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "f17c273e-1a5c-49ce-947a-455f93ee3c45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075114Z:d804e43b-53f6-4ba3-bda9-2c1025a2f3ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f470-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57d290361d4a3d220450c9d48553ec5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb7a11f9-23a0-486c-b83c-89ba7a93f941", + "x-ms-client-request-id": "57d290361d4a3d220450c9d48553ec5d", + "x-ms-correlation-request-id": "8009b614-9c67-49c8-aa0e-f084c1f37523", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "96ea4582-354c-46f4-89f2-a9631063e231", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075115Z:8009b614-9c67-49c8-aa0e-f084c1f37523" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f471-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3d28ec9f2db149020430e41b62da692", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22d566d2-0629-44dc-8675-c93cce62c4cc", + "x-ms-client-request-id": "a3d28ec9f2db149020430e41b62da692", + "x-ms-correlation-request-id": "12decc50-32fd-400b-8188-c6bac4dc6e91", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "8f224fdf-b1a0-4dda-9f9d-098f5f88c4ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075116Z:12decc50-32fd-400b-8188-c6bac4dc6e91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f472-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9a1aef636d40ac6d78f9e2d0d6ecf8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e025fee-9430-4444-bb2a-dcac75c0afbe", + "x-ms-client-request-id": "a9a1aef636d40ac6d78f9e2d0d6ecf8f", + "x-ms-correlation-request-id": "650954c0-0a7c-48cd-96de-9161777a59d1", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "461d8f99-8707-4d1f-9153-7377d76b79ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075118Z:650954c0-0a7c-48cd-96de-9161777a59d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f473-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab3acf48a802432000be36060ee086d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "579e3f1e-5443-4645-9a3f-15a7492ff15d", + "x-ms-client-request-id": "ab3acf48a802432000be36060ee086d7", + "x-ms-correlation-request-id": "806e7ba4-8db2-40c6-8962-cd8337cfc918", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "a691524b-b5e0-4551-8680-5a5fb7275bb8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075119Z:806e7ba4-8db2-40c6-8962-cd8337cfc918" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f474-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6de36a943b29288c7c7cc4b546206b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73c78b53-5315-4d4d-94fa-2bdae6ea660f", + "x-ms-client-request-id": "d6de36a943b29288c7c7cc4b546206b1", + "x-ms-correlation-request-id": "550281e3-41d7-4dcd-968e-514253844d18", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "874eaf8a-3c58-470d-9f16-bedda0e038bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075120Z:550281e3-41d7-4dcd-968e-514253844d18" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f475-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7f97e74fbf24d908d5ea816ffc0fbf6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9256c827-2b16-49f1-8b18-c6d694342027", + "x-ms-client-request-id": "e7f97e74fbf24d908d5ea816ffc0fbf6", + "x-ms-correlation-request-id": "1a5e24a5-29d6-43bc-b3bf-83fd9a42c038", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "f549a95f-d4f2-4f51-be2c-5a8180517484", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075122Z:1a5e24a5-29d6-43bc-b3bf-83fd9a42c038" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f476-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d783c609f99004dd46a7e33adcd5ef9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3f37a74-28d0-4b6a-ae7c-07863dc5d5d9", + "x-ms-client-request-id": "d783c609f99004dd46a7e33adcd5ef9d", + "x-ms-correlation-request-id": "93a0ada6-a8a7-44c8-a704-0902251897a9", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "f4f5d1c5-011c-437b-a5dd-d9a6df372632", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075123Z:93a0ada6-a8a7-44c8-a704-0902251897a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f477-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f9185b89ee6aee4a69048549a729206", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a6a874d-22fa-495b-998e-7c2ddd6a004c", + "x-ms-client-request-id": "8f9185b89ee6aee4a69048549a729206", + "x-ms-correlation-request-id": "87911937-598b-49a2-bb56-c4c215f6d197", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "fe8f528f-028e-427c-9715-c6525d4e8a55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075124Z:87911937-598b-49a2-bb56-c4c215f6d197" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f478-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d41d6cb2fdf7a21a1f5a14b175571b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1db80cb1-51fc-4955-b58e-6160da2606b4", + "x-ms-client-request-id": "8d41d6cb2fdf7a21a1f5a14b175571b8", + "x-ms-correlation-request-id": "475e0c05-71f8-4684-8122-4fd1fbce2918", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "ce34c68e-561e-4dc6-9220-6a450600103f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075125Z:475e0c05-71f8-4684-8122-4fd1fbce2918" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f479-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a5e0b6f6c2e6b0fe2d530ffb08969d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3177e75f-b0c9-4482-9c89-40076ac879b0", + "x-ms-client-request-id": "7a5e0b6f6c2e6b0fe2d530ffb08969d4", + "x-ms-correlation-request-id": "12bf537b-7ae3-4811-a6ef-602658dc38ea", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "2b1c792c-63c1-46dd-855a-12293abecdb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075127Z:12bf537b-7ae3-4811-a6ef-602658dc38ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f47a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "056fdc14619388bd6316eef1fd989651", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2336a097-b3f3-4bff-b3e1-56e02745d360", + "x-ms-client-request-id": "056fdc14619388bd6316eef1fd989651", + "x-ms-correlation-request-id": "4cf2784c-f862-4f91-921e-3e6a08777db1", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "dd921739-7bf9-4036-a742-55eed2e29cd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075128Z:4cf2784c-f862-4f91-921e-3e6a08777db1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f47b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fe48f1f18135fd7c6d6aa0aff21ca17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9c65904-2ca3-4706-b2c5-df5c2a680c56", + "x-ms-client-request-id": "8fe48f1f18135fd7c6d6aa0aff21ca17", + "x-ms-correlation-request-id": "77edefd5-87b3-4911-991b-ef055cef63cf", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "dc3e9fbe-fb9b-4ef9-86bc-9ff95ac92577", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075129Z:77edefd5-87b3-4911-991b-ef055cef63cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f47c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a37cc8b6be50d254dd516187d1d6e4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87a9600c-9e80-406b-bb96-2d8f9e2f2d1b", + "x-ms-client-request-id": "3a37cc8b6be50d254dd516187d1d6e4a", + "x-ms-correlation-request-id": "71a12c1d-28b4-4163-8666-eded3fc082e1", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "096124cf-ac08-41ef-8de4-c91b739f0dbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075130Z:71a12c1d-28b4-4163-8666-eded3fc082e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f47d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20e0de3edaa4fcc004103ebcb6b38942", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34df37ef-ac9a-4753-a6fa-2578a9107cff", + "x-ms-client-request-id": "20e0de3edaa4fcc004103ebcb6b38942", + "x-ms-correlation-request-id": "91369fc3-d17d-4acb-8268-6b237b9f2878", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "14588146-31a7-49ab-8304-0cb7d9f0cc2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075132Z:91369fc3-d17d-4acb-8268-6b237b9f2878" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f47e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3066d64c5b61b36b6ad7413e01bfe1a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b563cc79-6538-4d86-9ccf-3774c5202f6a", + "x-ms-client-request-id": "3066d64c5b61b36b6ad7413e01bfe1a9", + "x-ms-correlation-request-id": "065a5507-b5e0-41ec-9af6-998d4911372a", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "6e94b863-edcb-4863-afb1-888443893924", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075133Z:065a5507-b5e0-41ec-9af6-998d4911372a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f47f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20cc6068a941b1730b3b35d52c68579a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd0429c2-d4c5-47ee-9140-f4b0cea40c3e", + "x-ms-client-request-id": "20cc6068a941b1730b3b35d52c68579a", + "x-ms-correlation-request-id": "672b8f93-a956-407c-9122-e747e6b17ebf", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "161d4c02-f5ed-4079-a44a-e7717e0f2cdd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075134Z:672b8f93-a956-407c-9122-e747e6b17ebf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f480-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7cbd44b3db7e2e8732cb6cd9982fa45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c321bd18-bc58-4ad0-9bd7-b8589a7de716", + "x-ms-client-request-id": "a7cbd44b3db7e2e8732cb6cd9982fa45", + "x-ms-correlation-request-id": "f9acd850-0744-4b84-9fd0-0e60f08d8cd1", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "229b6f33-b418-421f-af28-76d9579f28b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075136Z:f9acd850-0744-4b84-9fd0-0e60f08d8cd1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f481-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5654952e69e7a30063b5242626968601", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95ed217a-3bcf-4ec6-8f36-299c95aef71b", + "x-ms-client-request-id": "5654952e69e7a30063b5242626968601", + "x-ms-correlation-request-id": "ad688f14-500f-4eea-9296-8881b163a259", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "cba03615-a013-43d6-b346-65a5346bf674", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075137Z:ad688f14-500f-4eea-9296-8881b163a259" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f482-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2df2a7803af42af177e9ad14f2a61789", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79ba41cd-a179-4943-8c1d-adeea6e3644f", + "x-ms-client-request-id": "2df2a7803af42af177e9ad14f2a61789", + "x-ms-correlation-request-id": "1dc9318f-ba1c-461f-ab99-e21b38be22b0", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "1b0c6126-31eb-4eb9-acb9-dd0e6ecc8289", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075138Z:1dc9318f-ba1c-461f-ab99-e21b38be22b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f483-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97a7f0400114e2b2d327440218c2bcdc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4764ba86-df2c-4868-a8d3-df6121d7d9c4", + "x-ms-client-request-id": "97a7f0400114e2b2d327440218c2bcdc", + "x-ms-correlation-request-id": "d5765420-24c2-4291-b96f-e4b03ae39721", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "c50965b2-7698-444e-a963-1759bb694f56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075139Z:d5765420-24c2-4291-b96f-e4b03ae39721" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f484-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f14db4a6cc90f450a329defdbcebb0bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84885aa4-7187-4c4c-8f21-af2e9fe60893", + "x-ms-client-request-id": "f14db4a6cc90f450a329defdbcebb0bd", + "x-ms-correlation-request-id": "81f9651c-e624-4c4d-a53c-e97d44aa4349", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "48e36cb0-2a5d-4fec-8380-eaa6b4fa317c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075141Z:81f9651c-e624-4c4d-a53c-e97d44aa4349" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f485-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35e59b9defee7fedf40f59ccf5ef11b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46159942-bdec-43b5-b981-fcb6d2317e87", + "x-ms-client-request-id": "35e59b9defee7fedf40f59ccf5ef11b5", + "x-ms-correlation-request-id": "5c29c61c-3e9a-48a5-a8a9-1d26b4117aac", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "8f0a3be2-6d52-4c05-91a4-6d06af332043", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075142Z:5c29c61c-3e9a-48a5-a8a9-1d26b4117aac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f486-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d6ed02d265973f8a0b2f3eb22b526e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab163bc3-496b-4cd9-bd41-3c5c0af351e7", + "x-ms-client-request-id": "3d6ed02d265973f8a0b2f3eb22b526e7", + "x-ms-correlation-request-id": "f6890d5c-e00a-4ba1-9abc-67c997f94795", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "f4b5127e-9a2c-4cfc-9951-9de7b55b4bc5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075143Z:f6890d5c-e00a-4ba1-9abc-67c997f94795" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f487-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d65877787dcb6edc7cefd807384feb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd1c3145-1613-47e7-99f0-e3cf9fcbc248", + "x-ms-client-request-id": "7d65877787dcb6edc7cefd807384feb4", + "x-ms-correlation-request-id": "f455f722-3469-4398-a720-aeb472e63aea", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "c6c7132e-5971-4771-8fb1-db2092ef2400", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075145Z:f455f722-3469-4398-a720-aeb472e63aea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f488-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eccf2917737d7663a271943cfb015c3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54f3e313-5d1e-4a83-9486-cb01bae3b5fb", + "x-ms-client-request-id": "eccf2917737d7663a271943cfb015c3f", + "x-ms-correlation-request-id": "5c1a4fe8-f47a-4344-b8c2-c3fa7404797c", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "36fa7748-d885-4a0f-a9de-3f65af67f901", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075146Z:5c1a4fe8-f47a-4344-b8c2-c3fa7404797c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f489-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e5571e9948aa6d8e2b8758b2978001b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b24c81e6-d37a-470e-8fce-7b2b3ae04bd5", + "x-ms-client-request-id": "6e5571e9948aa6d8e2b8758b2978001b", + "x-ms-correlation-request-id": "dde02523-041a-46a9-a665-11dfb0b9bdd8", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "e3b34b4a-40cd-4e2f-85f2-d43241098be6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075147Z:dde02523-041a-46a9-a665-11dfb0b9bdd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f48a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9d33eb33ae5036a23eeda6af2b1bac5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba9dd18c-0660-41a2-b3e9-7941ba323b6c", + "x-ms-client-request-id": "f9d33eb33ae5036a23eeda6af2b1bac5", + "x-ms-correlation-request-id": "6b103cb3-04a1-435d-bb6a-0d38e857fc66", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "b2d894f4-04bd-43ff-a69a-57ebbf2ba98a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075148Z:6b103cb3-04a1-435d-bb6a-0d38e857fc66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f48b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0196be71902e822a502909c4fdd84d2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "203a3bfd-ede1-42bb-9ccb-0cf39f778dbb", + "x-ms-client-request-id": "0196be71902e822a502909c4fdd84d2a", + "x-ms-correlation-request-id": "89619a26-74e7-4937-b3de-eaa76a087f2f", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "f90852f8-cbee-4109-ad47-a4b6d4af4ce6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075150Z:89619a26-74e7-4937-b3de-eaa76a087f2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f48c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd887971622eaf5906514b9cba6db430", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ffdede4f-fef8-409e-beca-11a357b65042", + "x-ms-client-request-id": "bd887971622eaf5906514b9cba6db430", + "x-ms-correlation-request-id": "f93e3ec6-f6e5-4971-816c-0417f9a6d3d0", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "f7ffedfb-aae2-419f-971a-87565a25fd94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075151Z:f93e3ec6-f6e5-4971-816c-0417f9a6d3d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f48d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b19affdfee123ec1450a8bc30a5064a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c1c0138-6db1-4f19-a72e-7b908aee2327", + "x-ms-client-request-id": "6b19affdfee123ec1450a8bc30a5064a", + "x-ms-correlation-request-id": "69b64ec2-aa45-4d9c-85f1-b1d7afb15c43", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "8893db6c-df34-41de-854f-a0627acf24bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075152Z:69b64ec2-aa45-4d9c-85f1-b1d7afb15c43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f48e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79f9afa0fd280e9764e7fbdd448ec8e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12490d2c-c848-4a28-a1aa-b045f2fe679f", + "x-ms-client-request-id": "79f9afa0fd280e9764e7fbdd448ec8e2", + "x-ms-correlation-request-id": "d78ab6c1-6cf6-45a4-a8b1-b97fbcafc8db", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "bbdc21a7-c8bb-47c0-b948-bf1fd1e6aba1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075154Z:d78ab6c1-6cf6-45a4-a8b1-b97fbcafc8db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f48f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dc7d974e2bf72498c64a8ddba9d7f60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "232151ba-4f40-4ef6-b678-94b5c98296c8", + "x-ms-client-request-id": "4dc7d974e2bf72498c64a8ddba9d7f60", + "x-ms-correlation-request-id": "c800ef69-b304-423e-85f7-47e8b7f23b7c", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "4e3ec8ce-7669-4636-bfdb-cf3bbd46ebcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075155Z:c800ef69-b304-423e-85f7-47e8b7f23b7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f490-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0afb004a3b740007180a06f9030fde86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8f1bbe1-eae8-4650-ba90-c40ced7a4006", + "x-ms-client-request-id": "0afb004a3b740007180a06f9030fde86", + "x-ms-correlation-request-id": "29433c6e-e966-460b-b69b-b1a6a5df8f69", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "82febd6e-1ea7-440a-8ed1-e614a6d426a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075156Z:29433c6e-e966-460b-b69b-b1a6a5df8f69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f491-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5647c588b9debd8a6686edc455b954c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5214cf1f-9b90-4259-9cbe-ff6c68193fa7", + "x-ms-client-request-id": "5647c588b9debd8a6686edc455b954c7", + "x-ms-correlation-request-id": "2f6f2b3b-7e19-4c17-83e6-cf7cb987dc2c", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "91ffe744-6d76-4b76-becf-7af2fc76b256", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075157Z:2f6f2b3b-7e19-4c17-83e6-cf7cb987dc2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f492-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43929a67bd92396ed1c735b4dc4f6f7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:51:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22143132-ff7c-43e5-abc3-947925eb67e4", + "x-ms-client-request-id": "43929a67bd92396ed1c735b4dc4f6f7c", + "x-ms-correlation-request-id": "c8587910-f147-49f4-811f-f670f2a64cb4", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "5f1efade-c2b0-426d-95c5-ed065d27f474", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075159Z:c8587910-f147-49f4-811f-f670f2a64cb4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f493-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f455218628559181763da4ed4e43aa5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1b61d92-d46a-4511-8f89-2ec1f4531780", + "x-ms-client-request-id": "f455218628559181763da4ed4e43aa5e", + "x-ms-correlation-request-id": "71e40d92-0fe2-4825-9eeb-06c575400eda", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "7f802e4e-ee37-4d38-b490-f2a035eee544", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075200Z:71e40d92-0fe2-4825-9eeb-06c575400eda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f494-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68913fb59a7ccbf3560d851783d5e116", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14dd6ec8-f1ef-4daa-a682-7e2613764ca3", + "x-ms-client-request-id": "68913fb59a7ccbf3560d851783d5e116", + "x-ms-correlation-request-id": "fdd28219-2a94-4a13-831a-546306bb56a7", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "c446c176-c689-4f50-b3a1-0daf17cc5485", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075201Z:fdd28219-2a94-4a13-831a-546306bb56a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f495-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "333e701760643f711801cd541881eb8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b95da08f-1cb6-4c77-92b2-7f6e94dba2c9", + "x-ms-client-request-id": "333e701760643f711801cd541881eb8d", + "x-ms-correlation-request-id": "9323eaa6-05fe-43f2-9ce6-99ed74febe25", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "db4c0b39-4f24-4f4f-8a65-468977da23b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075203Z:9323eaa6-05fe-43f2-9ce6-99ed74febe25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f496-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cffd61c07bdeb002e899d47a36a0da0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28953a0b-15a4-4654-bfa2-0014120b4f82", + "x-ms-client-request-id": "9cffd61c07bdeb002e899d47a36a0da0", + "x-ms-correlation-request-id": "835125a7-2316-4f77-a9f5-9eab65e6d3e4", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "1aa855c9-3465-43a1-8ba1-b46041b12492", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075204Z:835125a7-2316-4f77-a9f5-9eab65e6d3e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f497-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddd58e5c770555f9ce524f7bcd9fb2d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d3049bf-193e-43d5-8482-1dd6a1845c2e", + "x-ms-client-request-id": "ddd58e5c770555f9ce524f7bcd9fb2d5", + "x-ms-correlation-request-id": "adef781d-6c4c-4456-8ec7-b67f8711d252", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "a1da26d1-fb7b-4201-9983-72ac2e5f9fdd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075205Z:adef781d-6c4c-4456-8ec7-b67f8711d252" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f498-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "adfaf72244d610586f5205dac3299cae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "531fa9aa-450c-4d78-98b9-608ae9e6208d", + "x-ms-client-request-id": "adfaf72244d610586f5205dac3299cae", + "x-ms-correlation-request-id": "22b4f462-2252-42c9-8fa7-c085f2704001", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "fbd93226-9f4a-4476-aea9-32f8bc908acd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075206Z:22b4f462-2252-42c9-8fa7-c085f2704001" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f499-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89f82df30daba488dca9ce6bb7851d8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af598101-6bd3-4d52-b316-70d41fcc6065", + "x-ms-client-request-id": "89f82df30daba488dca9ce6bb7851d8e", + "x-ms-correlation-request-id": "66caed35-b23f-40c7-8eec-4caa25ede574", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "0670e0fc-dd4e-4883-ae8c-db0fe065dbdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075208Z:66caed35-b23f-40c7-8eec-4caa25ede574" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f49a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab25c7d7606f17c936c56db2721e92a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0581a4b0-9a97-44cf-992f-6ea7021240c0", + "x-ms-client-request-id": "ab25c7d7606f17c936c56db2721e92a4", + "x-ms-correlation-request-id": "bf2c9e09-c6a7-47c1-ad92-5d39527be213", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "1048f4cd-a207-4f56-8563-058705fad784", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075209Z:bf2c9e09-c6a7-47c1-ad92-5d39527be213" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f49b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a087a1b628a614296e56d02d76ed58ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73d74a94-c780-4b29-91f6-853038dc7640", + "x-ms-client-request-id": "a087a1b628a614296e56d02d76ed58ea", + "x-ms-correlation-request-id": "4d7f9a7e-3035-4455-ab15-dd2c2c8c7289", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "be7a3d00-c13d-4f78-969c-0dbfa9133971", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075211Z:4d7f9a7e-3035-4455-ab15-dd2c2c8c7289" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f49c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb037635f003923e63e153e69fd532bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d01c786-abee-44dc-90ab-e384dbdcf0b5", + "x-ms-client-request-id": "fb037635f003923e63e153e69fd532bd", + "x-ms-correlation-request-id": "0bc726dc-00a4-4c8a-9558-6f19dc5b9c5c", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "e02046eb-bc1e-4b9b-8f37-b316d228dee3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075212Z:0bc726dc-00a4-4c8a-9558-6f19dc5b9c5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f49d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15b429177dfdaee89e103d19909ca048", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2c626c8a-928a-4eba-be4e-8a4992aab48e", + "x-ms-client-request-id": "15b429177dfdaee89e103d19909ca048", + "x-ms-correlation-request-id": "c0531191-8cb2-441d-89d4-d10dc51da6f8", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "7ec5f9af-eaad-4971-9902-5f4af87f6709", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075213Z:c0531191-8cb2-441d-89d4-d10dc51da6f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f49e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc7d836c961bc6a063f43cc5d5437498", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "347b7fbc-1d7d-46bf-8fe4-b1bedbebb0db", + "x-ms-client-request-id": "fc7d836c961bc6a063f43cc5d5437498", + "x-ms-correlation-request-id": "d48d922e-0c5e-42d8-b37a-6a3efa66383d", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "7460ebb7-ff6a-4c88-bdbf-e1638dab8e43", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075215Z:d48d922e-0c5e-42d8-b37a-6a3efa66383d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f49f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c1512234238b7ec8e555cf3b32402c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5c9848b-dea1-4692-bc84-09405ac2e2cb", + "x-ms-client-request-id": "4c1512234238b7ec8e555cf3b32402c6", + "x-ms-correlation-request-id": "c67b42c3-b052-48ab-b104-7299968ea54b", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "c661afc4-19b2-418a-9973-2cecf25e43b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075216Z:c67b42c3-b052-48ab-b104-7299968ea54b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4a0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c790b40365881a289eeb2084123d95b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ab9fedb-b0c2-45cb-ae93-aea2fc2b7509", + "x-ms-client-request-id": "1c790b40365881a289eeb2084123d95b", + "x-ms-correlation-request-id": "b60a4e9a-1467-4929-8eb2-de64f91940f0", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "7bf7faac-bdd8-40a9-b7ad-e23c36a9a407", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075217Z:b60a4e9a-1467-4929-8eb2-de64f91940f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4a1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ef5a49b54862a1096c56dc539ad133e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a343d13b-5d0d-4641-affe-5e905860de39", + "x-ms-client-request-id": "7ef5a49b54862a1096c56dc539ad133e", + "x-ms-correlation-request-id": "ef8ab8ec-69cb-462b-8ba8-b4f16cc91417", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "1aabd4be-42a3-48d6-b428-499e0d6b5762", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075218Z:ef8ab8ec-69cb-462b-8ba8-b4f16cc91417" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4a2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c98475f258c9ed406f94c3498fe4766a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d36eec1-4470-4026-afd3-bf0b972f8b56", + "x-ms-client-request-id": "c98475f258c9ed406f94c3498fe4766a", + "x-ms-correlation-request-id": "5797f505-69a6-49e7-aef4-6f2c57ee244e", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "44b7fdcd-2bfb-4d33-93ca-3c672c1741f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075220Z:5797f505-69a6-49e7-aef4-6f2c57ee244e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4a3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f57017c842eec40fa4f8692c8dd47db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b70ec914-b055-4109-8346-81e24a42f5f6", + "x-ms-client-request-id": "0f57017c842eec40fa4f8692c8dd47db", + "x-ms-correlation-request-id": "d78ead46-f8dd-42ff-a5c3-9ed25475c4e7", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "272456ec-545a-4f4d-8e08-a14c7174ede6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075221Z:d78ead46-f8dd-42ff-a5c3-9ed25475c4e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4a4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb1674db0f9e439163080ef291c69ab1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "523e2186-f1ed-488d-9a43-938302c3a950", + "x-ms-client-request-id": "cb1674db0f9e439163080ef291c69ab1", + "x-ms-correlation-request-id": "85ee8670-b28b-463c-9e30-48e028a220fa", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "afcd3c6c-8a2d-4741-a67a-86b36c2b5be1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075223Z:85ee8670-b28b-463c-9e30-48e028a220fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4a5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3848034f04566e0f3598cf7ad1ad2491", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "406c85f4-d81b-4da7-ae70-b77ff051e1f4", + "x-ms-client-request-id": "3848034f04566e0f3598cf7ad1ad2491", + "x-ms-correlation-request-id": "70d0d2d3-968a-4486-bd40-c54e85c2f988", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "0ed6fd28-ce6e-4f36-9032-18dd8ba4376e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075224Z:70d0d2d3-968a-4486-bd40-c54e85c2f988" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4a6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b6ee74daace6dcc6f13ab26754d5a33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "399f5fed-e97e-4878-ba46-d08d3310fb09", + "x-ms-client-request-id": "1b6ee74daace6dcc6f13ab26754d5a33", + "x-ms-correlation-request-id": "d146f625-9c34-4817-8d3f-0b54e8f36417", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "49f3286d-4b77-4e41-87a4-0a0df4e8a316", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075225Z:d146f625-9c34-4817-8d3f-0b54e8f36417" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4a7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c543d4b40f94d78565a795063f1672b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98a4183f-6d4c-4f69-a09d-fb310f3aab71", + "x-ms-client-request-id": "c543d4b40f94d78565a795063f1672b6", + "x-ms-correlation-request-id": "bc5895c1-127b-49e5-a56a-a9f6fe1314d7", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "bbe428ef-16b3-480a-9773-1f4fccbb0880", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075227Z:bc5895c1-127b-49e5-a56a-a9f6fe1314d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4a8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9a57ce37f58a4e336dbc84258e9f8e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3507d6f3-1567-4b68-ae5e-1ae004eb7c36", + "x-ms-client-request-id": "a9a57ce37f58a4e336dbc84258e9f8e7", + "x-ms-correlation-request-id": "b377d817-dd26-49b8-bae6-88e4cae7f1b3", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "41dec504-8f06-447c-be02-8beef4fc61c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075228Z:b377d817-dd26-49b8-bae6-88e4cae7f1b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4a9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcc59b3d5f6a3dfd6197b52615c52d58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49a7b785-48fd-4fa3-8dac-85964f163e3c", + "x-ms-client-request-id": "fcc59b3d5f6a3dfd6197b52615c52d58", + "x-ms-correlation-request-id": "6af75662-4276-4e0a-aa9b-e22bf998e1e5", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "c849f07c-b18c-49eb-b8fd-57fb77cbbeb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075229Z:6af75662-4276-4e0a-aa9b-e22bf998e1e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4aa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f842f5a0b0a835dbf09e8eb947427e7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6899359f-c3b2-40c0-8cc6-fe023d6f743a", + "x-ms-client-request-id": "f842f5a0b0a835dbf09e8eb947427e7c", + "x-ms-correlation-request-id": "15cf7895-3967-4f90-ba27-a8c0fc349f55", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "c4cdfaa5-6e24-48f7-9aa7-02b9112f0641", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075230Z:15cf7895-3967-4f90-ba27-a8c0fc349f55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ab-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3c8adae7551844b7f6748c1c9bd8f71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b410c72-8bfd-4756-b0c8-e65135400f94", + "x-ms-client-request-id": "a3c8adae7551844b7f6748c1c9bd8f71", + "x-ms-correlation-request-id": "02a720b6-c3a2-42cc-b412-2a4d3d03e501", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "129d0e8e-37ae-4bb4-b29c-0267f4cc4727", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075232Z:02a720b6-c3a2-42cc-b412-2a4d3d03e501" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ac-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63a16fadffa68c3fc0900ccbd143f61e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "433fc6ad-9cad-4546-9960-88357d87eb5e", + "x-ms-client-request-id": "63a16fadffa68c3fc0900ccbd143f61e", + "x-ms-correlation-request-id": "d8ee9e97-63bc-45f4-b40a-99b11c1b1b8f", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "236831fe-72e0-458e-ae9d-d088857376c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075233Z:d8ee9e97-63bc-45f4-b40a-99b11c1b1b8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ad-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "677739188afc2b07a9be7940681a6c33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "302a3d86-9a1f-4d67-b84d-47743c1ea9f5", + "x-ms-client-request-id": "677739188afc2b07a9be7940681a6c33", + "x-ms-correlation-request-id": "ec7c098e-63e4-4cba-b5fd-7faa03976674", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "71da7063-82f2-4ec2-bf63-4d531689513d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075234Z:ec7c098e-63e4-4cba-b5fd-7faa03976674" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ae-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d80c1d0f1aa1aed56e3ce3c06980b23c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b489b241-8f3e-4395-b853-f03936fdc5b5", + "x-ms-client-request-id": "d80c1d0f1aa1aed56e3ce3c06980b23c", + "x-ms-correlation-request-id": "0dd66995-722b-468a-a158-b7b7e025d155", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "8a339ce1-557e-4678-a8d6-1542e6b59ae2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075236Z:0dd66995-722b-468a-a158-b7b7e025d155" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4af-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fa82971284523746776bae886fe23a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc154a02-8ff9-4bbe-b9df-b35307aa7a60", + "x-ms-client-request-id": "8fa82971284523746776bae886fe23a5", + "x-ms-correlation-request-id": "a941dee1-3049-4675-845c-11eaeba1983c", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "cb930557-80e0-4162-a485-71cd4a91311f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075237Z:a941dee1-3049-4675-845c-11eaeba1983c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4b0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3bcd8231e36fe7d64c8f8c0a646c129", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf37dc46-8d07-4cf2-a93d-67aec27a4edf", + "x-ms-client-request-id": "b3bcd8231e36fe7d64c8f8c0a646c129", + "x-ms-correlation-request-id": "7a121805-0519-4ce0-a7dd-10b7408d637e", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "5a408392-1bcb-426e-9ea2-3a92f8cf240c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075238Z:7a121805-0519-4ce0-a7dd-10b7408d637e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4b1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3fcf3c0bdc72e6eda9e9702a60ed2870", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51d98a0f-89c6-450b-8e64-1f04d9bd5f25", + "x-ms-client-request-id": "3fcf3c0bdc72e6eda9e9702a60ed2870", + "x-ms-correlation-request-id": "38408507-276a-4439-92a9-268c5946071e", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "b1dee41c-054e-4f0e-8bbd-d7be9b7d17d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075239Z:38408507-276a-4439-92a9-268c5946071e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4b2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "909d3d18ffc35205acaa2a7d2fb37c20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bdbbb436-16ad-4997-be98-ce450abbeb75", + "x-ms-client-request-id": "909d3d18ffc35205acaa2a7d2fb37c20", + "x-ms-correlation-request-id": "430e3640-65c0-45c9-99e7-c43beb7e8d42", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "c3cfc35f-ee9c-476a-902c-204b2c8269e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075241Z:430e3640-65c0-45c9-99e7-c43beb7e8d42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4b3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4adc90b4e42e4733ebd50a4dad529d77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66f833f1-af5b-48f4-9ab2-dd19dbb3f1a3", + "x-ms-client-request-id": "4adc90b4e42e4733ebd50a4dad529d77", + "x-ms-correlation-request-id": "b3428932-6395-4274-bad6-b3b09ef35a00", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "f90fffbf-2f46-4cab-82f8-f0c64265b003", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075242Z:b3428932-6395-4274-bad6-b3b09ef35a00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4b4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68a788a030a90c65367c92c7b170b7f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b27b810d-a71e-4fb2-aa4d-9a38a50dbbc1", + "x-ms-client-request-id": "68a788a030a90c65367c92c7b170b7f5", + "x-ms-correlation-request-id": "0726cd6a-ddd2-48e8-83dc-3d0b2b5a7316", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "d48866e4-222b-4368-a995-fba058b42c1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075244Z:0726cd6a-ddd2-48e8-83dc-3d0b2b5a7316" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4b5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf75506cde1034410955a5eef4b8a559", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da5975e4-5106-4dc1-a065-d006bc2c6608", + "x-ms-client-request-id": "cf75506cde1034410955a5eef4b8a559", + "x-ms-correlation-request-id": "476207b5-248a-4a61-944e-eeac976a550d", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "077833d4-f913-4f50-9c39-f6aae01caf78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075245Z:476207b5-248a-4a61-944e-eeac976a550d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4b6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7dcb30c140c84762bd013b1516c957b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f219de14-7da5-4eba-94d4-822eb5d75d8f", + "x-ms-client-request-id": "a7dcb30c140c84762bd013b1516c957b", + "x-ms-correlation-request-id": "7605c83b-43b8-4cf0-a6a8-bbc09b58f86c", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "4e68bcae-271e-4fb8-a611-7dd2755f0c33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075246Z:7605c83b-43b8-4cf0-a6a8-bbc09b58f86c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4b7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5de0151ecddcc26646735e538b77187e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a07bea88-7c0c-45b2-a7d4-6d7e2b654959", + "x-ms-client-request-id": "5de0151ecddcc26646735e538b77187e", + "x-ms-correlation-request-id": "8533dd21-8431-4ff8-8de5-e3328258a2a9", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "c7bb433d-bda2-438c-b5fd-b03c5fd2c343", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075248Z:8533dd21-8431-4ff8-8de5-e3328258a2a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4b8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "febb39d70f9358e8d9f1a440ca90e29d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e85b6be-c3b9-48e2-be5c-52e1f3e4fa34", + "x-ms-client-request-id": "febb39d70f9358e8d9f1a440ca90e29d", + "x-ms-correlation-request-id": "9957f003-2c0f-4cf2-b6de-b0b8e625dbb3", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "95cd3c51-adf6-4da3-9ebd-b08dac4e8a3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075249Z:9957f003-2c0f-4cf2-b6de-b0b8e625dbb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4b9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "decf2ac048d83f7c4c196199b522f8b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fdbb4e1c-2d0f-436b-9fe6-7cec06fdbfa9", + "x-ms-client-request-id": "decf2ac048d83f7c4c196199b522f8b4", + "x-ms-correlation-request-id": "ccbdad1e-5eba-4d3e-95f3-7433fd307fc9", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "a1fc2283-2fff-42c0-a41f-7e97bf7dc00a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075250Z:ccbdad1e-5eba-4d3e-95f3-7433fd307fc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ba-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17da94b897b10fe72d8783eb2926f7b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a00c3bc0-e084-4453-9424-f2a43fe46673", + "x-ms-client-request-id": "17da94b897b10fe72d8783eb2926f7b6", + "x-ms-correlation-request-id": "4f9e7b85-ce93-4a4d-961f-318f30dd646b", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "6c7bbe5c-5b22-49f5-be8e-a9f89b62a09e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075252Z:4f9e7b85-ce93-4a4d-961f-318f30dd646b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4bb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6193c19039a78ea5bd7bb17aad4fa3b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6b538ed-28e6-45e0-a095-0991c48ccd33", + "x-ms-client-request-id": "6193c19039a78ea5bd7bb17aad4fa3b6", + "x-ms-correlation-request-id": "34bd118a-56eb-4fc6-99f9-50a6359cfca0", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "e7e52c53-066d-4570-994d-edb07ddb881a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075253Z:34bd118a-56eb-4fc6-99f9-50a6359cfca0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4bc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3687eff8cab529ec42c0b150c5901526", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7deda62-daf0-4a37-b785-5cfd756642e7", + "x-ms-client-request-id": "3687eff8cab529ec42c0b150c5901526", + "x-ms-correlation-request-id": "2069a67b-36d1-4da6-9c5b-8e94a79c25ca", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "4ea2aecf-b837-45e8-96f5-4493356cd8d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075254Z:2069a67b-36d1-4da6-9c5b-8e94a79c25ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4bd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f408ab21978f7e0def4b5a35e56d61dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95ea5d26-87e0-4fa9-8006-c50b44681099", + "x-ms-client-request-id": "f408ab21978f7e0def4b5a35e56d61dd", + "x-ms-correlation-request-id": "9907d3d0-6522-45ab-9373-a55c0d5fa23f", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "9b6505a1-c53e-44d1-ad2d-3aed35ad100f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075255Z:9907d3d0-6522-45ab-9373-a55c0d5fa23f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4be-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39f2cce4c19ec600d4691ee68755c92c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "227e9b07-7f8e-4a70-bde4-ee6cb68c6bb3", + "x-ms-client-request-id": "39f2cce4c19ec600d4691ee68755c92c", + "x-ms-correlation-request-id": "f7e26351-8001-4953-89ad-5b75068553ab", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "ee2f38bd-25f7-42cc-a313-d63141468390", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075257Z:f7e26351-8001-4953-89ad-5b75068553ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4bf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02588a66af466127e208466a70b743d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5dae377-fe0f-4960-b504-69fca95048ef", + "x-ms-client-request-id": "02588a66af466127e208466a70b743d5", + "x-ms-correlation-request-id": "198ea1a4-622f-4867-abdf-11866c572c37", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "60041897-4cc5-4a60-a4e3-d4bb9a8c0171", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075258Z:198ea1a4-622f-4867-abdf-11866c572c37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4c0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f86cd35fdb9e6087ab411f267926f79a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:52:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d97b8bc-2266-4b14-96cc-38608ebbf74d", + "x-ms-client-request-id": "f86cd35fdb9e6087ab411f267926f79a", + "x-ms-correlation-request-id": "bf9ae8f7-7472-40a3-841b-a3469e3e0906", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "06202757-c096-4633-8d89-923d20bb04fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075259Z:bf9ae8f7-7472-40a3-841b-a3469e3e0906" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4c1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5bce2d815e143596a59157957a95561c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f98ae3a5-448c-4256-a01e-c854ee57f1b5", + "x-ms-client-request-id": "5bce2d815e143596a59157957a95561c", + "x-ms-correlation-request-id": "124b6a2f-f913-4f50-b37f-1d5c5f326087", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "b86e9cf5-4231-4b73-950b-44146aac61f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075301Z:124b6a2f-f913-4f50-b37f-1d5c5f326087" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4c2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3874825d1e88a8e02f857058f00e7bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a6a9dc4-d821-470c-964f-71a7de4d4614", + "x-ms-client-request-id": "b3874825d1e88a8e02f857058f00e7bb", + "x-ms-correlation-request-id": "e5c09778-2a76-4878-97fa-62a3b3937394", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "6c52292d-c3ac-4518-b125-071942027a1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075302Z:e5c09778-2a76-4878-97fa-62a3b3937394" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4c3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42e9ac11e8e900c03d37520c84f2e515", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "edc99473-743a-4ef0-a522-4f46e4ca5297", + "x-ms-client-request-id": "42e9ac11e8e900c03d37520c84f2e515", + "x-ms-correlation-request-id": "96cfcfc1-a8d5-444f-a465-578f46a42880", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "8cf6b4d3-7483-446a-aa59-1b227ed95df5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075303Z:96cfcfc1-a8d5-444f-a465-578f46a42880" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4c4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "300002eb439fafb19f43581c0791a5a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da02ccd9-addc-436d-b60c-b615e463ab04", + "x-ms-client-request-id": "300002eb439fafb19f43581c0791a5a4", + "x-ms-correlation-request-id": "a77618d9-20c9-434e-986d-95727d30ff9a", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "9b7f1bf4-d87d-4f7b-941f-7e8abca340b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075304Z:a77618d9-20c9-434e-986d-95727d30ff9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4c5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce839ba914ac3d33888676b17e810610", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85e02a42-231b-4d6b-b16f-31468ae083fa", + "x-ms-client-request-id": "ce839ba914ac3d33888676b17e810610", + "x-ms-correlation-request-id": "661d623d-f406-4ba6-a97f-a1a7a9056289", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "f1497362-2f70-48ed-901e-048319cee854", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075306Z:661d623d-f406-4ba6-a97f-a1a7a9056289" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4c6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c1a4113b700ce1cfb39a2a590a4f8ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95b2b31d-ac7c-4fd6-bd16-3169ddd17bd9", + "x-ms-client-request-id": "8c1a4113b700ce1cfb39a2a590a4f8ab", + "x-ms-correlation-request-id": "bcab1e2a-81e0-4b20-b1ca-bb9c345cc016", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "a9093e1d-0874-4d6c-af73-49204b11eb6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075307Z:bcab1e2a-81e0-4b20-b1ca-bb9c345cc016" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4c7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e863ad91176ed669cfc2a819ccff311e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d332ad7a-4292-4e72-9c69-628aa0516604", + "x-ms-client-request-id": "e863ad91176ed669cfc2a819ccff311e", + "x-ms-correlation-request-id": "459030db-a5d7-43b3-ab42-963a53f8348b", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "d022bb90-8269-4b05-b779-8537bbb6de69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075308Z:459030db-a5d7-43b3-ab42-963a53f8348b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4c8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c509473d1877f2a47fb5d273718eade4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6992309e-b4fa-4d95-a820-f68e753348a3", + "x-ms-client-request-id": "c509473d1877f2a47fb5d273718eade4", + "x-ms-correlation-request-id": "b10e1054-1576-4c06-b126-c4804625d332", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "cf92b11a-d716-4e15-915a-dac1c7433e33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075309Z:b10e1054-1576-4c06-b126-c4804625d332" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4c9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d120cb8d1d1dfba2d843bd3d0f0201fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "afa7c575-4308-49a8-a5bf-e4237294772a", + "x-ms-client-request-id": "d120cb8d1d1dfba2d843bd3d0f0201fc", + "x-ms-correlation-request-id": "e7985eeb-7b18-43c4-8615-d9a17a2b4733", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "2956aefd-1c46-4511-bfd5-2d07751504d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075311Z:e7985eeb-7b18-43c4-8615-d9a17a2b4733" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ca-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48678408339a7933097069b844f56540", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08423d56-71ec-4a36-a4aa-e9c0ee1da5c9", + "x-ms-client-request-id": "48678408339a7933097069b844f56540", + "x-ms-correlation-request-id": "09e41529-254f-4d47-92f0-133f4950585e", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "2baada06-c0b4-4b86-a6c5-24bcca7b0c19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075312Z:09e41529-254f-4d47-92f0-133f4950585e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4cb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "018bc3155fdf2000a40dec345a66e37c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68dff2c5-9847-4b49-b1c9-2c8dd0656e3b", + "x-ms-client-request-id": "018bc3155fdf2000a40dec345a66e37c", + "x-ms-correlation-request-id": "b4f9a497-d8bd-4f6d-8ee0-5f2d1f78c64d", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "003b75df-30a9-4d22-a428-71a35f59baa3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075313Z:b4f9a497-d8bd-4f6d-8ee0-5f2d1f78c64d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4cc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed6bd5b464275a4997a7c7adb4eab6e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "994bac68-6742-41a5-a092-40c18745508a", + "x-ms-client-request-id": "ed6bd5b464275a4997a7c7adb4eab6e3", + "x-ms-correlation-request-id": "45a500f0-fbbe-41ab-9905-0e8bd0126b91", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "8762acde-be2c-4b72-8be5-85b6750b9d3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075315Z:45a500f0-fbbe-41ab-9905-0e8bd0126b91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4cd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b287dddff77a81d8347a48c46ff1ea3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d66c346c-c128-46fc-b132-b412ce0de35f", + "x-ms-client-request-id": "4b287dddff77a81d8347a48c46ff1ea3", + "x-ms-correlation-request-id": "3b68c728-f067-4aa5-8fd5-fdc8ef26d7ba", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "775e19b8-934a-494d-908a-b4970212f58d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075316Z:3b68c728-f067-4aa5-8fd5-fdc8ef26d7ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ce-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f03ec8d778ab1197a30693898536bba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "600189c2-bf31-41c5-9102-d8acccd4c1e0", + "x-ms-client-request-id": "6f03ec8d778ab1197a30693898536bba", + "x-ms-correlation-request-id": "78d52275-e2ea-4cbb-bf19-e1002202a0ca", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "d70ca729-2393-41d4-a501-4e2c9cbc45ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075317Z:78d52275-e2ea-4cbb-bf19-e1002202a0ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4cf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd560956983db405b8c369dfbfbd1498", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65836436-c3f1-4541-9425-c0fe2dc4b7d2", + "x-ms-client-request-id": "dd560956983db405b8c369dfbfbd1498", + "x-ms-correlation-request-id": "019cdd3a-6e99-42bf-9e01-2fdfa1c06891", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "1302884c-1712-4f25-b2c9-3d19f2d540a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075318Z:019cdd3a-6e99-42bf-9e01-2fdfa1c06891" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4d0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c71f238847e665586376d14696e50f30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea51e282-5062-4576-99dc-4df8e568e9d0", + "x-ms-client-request-id": "c71f238847e665586376d14696e50f30", + "x-ms-correlation-request-id": "fb344bcd-12c9-40cf-9f7a-a57dafda30e4", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "e9f4071b-53c2-464a-b373-fb7ac25c7043", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075320Z:fb344bcd-12c9-40cf-9f7a-a57dafda30e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4d1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c35eadb41a8f566e74fb6c60e39f1bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "341502a9-d653-4675-8112-07bbab4685c1", + "x-ms-client-request-id": "3c35eadb41a8f566e74fb6c60e39f1bc", + "x-ms-correlation-request-id": "acbd7926-6d51-45d7-800c-e707b0979f23", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "0022c022-089b-4f82-9301-51bdea315cc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075321Z:acbd7926-6d51-45d7-800c-e707b0979f23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4d2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75afd11ca4330fd3b0f079c6c6be1ed3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83f46beb-a7cb-47b3-b276-d7d728ca2baa", + "x-ms-client-request-id": "75afd11ca4330fd3b0f079c6c6be1ed3", + "x-ms-correlation-request-id": "123b89b4-aab2-4282-a210-eb4f86a2e971", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "fbf13bb0-7342-4034-8849-d58653ff1d92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075322Z:123b89b4-aab2-4282-a210-eb4f86a2e971" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4d3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d50338b3d78747efbd2ae0979192572a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cb43d87-c810-40ca-a0c3-2281f19e9f41", + "x-ms-client-request-id": "d50338b3d78747efbd2ae0979192572a", + "x-ms-correlation-request-id": "dbd8b6c5-09fb-4429-9da8-24aabb8d9ceb", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "d2e47b68-625e-4273-8efb-aa88b2e1262f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075323Z:dbd8b6c5-09fb-4429-9da8-24aabb8d9ceb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4d4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c42914859a3537fd17268bb7c79f2e29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52074992-4dab-4b52-bff1-a43fabdee9a8", + "x-ms-client-request-id": "c42914859a3537fd17268bb7c79f2e29", + "x-ms-correlation-request-id": "f98c5429-112c-48c2-8d33-56ebc1f5f28b", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "3d705da4-665a-4714-aaf2-51f71ed31ab6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075325Z:f98c5429-112c-48c2-8d33-56ebc1f5f28b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4d5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d513e3301c364535e167b708c33b7e1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81cad5d0-2703-4e9d-bf9f-c78a9ccb2c9e", + "x-ms-client-request-id": "d513e3301c364535e167b708c33b7e1e", + "x-ms-correlation-request-id": "296d02bb-57f6-4ae7-a447-e47d93938562", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "41bce577-ad37-4976-bbe3-eb02e52ad1e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075326Z:296d02bb-57f6-4ae7-a447-e47d93938562" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4d6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2414f995994199d3bccbe614c387f1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08f9ec36-080d-45e2-8020-0d56ffae251b", + "x-ms-client-request-id": "b2414f995994199d3bccbe614c387f1e", + "x-ms-correlation-request-id": "61fb79c1-4cfb-4039-9d28-611d4cc7ec95", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "eaf36c93-a689-4106-b1f1-48e6a7caa43c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075327Z:61fb79c1-4cfb-4039-9d28-611d4cc7ec95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4d7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad67b6fb817f69f3dfe4e3cde2f473db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a165d2d0-d584-4c1e-8d88-d0799cf0d6d5", + "x-ms-client-request-id": "ad67b6fb817f69f3dfe4e3cde2f473db", + "x-ms-correlation-request-id": "1275324f-ec7e-42ec-b49d-fa79db080c96", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "82800f2e-5a73-466a-b2ae-6bb39b335420", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075329Z:1275324f-ec7e-42ec-b49d-fa79db080c96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4d8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "781e6ca87c5dd69445f99a695dd3f9a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb305207-82ea-40ac-80ad-e4e34aa6322f", + "x-ms-client-request-id": "781e6ca87c5dd69445f99a695dd3f9a9", + "x-ms-correlation-request-id": "d6c2a395-a569-4d7a-bf22-7ba7c05508ed", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "3a8ef425-b65d-40d6-b7bb-7f28dad0943b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075330Z:d6c2a395-a569-4d7a-bf22-7ba7c05508ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4d9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d0c99e8d0d3179f5bd8d2af76cf3746", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "178c509a-f5c2-41e2-9958-12c587d7788f", + "x-ms-client-request-id": "0d0c99e8d0d3179f5bd8d2af76cf3746", + "x-ms-correlation-request-id": "305d9648-35ff-4655-9582-75c64d8ca6a4", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "b5c1529a-7c5d-4cc4-a91b-afb25b713fdf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075331Z:305d9648-35ff-4655-9582-75c64d8ca6a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4da-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfb9e25807197fc022906885e68a0b0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08251133-4031-46dc-a585-f5efc83d00bf", + "x-ms-client-request-id": "dfb9e25807197fc022906885e68a0b0b", + "x-ms-correlation-request-id": "ca8ed8e3-8cf5-4a57-953b-b51d1a79b318", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "3f2b12ab-deb5-48eb-9433-696b320566e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075332Z:ca8ed8e3-8cf5-4a57-953b-b51d1a79b318" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4db-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48e539eb66e7d807cd061c85a9e56076", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2473f99-632f-4b2c-a33a-9442b4252006", + "x-ms-client-request-id": "48e539eb66e7d807cd061c85a9e56076", + "x-ms-correlation-request-id": "285fbb08-c53e-44c5-9dac-e40c69a5d8d6", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "1abfa438-fae0-48b5-b0a1-d90544a788bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075334Z:285fbb08-c53e-44c5-9dac-e40c69a5d8d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4dc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b1154c11a1ae08fd98dea43671930d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "993960b6-f28d-4ecb-ab85-e170aa84db5d", + "x-ms-client-request-id": "7b1154c11a1ae08fd98dea43671930d1", + "x-ms-correlation-request-id": "550b5aca-3704-4876-891e-cf950ba7375e", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "a6b876a8-1883-4d89-9d58-41e6937855a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075336Z:550b5aca-3704-4876-891e-cf950ba7375e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4dd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cc3c7ccefe9f15edae01113ea3ad53d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9d9cb60-86a1-467b-af0a-8dcfefa4b9ad", + "x-ms-client-request-id": "3cc3c7ccefe9f15edae01113ea3ad53d", + "x-ms-correlation-request-id": "40f045f0-24df-47fb-a4b7-fef8d2ec3b88", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "80f31d08-b956-470d-ac3e-195ddc369397", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075337Z:40f045f0-24df-47fb-a4b7-fef8d2ec3b88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4de-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92c4f22f8f78d1f0aa046e5a7bc470b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67aa5096-2083-4e13-8127-c8cb2c91f9a9", + "x-ms-client-request-id": "92c4f22f8f78d1f0aa046e5a7bc470b3", + "x-ms-correlation-request-id": "d3212d57-5da3-46b8-a8cd-c87e80defb31", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "bd8b69b8-dd75-4ff4-8095-6e22c7b2d430", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075340Z:d3212d57-5da3-46b8-a8cd-c87e80defb31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4df-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1b84bd52421d28cf51fa139087cf69f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dce77fc2-483c-4cb8-91db-5af70bcce256", + "x-ms-client-request-id": "e1b84bd52421d28cf51fa139087cf69f", + "x-ms-correlation-request-id": "03365724-f215-456a-85ce-fec135a04216", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "f3515c32-d286-4ddb-a7bc-505e014465d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075341Z:03365724-f215-456a-85ce-fec135a04216" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4e0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7513adb79e553d58d6f292e580047516", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2735c5ed-4429-4f9a-8f45-c5e9bd259e79", + "x-ms-client-request-id": "7513adb79e553d58d6f292e580047516", + "x-ms-correlation-request-id": "404a34a4-fbe3-4d12-ba84-92eef752e8c9", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "13b23efa-1cf1-4bce-8fca-53f3c87e776c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075343Z:404a34a4-fbe3-4d12-ba84-92eef752e8c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4e1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e3d5e70f3810b1b65f19d58eeb6c92e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ed943c9-e898-401b-913e-0039ee982872", + "x-ms-client-request-id": "9e3d5e70f3810b1b65f19d58eeb6c92e", + "x-ms-correlation-request-id": "8a326068-f35f-4849-9c81-b120c5144549", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "e2bc09de-f8bf-43ca-9b0b-2116dce28ec8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075344Z:8a326068-f35f-4849-9c81-b120c5144549" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4e2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cea2cf0efab0375df27b0b2e91a751f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65126b4a-aa5a-47f0-8b40-aa75562227e7", + "x-ms-client-request-id": "cea2cf0efab0375df27b0b2e91a751f1", + "x-ms-correlation-request-id": "9479866d-a1d6-4d26-b8c5-47a860167733", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "8cbc69ee-e383-4531-a913-d1e39f3915b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075345Z:9479866d-a1d6-4d26-b8c5-47a860167733" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4e3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9c98ba9573ec31d91080f6300ff4e20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ba825f0-db01-4778-8c17-5bd0e0021a6f", + "x-ms-client-request-id": "a9c98ba9573ec31d91080f6300ff4e20", + "x-ms-correlation-request-id": "78b1b470-9c44-4620-b068-848f5353cae0", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "069b65c0-7325-43b8-b168-18b80d826e73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075346Z:78b1b470-9c44-4620-b068-848f5353cae0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4e4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0d66428a76176650006ab06e8ec79be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5e57d5c-dc84-481a-9200-e3abb60baed1", + "x-ms-client-request-id": "b0d66428a76176650006ab06e8ec79be", + "x-ms-correlation-request-id": "07011e11-ac98-46a1-a9b7-921ee947255b", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "73e063fb-1b8b-4e52-b458-7f2836aa660b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075348Z:07011e11-ac98-46a1-a9b7-921ee947255b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4e5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63afab9f1fedb6efb2df3ca8eaf936f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71836b84-419d-4a3c-ae7b-c9e605a9ecb5", + "x-ms-client-request-id": "63afab9f1fedb6efb2df3ca8eaf936f3", + "x-ms-correlation-request-id": "97e26a09-64bd-4e4d-82e7-78ef58a639fa", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "99256b0b-9a03-40f1-b06c-933ab486e310", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075349Z:97e26a09-64bd-4e4d-82e7-78ef58a639fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4e6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d06ea2ca1d002902553a937ac16daa5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1afd6395-d112-4c0d-9c93-2755ee9ff4f9", + "x-ms-client-request-id": "2d06ea2ca1d002902553a937ac16daa5", + "x-ms-correlation-request-id": "9a9abc51-224f-4a14-808e-30fda079f589", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "7ae696f9-8654-4f7c-a379-5df856b550e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075350Z:9a9abc51-224f-4a14-808e-30fda079f589" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4e7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55c3508eeb5009337420fe826bbd8b06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c77cf7a5-110b-4046-bcaa-4df439bf5c87", + "x-ms-client-request-id": "55c3508eeb5009337420fe826bbd8b06", + "x-ms-correlation-request-id": "08036237-e31f-4a5d-a8ac-e5fb24706c37", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "409f2feb-d519-4833-8946-c5a64069a6e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075351Z:08036237-e31f-4a5d-a8ac-e5fb24706c37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4e8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fed9b8d04ce6feee1bac3d9a76b80a9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ba9d300-d6a4-4920-a7d2-fa9fe7c72dc6", + "x-ms-client-request-id": "fed9b8d04ce6feee1bac3d9a76b80a9b", + "x-ms-correlation-request-id": "31c05265-7b85-4f58-a4fa-880742139ad7", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "9c1bef0d-b77f-4f7e-94b8-dae78012cb02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075353Z:31c05265-7b85-4f58-a4fa-880742139ad7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4e9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99199604e13640a2b7fdb9afa30e9667", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91498b11-abeb-47ae-a186-ecff5ffa17f4", + "x-ms-client-request-id": "99199604e13640a2b7fdb9afa30e9667", + "x-ms-correlation-request-id": "3353f5a6-b51f-44e2-87ae-cb124da16289", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "bb48f835-c4a0-4b99-89a1-01ebc5b76c9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075354Z:3353f5a6-b51f-44e2-87ae-cb124da16289" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ea-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f367a2c7dc3d42be62c53aa3ae9892bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "896a5c4f-38c4-462a-a9bf-c28d26993074", + "x-ms-client-request-id": "f367a2c7dc3d42be62c53aa3ae9892bc", + "x-ms-correlation-request-id": "cfb7744d-eba5-433f-8819-89a9b55f3216", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "1d7c9d47-e990-4ef3-b8c5-35d641d36b89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075355Z:cfb7744d-eba5-433f-8819-89a9b55f3216" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4eb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d47d6216f1a3eed0169946e9933f5b0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13bbb673-3d55-4f09-8281-8567625e8ea3", + "x-ms-client-request-id": "d47d6216f1a3eed0169946e9933f5b0d", + "x-ms-correlation-request-id": "df38625d-123e-4767-b258-9ec86103dc3f", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "7e4dc497-0fea-4327-8ffe-b402cf3bd7cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075357Z:df38625d-123e-4767-b258-9ec86103dc3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ec-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3d2d5161650285ed8d73770a7fe921e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23ed2839-0d57-4c63-88b5-2298c5215f9e", + "x-ms-client-request-id": "d3d2d5161650285ed8d73770a7fe921e", + "x-ms-correlation-request-id": "f50ae1d8-a438-4f91-b8d9-68986aecca39", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "7f8d623a-0e0a-4930-8038-72330f3f2d5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075358Z:f50ae1d8-a438-4f91-b8d9-68986aecca39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ed-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4099fc6ac190d5c4d278dda395d4af22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:53:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a61de141-3bb1-4d87-9efe-37604785ed16", + "x-ms-client-request-id": "4099fc6ac190d5c4d278dda395d4af22", + "x-ms-correlation-request-id": "d516b48c-abe8-4ab1-a04d-d4792d72fb94", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "8b87aa0f-1eac-4f70-95cc-b1b8ca25f5dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075359Z:d516b48c-abe8-4ab1-a04d-d4792d72fb94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ee-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d88d2c69bfc6ff6b0455fcccba5f4717", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20f757d1-ee88-436b-bec9-2f5c70a70847", + "x-ms-client-request-id": "d88d2c69bfc6ff6b0455fcccba5f4717", + "x-ms-correlation-request-id": "9ae4abf4-46fe-46c2-8994-885190829cc3", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "2215d2c6-4f3a-43d9-9ca7-019dde979a86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075401Z:9ae4abf4-46fe-46c2-8994-885190829cc3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ef-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "967f27061ba5547c11fc01d739ba9203", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b8ff0c8-872e-4a90-881a-d3e706816ede", + "x-ms-client-request-id": "967f27061ba5547c11fc01d739ba9203", + "x-ms-correlation-request-id": "8fb1b81e-2b59-4a40-a472-47f780a04e26", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "823f34b0-7ba2-4c56-b695-614d660f6994", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075402Z:8fb1b81e-2b59-4a40-a472-47f780a04e26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4f0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a071428ba70ab5891993b3bc5f71b72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8fb0252-e2cc-4bef-81fa-741437e7deb0", + "x-ms-client-request-id": "7a071428ba70ab5891993b3bc5f71b72", + "x-ms-correlation-request-id": "08abb806-b0cb-458e-ab43-f4232c150c7a", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "ed8d1afb-0347-4413-876d-7bd6491116ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075403Z:08abb806-b0cb-458e-ab43-f4232c150c7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4f1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d9dc53018554e7db038c6c9bd94c649", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c7f201a-5673-45bd-a2e5-83e26b4f0cde", + "x-ms-client-request-id": "6d9dc53018554e7db038c6c9bd94c649", + "x-ms-correlation-request-id": "a414fa4a-3301-4b4a-8d64-c5a3dc4ea564", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "1f906261-83e2-4a1e-950e-d65438d71004", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075405Z:a414fa4a-3301-4b4a-8d64-c5a3dc4ea564" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4f2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5a3f8c3cd584ca6cfd3050cdf418e19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5a1146d-a9d9-46ca-9c72-bb2aa9a280bf", + "x-ms-client-request-id": "a5a3f8c3cd584ca6cfd3050cdf418e19", + "x-ms-correlation-request-id": "d85d672c-071c-4014-a71a-4ac241048f60", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "47224c93-893c-49c3-8c83-1598b461ae79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075406Z:d85d672c-071c-4014-a71a-4ac241048f60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4f3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74a68ee1241d0fad97b9c938f48eedfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d753db5-2741-4134-a1af-2294999e322b", + "x-ms-client-request-id": "74a68ee1241d0fad97b9c938f48eedfd", + "x-ms-correlation-request-id": "264e6df6-bddd-4c2e-9f96-35c9baa3da8a", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "271d3d9b-1ab0-4ade-95c0-8375e1b29c00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075407Z:264e6df6-bddd-4c2e-9f96-35c9baa3da8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4f4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc77f1d37653631a1e509e8113716e6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2ef3e5a-4b1b-47b5-95f7-49ca93ef0c14", + "x-ms-client-request-id": "cc77f1d37653631a1e509e8113716e6f", + "x-ms-correlation-request-id": "04dcc009-91b3-4b12-a091-0be436d7724e", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "bfce7682-42ea-4316-9720-68eed389525e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075408Z:04dcc009-91b3-4b12-a091-0be436d7724e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4f5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fe8aca951ed9f2c4a940d9e046e5840", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4a6d31b-7062-40f6-82a4-1d4bf2b9dfe6", + "x-ms-client-request-id": "2fe8aca951ed9f2c4a940d9e046e5840", + "x-ms-correlation-request-id": "8f1e8438-62cb-4051-8c94-f70d4075f425", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "dcdc5a4a-f9fa-4cf2-81a5-e39e16065d30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075410Z:8f1e8438-62cb-4051-8c94-f70d4075f425" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4f6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee3808e6c1c96ac6744355cc862bfc26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f6c2e31-2bb1-43dd-9bee-620e83d69986", + "x-ms-client-request-id": "ee3808e6c1c96ac6744355cc862bfc26", + "x-ms-correlation-request-id": "939bb994-d212-4457-8a62-9051c5005a2d", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "31e1edf6-50eb-4aaa-a611-89ebb24e711d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075411Z:939bb994-d212-4457-8a62-9051c5005a2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4f7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "478e5a4bbea6810fc5d882bf687b5faf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85394b0f-7611-4e22-9ea6-914a88f93342", + "x-ms-client-request-id": "478e5a4bbea6810fc5d882bf687b5faf", + "x-ms-correlation-request-id": "b22f398c-9015-4019-8100-60eec7122eae", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "cae31588-2aaf-464d-ad53-93dc13aafdac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075412Z:b22f398c-9015-4019-8100-60eec7122eae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4f8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b9b5df88038e7a5e67dbba9fc5f181f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3defc4bd-3695-45a3-9c4e-1dd92ed483a9", + "x-ms-client-request-id": "0b9b5df88038e7a5e67dbba9fc5f181f", + "x-ms-correlation-request-id": "7580fc52-0adc-422f-9c58-12ddbef98a07", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "06d46bb1-2b01-4079-b7e5-67a6185a74ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075414Z:7580fc52-0adc-422f-9c58-12ddbef98a07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4f9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a953e79710e0289af8b628f03f0601f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "123ed87f-6a05-458b-81f5-aee0e600ed5f", + "x-ms-client-request-id": "a953e79710e0289af8b628f03f0601f8", + "x-ms-correlation-request-id": "fa664b37-96fa-449f-8b88-6adaf338ed04", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "08b17da6-2155-45d3-998f-a69ba53192f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075415Z:fa664b37-96fa-449f-8b88-6adaf338ed04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4fa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28d3a6e4f090caedb4a6612803668565", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8552311-801b-45ba-b4ff-30c3cc93d137", + "x-ms-client-request-id": "28d3a6e4f090caedb4a6612803668565", + "x-ms-correlation-request-id": "f8fa2d3c-8a6c-4bf3-90f0-1f51e8e051af", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "ed6644db-a3d0-4e9f-9fb4-0b246da0ca6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075416Z:f8fa2d3c-8a6c-4bf3-90f0-1f51e8e051af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4fb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "812862bfb528e8cec373128257b5a7e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ef3768c-6cbd-4ab2-bb69-2335d085fcb9", + "x-ms-client-request-id": "812862bfb528e8cec373128257b5a7e0", + "x-ms-correlation-request-id": "ae04b83d-e48d-490f-a58b-632a24b64ea8", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "53a063e1-3503-43b0-9f61-a80bd7c7ceec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075417Z:ae04b83d-e48d-490f-a58b-632a24b64ea8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4fc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56c5c27bf08ca68ef988f53aae712492", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25999b7e-fdab-4859-ab60-885a4a79ceec", + "x-ms-client-request-id": "56c5c27bf08ca68ef988f53aae712492", + "x-ms-correlation-request-id": "09453bce-0d7c-4664-8bc1-fa49d8441bbe", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "31388cd4-be18-41d7-b6ac-38718e40c49e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075419Z:09453bce-0d7c-4664-8bc1-fa49d8441bbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4fd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd30c33180dd2fcfd7eb641cdd6b73ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48a345bd-8b3c-475a-ab73-5148a0ea4a8c", + "x-ms-client-request-id": "dd30c33180dd2fcfd7eb641cdd6b73ff", + "x-ms-correlation-request-id": "520490ce-f975-4b11-b2fa-d821611c1a3b", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "bfa56dc6-8d32-417d-8611-88f2bbcb72c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075420Z:520490ce-f975-4b11-b2fa-d821611c1a3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4fe-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40ac81fe2fa1cfd9d381889fbf943952", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8ba10c6-f0cd-423a-a900-23ff9cd28533", + "x-ms-client-request-id": "40ac81fe2fa1cfd9d381889fbf943952", + "x-ms-correlation-request-id": "b2267275-1fe8-4bd3-9042-ec0a67204b99", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "525b7c55-f666-450c-8881-fb9119600082", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075421Z:b2267275-1fe8-4bd3-9042-ec0a67204b99" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f4ff-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9451804eca84fb02f2967ea08b72c88d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8902d0eb-c1a8-41e7-b31d-ec7837e96af0", + "x-ms-client-request-id": "9451804eca84fb02f2967ea08b72c88d", + "x-ms-correlation-request-id": "199378b3-4a0b-4551-9402-cb8517fe8faa", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "ab13006d-37f2-4a7b-a66a-9e7400d135fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075422Z:199378b3-4a0b-4551-9402-cb8517fe8faa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f500-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d3cf615e4c401f1e961095cf7306f43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bec5281f-9a8e-4276-a585-f35010ef6e35", + "x-ms-client-request-id": "2d3cf615e4c401f1e961095cf7306f43", + "x-ms-correlation-request-id": "b4260051-0518-493f-a562-2b83faf8decb", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "fedb3b52-6d4b-4d11-8f4d-ebb82ffc7041", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075424Z:b4260051-0518-493f-a562-2b83faf8decb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f501-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5dce12b1df1a337a7eb14d0ab0384361", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "900f04b6-219f-4cbd-a558-01ad3e05da17", + "x-ms-client-request-id": "5dce12b1df1a337a7eb14d0ab0384361", + "x-ms-correlation-request-id": "df52f2a9-1fe9-41ae-9f7e-90ee19abc7b6", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "eaed5d54-1b20-4fa1-91e9-0dd5457b79c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075425Z:df52f2a9-1fe9-41ae-9f7e-90ee19abc7b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f502-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c98afab80b586a8e8f4faa22c1a504c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0cfafb9-86ae-4e90-a78a-1bcd96eedd43", + "x-ms-client-request-id": "c98afab80b586a8e8f4faa22c1a504c2", + "x-ms-correlation-request-id": "8f720213-1fe3-4b35-a5d1-423ff365a100", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "918ef282-b00a-433d-ac54-a28b6c6f2cff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075426Z:8f720213-1fe3-4b35-a5d1-423ff365a100" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f503-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79ef3b266ba336737b08af1396e651b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a83235c-1f4c-4a48-bd99-12c18ef54286", + "x-ms-client-request-id": "79ef3b266ba336737b08af1396e651b1", + "x-ms-correlation-request-id": "f6349cff-cacc-49ef-9705-21ed8e6b8841", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "cb72da60-9c75-47e6-97a4-72da18b77ec2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075428Z:f6349cff-cacc-49ef-9705-21ed8e6b8841" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f504-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fda4a71ea6a6a5eb8463cdca345872d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ef43b60-dbba-42e2-a25a-46950d6313a0", + "x-ms-client-request-id": "fda4a71ea6a6a5eb8463cdca345872d9", + "x-ms-correlation-request-id": "83d879bb-abfa-4dde-b8d1-43601896d2f7", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "8fd9d252-83c9-4862-bfc7-c6a71443c7e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075429Z:83d879bb-abfa-4dde-b8d1-43601896d2f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f505-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74e48aacca494cbe86534d4f5c7ad3a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52418abb-a429-4072-877a-e6f3c1e5e68e", + "x-ms-client-request-id": "74e48aacca494cbe86534d4f5c7ad3a9", + "x-ms-correlation-request-id": "9635755c-e2a0-46f7-b25c-f83eaf49b5ed", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "87f3e706-2a00-46f3-a63f-543a62cf5b83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075430Z:9635755c-e2a0-46f7-b25c-f83eaf49b5ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f506-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1904f9fd0601801c5049f53f9ea80123", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "11f93a1a-e157-44ec-abb3-d7f45704196f", + "x-ms-client-request-id": "1904f9fd0601801c5049f53f9ea80123", + "x-ms-correlation-request-id": "0b0d2d90-f4d4-4db5-9872-b1a465d13fba", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "55542526-a993-4ed7-a724-96bac0f85618", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075431Z:0b0d2d90-f4d4-4db5-9872-b1a465d13fba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f507-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b66d596dd015367e9577652589b4809", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74b8ce31-7fa1-4a5a-a15e-ac5055711eb0", + "x-ms-client-request-id": "0b66d596dd015367e9577652589b4809", + "x-ms-correlation-request-id": "aca01327-022c-4c88-893c-7aecdd0b391a", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "ff8eaddf-8d0c-475e-99f5-d1f18cd3f63f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075433Z:aca01327-022c-4c88-893c-7aecdd0b391a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f508-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bcd23905853a6d76e642300d57eadde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f1b5d5a-d21d-43d5-8dfb-53cbb21855ea", + "x-ms-client-request-id": "3bcd23905853a6d76e642300d57eadde", + "x-ms-correlation-request-id": "d290ac7f-2519-4b0d-b230-f5a07ab7f8ef", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "f2534c09-d342-48a9-9013-d31de6fe1ac3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075434Z:d290ac7f-2519-4b0d-b230-f5a07ab7f8ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f509-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86b82a52c71420a891b030a990c927b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16438b02-f58a-4cf8-9b1a-41812c909bab", + "x-ms-client-request-id": "86b82a52c71420a891b030a990c927b5", + "x-ms-correlation-request-id": "48687df6-6717-4b25-83cb-575078363579", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "4200b024-73a8-41a6-9cee-dcd0c5000124", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075435Z:48687df6-6717-4b25-83cb-575078363579" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f50a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bafeb00c5db3ecffec09c9db9677e6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13fa41b2-d96d-48cf-b21d-6dfd9bd4d031", + "x-ms-client-request-id": "7bafeb00c5db3ecffec09c9db9677e6b", + "x-ms-correlation-request-id": "84d41854-72e5-4fe0-ad1a-968f616d42c2", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "189df9f0-61cb-4d44-aaf7-948c188b9f26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075437Z:84d41854-72e5-4fe0-ad1a-968f616d42c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f50b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2dff97a9c2e2c8f47bacaaa2272d15a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b89d944-de49-4097-9a13-2262464f40ce", + "x-ms-client-request-id": "2dff97a9c2e2c8f47bacaaa2272d15a5", + "x-ms-correlation-request-id": "68dc1bce-7f45-4665-990d-c043fded3266", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "0ed3a7e2-09fe-4b29-842c-f8c325cf168a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075438Z:68dc1bce-7f45-4665-990d-c043fded3266" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f50c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9ff6e3c32ce8c035b7a88542b0a6629", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "820e3eba-9e36-425f-b35d-79f222f22288", + "x-ms-client-request-id": "e9ff6e3c32ce8c035b7a88542b0a6629", + "x-ms-correlation-request-id": "efad9eba-b777-48eb-b0b7-d7c3937fdd65", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "0abfc607-a4f1-4ab9-b29e-1ff23b7abf7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075439Z:efad9eba-b777-48eb-b0b7-d7c3937fdd65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f50d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8ffc432fac93ed2f7e7ff2e1b2c16d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a882f0d-fde1-464d-8758-cd3c3f376a0b", + "x-ms-client-request-id": "f8ffc432fac93ed2f7e7ff2e1b2c16d0", + "x-ms-correlation-request-id": "d148b6ed-6e50-4938-a080-ef7fbed99043", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "50f45d91-0e64-486e-9c57-4a20c7863e28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075440Z:d148b6ed-6e50-4938-a080-ef7fbed99043" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f50e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b61f7aa9468779d9473d268399f9d70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bbcc9aa3-ea82-43ff-bb4a-9c188590b33c", + "x-ms-client-request-id": "4b61f7aa9468779d9473d268399f9d70", + "x-ms-correlation-request-id": "bded6d2e-52e3-4401-b1e2-21913cfbdb98", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "9e936900-558b-4d09-bbaa-c041c89f1536", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075442Z:bded6d2e-52e3-4401-b1e2-21913cfbdb98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f50f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "637080451d2e41db9cc1f2e632d4712f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "739fe426-7cd8-4efa-ace0-34f9b1b6b031", + "x-ms-client-request-id": "637080451d2e41db9cc1f2e632d4712f", + "x-ms-correlation-request-id": "d4db2920-829c-436f-aeb1-8c52f70d54be", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "84564d70-95a3-4b5c-b0c1-8994a2acb07c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075443Z:d4db2920-829c-436f-aeb1-8c52f70d54be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f510-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33aab8641ba89dc12788635628690457", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eec16ea3-490f-4a4d-a898-8fe68659e115", + "x-ms-client-request-id": "33aab8641ba89dc12788635628690457", + "x-ms-correlation-request-id": "60652987-8457-40ef-9c86-11d28f9cf7ed", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "6f4e6f8d-5b45-4285-a74b-4e348904ef03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075444Z:60652987-8457-40ef-9c86-11d28f9cf7ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f511-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9be88e4ab3bc8da21b1fafa6a2b644c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7da7ffb4-3e78-4c44-bb42-8157b3a14ca6", + "x-ms-client-request-id": "9be88e4ab3bc8da21b1fafa6a2b644c0", + "x-ms-correlation-request-id": "842ff27e-7aa0-44b1-bd7f-5cdb80deb85b", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "4e41b32a-c8ec-4125-aea9-cb4ed09bdc91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075445Z:842ff27e-7aa0-44b1-bd7f-5cdb80deb85b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f512-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8104a30269f52ac7bed23ba5b9851932", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f80a2076-3a1d-439f-b23b-d35abdb31a22", + "x-ms-client-request-id": "8104a30269f52ac7bed23ba5b9851932", + "x-ms-correlation-request-id": "6a244165-1298-4190-89e2-fca4c5afe45f", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "ac012d79-c28a-406a-8fa6-cd48fa99d325", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075447Z:6a244165-1298-4190-89e2-fca4c5afe45f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f513-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a39b9bbcd5ebb172151c17896c1afb70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a3d7de4-5d3c-43ac-85f7-824acb85f678", + "x-ms-client-request-id": "a39b9bbcd5ebb172151c17896c1afb70", + "x-ms-correlation-request-id": "ab8b6726-25f5-42c2-a1bc-10da1c6a0dcf", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "9a0bf077-4e5f-4b74-9bea-b3b295951829", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075448Z:ab8b6726-25f5-42c2-a1bc-10da1c6a0dcf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f514-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8554a3438365e161c7bedce977fcd496", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa96b2d2-c3dc-4866-8aec-eb5869c7600f", + "x-ms-client-request-id": "8554a3438365e161c7bedce977fcd496", + "x-ms-correlation-request-id": "7d16b8b4-6d3d-46d2-916f-24717fbe5a02", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "048a7729-da00-4fc6-a8cd-f026d106465f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075449Z:7d16b8b4-6d3d-46d2-916f-24717fbe5a02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f515-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07ea7d06a01b2cd430536bd9513ebea4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92b79767-48ad-4479-a4b7-52fed1b05129", + "x-ms-client-request-id": "07ea7d06a01b2cd430536bd9513ebea4", + "x-ms-correlation-request-id": "2606685c-9588-478a-a7e2-a8f31f6159a8", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "e3347783-a406-4a65-92df-786e5c8993b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075451Z:2606685c-9588-478a-a7e2-a8f31f6159a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f516-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1562cbd6943139cc39badc2df9883919", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba629113-50ab-476c-bd4f-10341bfe7951", + "x-ms-client-request-id": "1562cbd6943139cc39badc2df9883919", + "x-ms-correlation-request-id": "3f6dfc52-bb64-42dc-afc5-1085606c35da", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "eba11321-cdac-4894-83a4-12e1e4ffdff4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075452Z:3f6dfc52-bb64-42dc-afc5-1085606c35da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f517-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef838148f430a355cf27541217888f88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a69c5ff-17d4-408a-af0a-36025d096e58", + "x-ms-client-request-id": "ef838148f430a355cf27541217888f88", + "x-ms-correlation-request-id": "ffb12605-defa-46ad-bc66-83bf36d4fb85", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "a7dd38eb-0cc7-43c7-805d-c79590717fa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075453Z:ffb12605-defa-46ad-bc66-83bf36d4fb85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f518-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac133800be9a7165b0b0cd60c3a632a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a337aa15-73c9-48c1-abe0-1251e9d2aa3e", + "x-ms-client-request-id": "ac133800be9a7165b0b0cd60c3a632a7", + "x-ms-correlation-request-id": "da8515fa-8509-4ffe-a8d8-7df9c97d416f", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "b783f3ec-6c01-478c-8f9e-20d476605b70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075454Z:da8515fa-8509-4ffe-a8d8-7df9c97d416f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f519-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf905219cfbbe27375bf46093fb922b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09e17531-9309-4f08-8228-97443ce2fb0d", + "x-ms-client-request-id": "cf905219cfbbe27375bf46093fb922b1", + "x-ms-correlation-request-id": "b4d51b33-43e4-492a-bafe-c21108e3ffc0", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "c8e4f748-4d70-41b5-a507-74c518dbace2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075456Z:b4d51b33-43e4-492a-bafe-c21108e3ffc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f51a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c12d542a8d75897f1c113e7f26f5df28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83e43031-f58a-407a-91ab-b8ac91047f72", + "x-ms-client-request-id": "c12d542a8d75897f1c113e7f26f5df28", + "x-ms-correlation-request-id": "8dfdbd13-d814-4db6-8a9c-8220ae3a3ca5", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "cfa43d69-c5cd-4d10-b17f-272b621ec307", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075457Z:8dfdbd13-d814-4db6-8a9c-8220ae3a3ca5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f51b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4f9adf5c0f731cdc43137db785b31f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cca1c29-7e18-4306-b261-f8fe9766006b", + "x-ms-client-request-id": "c4f9adf5c0f731cdc43137db785b31f6", + "x-ms-correlation-request-id": "e55b68a4-28f7-4bf6-8e40-82575cae2da6", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "808fa5b1-23fc-4fc2-a781-4335536217c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075458Z:e55b68a4-28f7-4bf6-8e40-82575cae2da6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f51c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f361c8e71798c31d307b3a990f4bb80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:54:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bee044a8-285e-4fe3-9802-9cfbd5fbe787", + "x-ms-client-request-id": "6f361c8e71798c31d307b3a990f4bb80", + "x-ms-correlation-request-id": "9c42c7da-86c4-436d-aad0-776809babe5e", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "44577916-1f4d-4bde-8ac1-064a84c5f7d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075500Z:9c42c7da-86c4-436d-aad0-776809babe5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f51d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91141edf5dc06aba87fcfd4456a411c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c64bd77c-4971-43f5-947c-672e5df7855f", + "x-ms-client-request-id": "91141edf5dc06aba87fcfd4456a411c0", + "x-ms-correlation-request-id": "c35cf974-1422-4def-9fe9-33c124dc62ce", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "bc8665a4-f2ac-46d1-a82b-f4b9c781bfed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075501Z:c35cf974-1422-4def-9fe9-33c124dc62ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f51e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0af047df6fbe83ae7c6df1f00c23a0cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d32ffdb2-c6e5-4fad-b589-47be7c04f593", + "x-ms-client-request-id": "0af047df6fbe83ae7c6df1f00c23a0cf", + "x-ms-correlation-request-id": "4bc78785-22ed-4fa4-b4fe-ee771c2c942a", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "df9c436b-9db2-4bbf-9862-af832ff0cf9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075503Z:4bc78785-22ed-4fa4-b4fe-ee771c2c942a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f51f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59fbb675a047313662cbe87d73ed352f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12c8c3e8-02d4-4e7b-ad69-ae535deb4981", + "x-ms-client-request-id": "59fbb675a047313662cbe87d73ed352f", + "x-ms-correlation-request-id": "3514d764-52e0-405d-bdb9-c729d59f493a", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "77c1684f-ce02-4982-9831-616efca28c2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075504Z:3514d764-52e0-405d-bdb9-c729d59f493a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f520-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49c9f2f5b00370c16f9015536bc95d63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5143a6d0-2715-4120-aabd-dfd04fdd3cb1", + "x-ms-client-request-id": "49c9f2f5b00370c16f9015536bc95d63", + "x-ms-correlation-request-id": "f9e6ed5e-cbbd-461f-a7fb-908d39b1a917", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "a4202529-a384-479b-8fea-e4c4ac08b705", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075505Z:f9e6ed5e-cbbd-461f-a7fb-908d39b1a917" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f521-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fce2d5bb7a83f7910bfa8f387300f8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de7ac6cd-04a4-44df-b430-76c8c39df4f4", + "x-ms-client-request-id": "9fce2d5bb7a83f7910bfa8f387300f8f", + "x-ms-correlation-request-id": "9f616e86-ab50-4a7d-9b36-43a0081faa6a", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "23a00803-2e33-4681-b057-5ff5c20d975a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075506Z:9f616e86-ab50-4a7d-9b36-43a0081faa6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f522-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1afac237575ac4cbf58ae9b78ae3c598", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0eeec360-56d4-409d-88a7-eb1afd59adfd", + "x-ms-client-request-id": "1afac237575ac4cbf58ae9b78ae3c598", + "x-ms-correlation-request-id": "93a94b14-4488-4ef1-8112-734aa0696d6f", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "a3e714ad-8023-4bc9-8034-00b6b19553fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075508Z:93a94b14-4488-4ef1-8112-734aa0696d6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f523-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4622846d961e3d867889384408cde93e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2228b831-696c-425a-ae53-bee869d0b1fe", + "x-ms-client-request-id": "4622846d961e3d867889384408cde93e", + "x-ms-correlation-request-id": "c0b7e327-c115-496f-aadd-5c4c6c524351", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "89f40c12-5534-4ab0-a0c3-93bb14d34d94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075509Z:c0b7e327-c115-496f-aadd-5c4c6c524351" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f524-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a81b868043cf0309610aaa1dcdc2b52d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e599d4d1-841d-472f-bed9-a9415d3d77d6", + "x-ms-client-request-id": "a81b868043cf0309610aaa1dcdc2b52d", + "x-ms-correlation-request-id": "03b789fb-0d04-4c91-ba77-9fa20c816729", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "70d30f37-0522-44c1-9944-0444638ae433", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075510Z:03b789fb-0d04-4c91-ba77-9fa20c816729" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f525-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "028510f9c90ea0703cbca1d01f87bc27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f5e8adf-7170-4901-bba3-b39797175519", + "x-ms-client-request-id": "028510f9c90ea0703cbca1d01f87bc27", + "x-ms-correlation-request-id": "5e445b15-7eda-49b8-8f47-b06cd491bdc5", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "e56e4303-ab79-4a01-9ae9-707fc2a89ff1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075512Z:5e445b15-7eda-49b8-8f47-b06cd491bdc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f526-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0336aba11dc72ac87a1ee413ec6870b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf634008-e570-43e5-acf9-fb14c1bb8965", + "x-ms-client-request-id": "0336aba11dc72ac87a1ee413ec6870b6", + "x-ms-correlation-request-id": "21fc7b88-dde6-4f56-aa9f-772470b3b9a4", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "66e2e979-cdc5-483a-b583-a0e278f2f74d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075513Z:21fc7b88-dde6-4f56-aa9f-772470b3b9a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f527-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f74b0ad4e648b630157a6c13a139e4da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db452906-0ef7-4aad-b9bb-a9be5d058a43", + "x-ms-client-request-id": "f74b0ad4e648b630157a6c13a139e4da", + "x-ms-correlation-request-id": "a1f9af40-d156-4af1-b99b-6a33ab49e94b", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "3d00425c-ebc5-4441-b9bc-e3beef61a856", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075514Z:a1f9af40-d156-4af1-b99b-6a33ab49e94b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f528-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "227b824eb18bdb65475b88f0e55db4d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c80e4b5-b5d1-4014-be77-459f63c15e92", + "x-ms-client-request-id": "227b824eb18bdb65475b88f0e55db4d3", + "x-ms-correlation-request-id": "273b1fa0-76b6-4cef-8c4f-68ce77ed83d3", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "8ccbf0f4-9de7-4062-a0cf-9108d12167c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075515Z:273b1fa0-76b6-4cef-8c4f-68ce77ed83d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f529-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14fceb4cc43bbbdf7a80ee4cb1b58841", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80362ad1-be4e-4251-a5dd-d0a775703058", + "x-ms-client-request-id": "14fceb4cc43bbbdf7a80ee4cb1b58841", + "x-ms-correlation-request-id": "ae4ddd97-db23-483f-8b05-2a1b56799ec9", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "27ab6084-07c9-41d6-8a35-60cc2ebab918", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075517Z:ae4ddd97-db23-483f-8b05-2a1b56799ec9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f52a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69c509394dec222ba46fafec5e3fd1b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "015f65be-f38f-4b90-8cab-f7c4babc7289", + "x-ms-client-request-id": "69c509394dec222ba46fafec5e3fd1b8", + "x-ms-correlation-request-id": "57f5ac7d-c43d-4938-abcd-93126806335f", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "3173b721-1ca3-4cdf-8baa-d356e4d156cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075518Z:57f5ac7d-c43d-4938-abcd-93126806335f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f52b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6c698c6cf3d899ea3c0a70bc2192a92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31375b5b-5a80-4de8-9267-4e9ed481c1d7", + "x-ms-client-request-id": "b6c698c6cf3d899ea3c0a70bc2192a92", + "x-ms-correlation-request-id": "b42050b2-92f7-42c8-89a3-5593e7d77b1c", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "6803000d-0651-4387-ae15-c45871fdc0eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075519Z:b42050b2-92f7-42c8-89a3-5593e7d77b1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f52c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbb646d24b97fee7c0d96fcc14f25d3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d6bc09a-651f-4516-b99b-694d6c16cfe8", + "x-ms-client-request-id": "dbb646d24b97fee7c0d96fcc14f25d3b", + "x-ms-correlation-request-id": "a2daa0e9-d665-4081-a655-71e110da8519", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "a36cd40f-48fa-4e59-b983-61b357979a52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075520Z:a2daa0e9-d665-4081-a655-71e110da8519" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f52d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "198635afd2ee69046a3bc62ca5205f8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ca68e04-071b-4e46-8d59-2011f65e253f", + "x-ms-client-request-id": "198635afd2ee69046a3bc62ca5205f8b", + "x-ms-correlation-request-id": "c65f8d60-ba38-4f45-93a2-9b15a5e7993d", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "97a1db10-24c3-4756-adfb-3ceef1156b63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075522Z:c65f8d60-ba38-4f45-93a2-9b15a5e7993d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f52e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "171a1d44f5887b21b0c8f66460d275b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db44d882-5baa-4009-99e1-734f8102c74b", + "x-ms-client-request-id": "171a1d44f5887b21b0c8f66460d275b0", + "x-ms-correlation-request-id": "7da6e5b1-aedf-4349-a0f9-231e80d1f499", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "067630f1-5b5f-429b-b443-13813bc86c7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075523Z:7da6e5b1-aedf-4349-a0f9-231e80d1f499" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f52f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d5b6c621192ffa3424d705b84ba59a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dcca8934-0eec-4087-9cdb-37cf0b08093c", + "x-ms-client-request-id": "8d5b6c621192ffa3424d705b84ba59a0", + "x-ms-correlation-request-id": "1752e9f3-7ec4-4852-8b33-696d104ae963", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "21df0c7d-3fa7-4a59-88f9-f553a998e0ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075524Z:1752e9f3-7ec4-4852-8b33-696d104ae963" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f530-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f688e47946d8b9b2140b6826dca00998", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98a8bc7d-3815-4e1a-b90a-669eadbde5b1", + "x-ms-client-request-id": "f688e47946d8b9b2140b6826dca00998", + "x-ms-correlation-request-id": "82bc8827-2ab3-4b8b-986c-3f50e88d631d", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "2879f5c3-4c6f-4592-bd3b-2cc87043f2c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075526Z:82bc8827-2ab3-4b8b-986c-3f50e88d631d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f531-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39ca15c6d2c432f8791ad53b84c5f6f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c261ea9-3942-454a-b387-b15800963a2e", + "x-ms-client-request-id": "39ca15c6d2c432f8791ad53b84c5f6f6", + "x-ms-correlation-request-id": "c9592294-21a6-4e55-a793-a5879842def5", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "5a60ed61-fed2-4fc9-b3e4-b0695e290b4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075527Z:c9592294-21a6-4e55-a793-a5879842def5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f532-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bea566e7e491cd8b9a27887a97d23a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c69d451-58f3-4cfd-b269-49ab8824d438", + "x-ms-client-request-id": "7bea566e7e491cd8b9a27887a97d23a1", + "x-ms-correlation-request-id": "916f7aa9-f29f-46b6-99a3-47763b5c7c37", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "4b648c90-3582-4865-9170-09c3aa299dde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075528Z:916f7aa9-f29f-46b6-99a3-47763b5c7c37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f533-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f94d8431ff0a6dbeb557dbd7077354e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58e83946-52fc-4ee1-9054-ff9706bd3238", + "x-ms-client-request-id": "6f94d8431ff0a6dbeb557dbd7077354e", + "x-ms-correlation-request-id": "9d7851e6-2c05-48be-861e-a693e42dce0a", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "0d93a1ca-23d5-4f5e-a426-34ba377ac37c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075529Z:9d7851e6-2c05-48be-861e-a693e42dce0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f534-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86b772148db5474e3cad7f215a7189fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64c0c6a8-711b-4412-addd-b0049a56fd5c", + "x-ms-client-request-id": "86b772148db5474e3cad7f215a7189fc", + "x-ms-correlation-request-id": "112445f1-6fca-4448-89ce-1dc84b8a763f", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "d2e196f7-ca70-4be0-87bd-9d18ee530a4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075531Z:112445f1-6fca-4448-89ce-1dc84b8a763f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f535-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acf733f687304f057a4490f4011bab42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c72a8e3c-09c6-4a66-97d1-ebf6a225244b", + "x-ms-client-request-id": "acf733f687304f057a4490f4011bab42", + "x-ms-correlation-request-id": "2539d1bc-8f08-4967-a189-b66718eebe37", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "58f3cbdf-4fcd-45ec-924a-6b2a8cfe8126", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075532Z:2539d1bc-8f08-4967-a189-b66718eebe37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f536-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3772296d9dc5b5ec894d32429fba4b79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81eb382c-f886-4c7f-8311-c392e4349532", + "x-ms-client-request-id": "3772296d9dc5b5ec894d32429fba4b79", + "x-ms-correlation-request-id": "58e4de84-87e1-466a-9a33-bc24fe509e8e", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "32649513-dc99-4579-9e46-94e765aa9ef6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075533Z:58e4de84-87e1-466a-9a33-bc24fe509e8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f537-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3dc681cb887f8d1d6c680c70fd594621", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e83f4d4-25d6-426e-aedc-dc0c529b5272", + "x-ms-client-request-id": "3dc681cb887f8d1d6c680c70fd594621", + "x-ms-correlation-request-id": "b966f2fd-eae2-4cbd-b851-5ffbe95c4655", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "2f1d6bc5-14be-4140-ac13-7e8d27e5f91d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075535Z:b966f2fd-eae2-4cbd-b851-5ffbe95c4655" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f538-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30b43d0252fe5936464222e354c3afbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c81a3f65-ba7b-4a08-91c1-49304c773b64", + "x-ms-client-request-id": "30b43d0252fe5936464222e354c3afbf", + "x-ms-correlation-request-id": "0e354e85-859b-4f4c-897d-becb225b6e8d", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "94e62489-00af-41f4-9b60-0a64a8fdbf20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075536Z:0e354e85-859b-4f4c-897d-becb225b6e8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f539-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "802916f86e54e4c20be4ca5d917bb82f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5273d4b1-2e27-4c26-baa4-89e4812fa8fc", + "x-ms-client-request-id": "802916f86e54e4c20be4ca5d917bb82f", + "x-ms-correlation-request-id": "e6ba3ea2-3962-4c09-9b20-3bae29bc0d5d", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "7676a3e5-ce7e-4c5a-84d2-5a8f1254dc2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075537Z:e6ba3ea2-3962-4c09-9b20-3bae29bc0d5d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f53a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "624011061b05797a4a6df63c663a39a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd110712-50e9-48fd-a0a8-9e3727a8ff6a", + "x-ms-client-request-id": "624011061b05797a4a6df63c663a39a9", + "x-ms-correlation-request-id": "72cd08bf-a3f0-4218-ad99-54778a33ae7e", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "a9ccfe5d-d05e-4202-ba15-b86b661b21f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075538Z:72cd08bf-a3f0-4218-ad99-54778a33ae7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f53b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6774cb9c63094cd7ad0241987d9c7ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d637a795-9eb6-4ae7-9ace-4ae23acfede5", + "x-ms-client-request-id": "e6774cb9c63094cd7ad0241987d9c7ca", + "x-ms-correlation-request-id": "afee17f8-d358-4379-a90c-36e0040b8956", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "847778a4-6833-4571-b426-ce6e518bf7c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075540Z:afee17f8-d358-4379-a90c-36e0040b8956" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f53c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43ddf2894d83ddba9caf35e677857dd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd7b8cd9-17b6-445c-acaf-47f47f163857", + "x-ms-client-request-id": "43ddf2894d83ddba9caf35e677857dd1", + "x-ms-correlation-request-id": "5cc4be5b-43a8-4757-a844-193533c729b1", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "813f3bf5-e682-4613-8499-7574b454eb05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075541Z:5cc4be5b-43a8-4757-a844-193533c729b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f53d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45a421abd20440fe44abe735f660f170", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f74b12a-8fb4-42aa-9a2b-164060cbe367", + "x-ms-client-request-id": "45a421abd20440fe44abe735f660f170", + "x-ms-correlation-request-id": "ee1bf8ae-bcd5-48fb-86b2-ce35eea94d76", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "962eaae3-a343-4ad8-aa3c-b1d153bfa750", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075543Z:ee1bf8ae-bcd5-48fb-86b2-ce35eea94d76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f53e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73b32ba5f65d6c26919a498090e61cf4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4fad8577-f804-4e05-b8ee-4ef4bdc149c5", + "x-ms-client-request-id": "73b32ba5f65d6c26919a498090e61cf4", + "x-ms-correlation-request-id": "a722070b-8e8b-48bc-b558-62b09dadd596", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "ce36a6a1-adb1-4de4-a7d5-e5d29ea11a8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075544Z:a722070b-8e8b-48bc-b558-62b09dadd596" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f53f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "666e53528235b7c6f39cfed76585e73b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f8584d1-056c-4ffb-ae04-5cd6ea5e472b", + "x-ms-client-request-id": "666e53528235b7c6f39cfed76585e73b", + "x-ms-correlation-request-id": "5d6f0471-46db-47bf-b77e-1c89f95283f9", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "d0623cc5-57db-40f0-9939-adb7a55ddf24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075545Z:5d6f0471-46db-47bf-b77e-1c89f95283f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f540-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b40c5be0ad2b574fa38b369887eb05d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad464a0c-6a67-4004-adf6-255fa2eabcab", + "x-ms-client-request-id": "4b40c5be0ad2b574fa38b369887eb05d", + "x-ms-correlation-request-id": "8b93d92f-8f97-44e6-92a9-b66bcf6b8c46", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "d2695052-bea5-44ee-a0ac-c7b4dbc8f483", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075546Z:8b93d92f-8f97-44e6-92a9-b66bcf6b8c46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f541-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3e2f28f8af2233b64fb7fc0f74f060c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23d937d2-6c39-497f-9941-63461041bd19", + "x-ms-client-request-id": "a3e2f28f8af2233b64fb7fc0f74f060c", + "x-ms-correlation-request-id": "8653a04c-87d5-4fbd-b1ae-e5bc1393b759", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "0c4f8c01-0e1d-4e98-8cb1-34e35d8554c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075548Z:8653a04c-87d5-4fbd-b1ae-e5bc1393b759" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f542-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbc20eb3d0a54821deb86cfdce5d2f75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b3272007-bc8b-451c-ba4a-0f893b6cf195", + "x-ms-client-request-id": "cbc20eb3d0a54821deb86cfdce5d2f75", + "x-ms-correlation-request-id": "4e162ddf-3c1a-46d9-b0f3-d206f2a58b61", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "64812be4-d015-467c-a84f-04b54e41bf2c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075549Z:4e162ddf-3c1a-46d9-b0f3-d206f2a58b61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f543-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7248a1ec44a23449891de7d78ab4beab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37566fad-78d1-4c76-8b1d-c88d6abfb0fb", + "x-ms-client-request-id": "7248a1ec44a23449891de7d78ab4beab", + "x-ms-correlation-request-id": "1991a6d8-18b2-4e1c-ac42-4f74956f0d68", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "a9b63ef5-798d-4f5c-9783-44bdf7c6a0f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075550Z:1991a6d8-18b2-4e1c-ac42-4f74956f0d68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f544-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79b6a731e4bbbeb8d09ac4391e3e5407", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d944fea1-733a-4d01-aed5-5eb93ea42e21", + "x-ms-client-request-id": "79b6a731e4bbbeb8d09ac4391e3e5407", + "x-ms-correlation-request-id": "5690fdc9-3b8d-4795-8d3c-6521ba885704", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "b2d3af59-cbcb-4a34-8212-66205c3d4f93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075552Z:5690fdc9-3b8d-4795-8d3c-6521ba885704" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f545-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56d30acb94076f69c58d4188e94abd2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bfcf483a-dead-414d-8921-7f4ea112aec8", + "x-ms-client-request-id": "56d30acb94076f69c58d4188e94abd2a", + "x-ms-correlation-request-id": "a77b299c-fdeb-40a7-b820-c7f226d0669b", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "3b13dd4e-aa45-4524-a25c-bf47c353e024", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075553Z:a77b299c-fdeb-40a7-b820-c7f226d0669b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f546-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27cbc0fab5a607b9e889a1087f0f164a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "051bb812-ceca-4bb4-9a25-ac9d39c7eb93", + "x-ms-client-request-id": "27cbc0fab5a607b9e889a1087f0f164a", + "x-ms-correlation-request-id": "af1fd5bf-2b70-427d-ba49-e8efc27f4f4e", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "bdc0fe9a-f419-4af0-9b8a-1b67dbb61792", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075555Z:af1fd5bf-2b70-427d-ba49-e8efc27f4f4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f547-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "800cdfc868e09da43d47b42ea32fd486", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a346c98-539e-4b97-8d77-ac45fcfbdab7", + "x-ms-client-request-id": "800cdfc868e09da43d47b42ea32fd486", + "x-ms-correlation-request-id": "4ca93953-34b1-459a-a3b6-ffb023224f9f", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "7ed9a3d5-e66c-441b-ac9d-fa04dbbb0b9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075556Z:4ca93953-34b1-459a-a3b6-ffb023224f9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f548-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d3f99dc2d73156050cc6d7df261efb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aef5db73-cf34-4ad2-a6d9-2dcb65fdac86", + "x-ms-client-request-id": "5d3f99dc2d73156050cc6d7df261efb6", + "x-ms-correlation-request-id": "9013a5b6-ba22-4f9a-931f-a2b6805a63e9", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "c7005be1-0261-4966-bfae-6f43afc0c765", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075557Z:9013a5b6-ba22-4f9a-931f-a2b6805a63e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f549-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0abff7773d3e924a1c2eea5f018b64b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f44c616-ec7d-41e4-8c05-c51056ef9f71", + "x-ms-client-request-id": "0abff7773d3e924a1c2eea5f018b64b9", + "x-ms-correlation-request-id": "63b92b7d-ce63-4c17-aa7a-9be8d10a139f", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "89bb1b62-c13d-426e-be04-10dcfb2b48e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075558Z:63b92b7d-ce63-4c17-aa7a-9be8d10a139f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f54a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e52b1ab4b8cf9bd77ef62f13fb26aadb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:55:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a663b97-c2f2-4413-9ec3-85fedfa3f85a", + "x-ms-client-request-id": "e52b1ab4b8cf9bd77ef62f13fb26aadb", + "x-ms-correlation-request-id": "bb493fd7-c061-43b2-ae6d-3965dafac6dd", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "89ea4ff0-ab5b-4208-bf97-9ed33623e238", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075600Z:bb493fd7-c061-43b2-ae6d-3965dafac6dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f54b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abb6fe57ca709f484fad4145430013c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bb7705e-a99a-48d7-afd2-7395e69fe6e3", + "x-ms-client-request-id": "abb6fe57ca709f484fad4145430013c4", + "x-ms-correlation-request-id": "ad5b9b54-f354-4e81-b5a4-91774f00cbda", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "26e1deeb-cf7e-4251-b410-5ebd9c7e22b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075601Z:ad5b9b54-f354-4e81-b5a4-91774f00cbda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f54c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7c8b4680936bee61f238b470d3696f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad62f692-4c42-484e-959b-f753fad2391a", + "x-ms-client-request-id": "d7c8b4680936bee61f238b470d3696f5", + "x-ms-correlation-request-id": "4fe39531-5d5a-481a-bacb-3d78703e2fa7", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "54e55aa9-4fa0-49d9-b88d-62249a1575d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075602Z:4fe39531-5d5a-481a-bacb-3d78703e2fa7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f54d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03080e83b8d4ea48d28c96227792587d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8402838c-c15c-48ba-901a-e5b1100a686f", + "x-ms-client-request-id": "03080e83b8d4ea48d28c96227792587d", + "x-ms-correlation-request-id": "440eb672-17f3-4b12-a237-21882aec563a", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "83ce3adb-1988-4f74-9990-553fe6a6c227", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075604Z:440eb672-17f3-4b12-a237-21882aec563a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f54e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47ab6ae2d25e4da518f88c4c3e019118", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7027c249-0027-4885-942d-2665055fe26f", + "x-ms-client-request-id": "47ab6ae2d25e4da518f88c4c3e019118", + "x-ms-correlation-request-id": "f6adc59c-03c9-4e88-b748-eaae93641927", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "b0daa5b4-72d0-437d-a5df-d79f799b8ba3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075605Z:f6adc59c-03c9-4e88-b748-eaae93641927" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f54f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34c14c1610f8aff06bde05a973c3478d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "162bce03-18dc-4bf4-89f4-30d4dfc2c854", + "x-ms-client-request-id": "34c14c1610f8aff06bde05a973c3478d", + "x-ms-correlation-request-id": "697ae70c-6e62-4aad-b2b2-523bbd6acd6b", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "696c7a6e-456e-488e-a06b-10ae2c958042", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075606Z:697ae70c-6e62-4aad-b2b2-523bbd6acd6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f550-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2650dcb4f8bb09768baebdc2cfbabd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d861310-aef5-485c-973b-94f07a19139e", + "x-ms-client-request-id": "a2650dcb4f8bb09768baebdc2cfbabd0", + "x-ms-correlation-request-id": "8d512925-8347-4b71-bce3-abdf24bf5e36", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "1aea7da8-bd35-484f-88e9-9c8f09d8dd5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075607Z:8d512925-8347-4b71-bce3-abdf24bf5e36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f551-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a0c7efb23d0d2857afbdb80cdfbda54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e25c9b31-0037-4757-8d20-7d4928ee13b1", + "x-ms-client-request-id": "2a0c7efb23d0d2857afbdb80cdfbda54", + "x-ms-correlation-request-id": "68c896d5-e09b-4d8f-babe-11b4f2301c79", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "08ca1943-8e61-4dde-83c1-29a33addfdc8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075609Z:68c896d5-e09b-4d8f-babe-11b4f2301c79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f552-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3181feb0ee9cc68db511cc3d2514836f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51eaf949-de2a-4bb9-852b-5caebe1c9cf8", + "x-ms-client-request-id": "3181feb0ee9cc68db511cc3d2514836f", + "x-ms-correlation-request-id": "14e447cc-01ef-4efd-86b5-d7671470a7d3", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "9fcfbefe-a406-491a-aa64-10df365efa4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075610Z:14e447cc-01ef-4efd-86b5-d7671470a7d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f553-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4ae34321cb7a7bc8793288f7316e36d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ff5369a-7673-4a1d-a43e-a94cb6210bbe", + "x-ms-client-request-id": "f4ae34321cb7a7bc8793288f7316e36d", + "x-ms-correlation-request-id": "f633c124-1750-4f68-9b78-dbb6d31807cc", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "18aff687-6fd9-48f4-8b30-a0427d4f6102", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075611Z:f633c124-1750-4f68-9b78-dbb6d31807cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f554-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d2b96df7a790c34f04575be5747ad66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a9a0098-85b0-4362-9499-49707bf60162", + "x-ms-client-request-id": "2d2b96df7a790c34f04575be5747ad66", + "x-ms-correlation-request-id": "6a1e5def-d7dd-4395-b229-55f723691f3a", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "a4c33fef-124d-4e3c-ab0f-244e29aeafe2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075613Z:6a1e5def-d7dd-4395-b229-55f723691f3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f555-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "984d6b78e54c939d41daa909c6fd529e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "828072b7-7141-4319-abb3-3dff174e521b", + "x-ms-client-request-id": "984d6b78e54c939d41daa909c6fd529e", + "x-ms-correlation-request-id": "eeab97b8-b986-4957-8c59-95ef29f91076", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "7b781fa4-b8b0-471a-8db3-b79a17114b63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075614Z:eeab97b8-b986-4957-8c59-95ef29f91076" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f556-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e5d5e2e56e8b8f6ffa20472a7fe4f40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb3ebf2c-9427-4cf1-8007-1b8a9ae22f6a", + "x-ms-client-request-id": "8e5d5e2e56e8b8f6ffa20472a7fe4f40", + "x-ms-correlation-request-id": "cd27d8a4-cb09-441b-b6ac-247e09a7c91c", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "2b0c15dd-b8d3-46e4-bc20-69518b1cfb9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075615Z:cd27d8a4-cb09-441b-b6ac-247e09a7c91c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f557-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0817c2e64ac9fa20f998eb9fd02b46f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73e1d8ad-e9b7-4145-a5a3-024f7cd4f561", + "x-ms-client-request-id": "0817c2e64ac9fa20f998eb9fd02b46f3", + "x-ms-correlation-request-id": "222567ee-01eb-40e4-927f-94c26067fdf0", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "df38388f-8d6e-4e26-b2a9-83806be335f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075617Z:222567ee-01eb-40e4-927f-94c26067fdf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f558-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f890d7f21eea217d759598aae12bec43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c72fd9f9-c54d-4a64-8f3f-5fa8331864c7", + "x-ms-client-request-id": "f890d7f21eea217d759598aae12bec43", + "x-ms-correlation-request-id": "bd72e376-2ceb-4ad6-9d25-065ee476d49c", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "7f4aecd8-45d0-4ed1-a4e7-14c56664ab38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075618Z:bd72e376-2ceb-4ad6-9d25-065ee476d49c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f559-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0323698b4ae6e3d43e6394506a57e7d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8bfb6fd1-fc63-4f35-a482-fc90d087c91d", + "x-ms-client-request-id": "0323698b4ae6e3d43e6394506a57e7d4", + "x-ms-correlation-request-id": "59bf765a-d127-4c43-936f-3e4ea96a009c", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "11fec803-0b2b-476d-9466-f19e545d3151", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075619Z:59bf765a-d127-4c43-936f-3e4ea96a009c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f55a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf7f105b566dc75644f59234b27518ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bcc83d95-ffd1-43ae-b79a-77530408f10d", + "x-ms-client-request-id": "cf7f105b566dc75644f59234b27518ce", + "x-ms-correlation-request-id": "a6e3a3a7-db30-4eec-8a37-28c9744a5795", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "239a5bc0-de2f-4588-a3f2-a1eaf41f7a5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075620Z:a6e3a3a7-db30-4eec-8a37-28c9744a5795" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f55b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6713a7ab4208a70d02acba868a2db61e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "160f2a29-03ad-47ac-933b-4c55de8d3479", + "x-ms-client-request-id": "6713a7ab4208a70d02acba868a2db61e", + "x-ms-correlation-request-id": "69768778-47fa-406e-a3da-fc1a7faef693", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "895befa9-a442-4f4d-9139-2458bb9f1f15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075622Z:69768778-47fa-406e-a3da-fc1a7faef693" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f55c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d04ec4ad1cab34d6135cbff0b7a031c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "840bc1c9-20c0-432d-8251-c570fac6510d", + "x-ms-client-request-id": "d04ec4ad1cab34d6135cbff0b7a031c8", + "x-ms-correlation-request-id": "6a1e076a-2f34-420d-aeda-7d0543d44fc9", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "491574a2-62c8-4754-80dc-31aff8f929af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075623Z:6a1e076a-2f34-420d-aeda-7d0543d44fc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f55d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3a4c54b804319cb03d7ccc09ccf3c16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b8d7582-9fd1-4ff3-a029-3520fe23bd21", + "x-ms-client-request-id": "c3a4c54b804319cb03d7ccc09ccf3c16", + "x-ms-correlation-request-id": "06a6e33f-2ac3-4bde-8b81-aa52144334f4", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "e526d91d-cddc-45ec-99da-01903f30943d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075624Z:06a6e33f-2ac3-4bde-8b81-aa52144334f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f55e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed86743f47278e22d1df53ac831cf062", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d0f93c3-4b7e-4422-9abe-1d8a7c4915a2", + "x-ms-client-request-id": "ed86743f47278e22d1df53ac831cf062", + "x-ms-correlation-request-id": "c0dbf4f5-fc7a-4d48-85c6-40fa16be23b5", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "3a64a29e-ae0d-443f-afef-1e442890ebef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075626Z:c0dbf4f5-fc7a-4d48-85c6-40fa16be23b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f55f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c43bf17bf3892ddbf935ccd350159743", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea4f65c4-a0bd-4cb6-8c84-8a6edce35008", + "x-ms-client-request-id": "c43bf17bf3892ddbf935ccd350159743", + "x-ms-correlation-request-id": "e56aa557-bc67-4c81-96a1-e89e036f437d", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "3a0662a3-b662-4b56-bd41-8d02a4d41372", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075627Z:e56aa557-bc67-4c81-96a1-e89e036f437d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f560-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43b0a81f441903a1a215f1632c1e96e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cfde6c41-d017-4b92-9cc9-fdc32d08ce27", + "x-ms-client-request-id": "43b0a81f441903a1a215f1632c1e96e6", + "x-ms-correlation-request-id": "2774ac6a-9d6e-4811-9ef8-847ce647cda5", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "0f3f8062-cbc1-447e-b7f7-340800762514", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075628Z:2774ac6a-9d6e-4811-9ef8-847ce647cda5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f561-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab456ae777944b8d9959f4f17b4f3ebb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea463d5c-7759-48d1-973a-c6315e160ec5", + "x-ms-client-request-id": "ab456ae777944b8d9959f4f17b4f3ebb", + "x-ms-correlation-request-id": "dc57ef04-23ef-4b99-a04d-5a66180a7740", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "c0ffa2b7-38f0-4576-b044-388aa310512e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075629Z:dc57ef04-23ef-4b99-a04d-5a66180a7740" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f562-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da8d1047ad6b37484f382273017700da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50662fd3-f4f0-4c01-82ea-8d409dfc2c84", + "x-ms-client-request-id": "da8d1047ad6b37484f382273017700da", + "x-ms-correlation-request-id": "8edb0b6d-c04a-45ff-a901-421928658319", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "e20ba634-3fb0-4cf2-8737-af1605e891e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075631Z:8edb0b6d-c04a-45ff-a901-421928658319" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f563-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5ece59feccfa8af1a65a9c04fb08853", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80181e23-584d-4552-9ea1-094cd3788d65", + "x-ms-client-request-id": "e5ece59feccfa8af1a65a9c04fb08853", + "x-ms-correlation-request-id": "0aa94d32-4e81-49cb-871b-9992ce7e5784", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "c6de4f1e-0488-4202-a875-c72fae541397", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075632Z:0aa94d32-4e81-49cb-871b-9992ce7e5784" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f564-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c1c35d6bb913a7b210e5c5c551a4a22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3643556a-f070-4952-9a9e-a02f8773ad2a", + "x-ms-client-request-id": "1c1c35d6bb913a7b210e5c5c551a4a22", + "x-ms-correlation-request-id": "408c5aa5-a3cb-467c-9ab2-c674e73d51d5", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "337c0333-602f-4e00-a0f7-532b1e0c0475", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075633Z:408c5aa5-a3cb-467c-9ab2-c674e73d51d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f565-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95521a5858635aec60e4c0060388e79f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2591bab-a5cc-484d-bb5b-91cab9ffb27d", + "x-ms-client-request-id": "95521a5858635aec60e4c0060388e79f", + "x-ms-correlation-request-id": "bd0b894d-d192-4373-9f3c-d301af79af87", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "75d2ed4e-e176-4ffe-835c-a27cda5d7050", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075634Z:bd0b894d-d192-4373-9f3c-d301af79af87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f566-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb9cceafe45ae3486ab1c4c190525200", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69480a77-f487-4367-abd1-211c9d8831ef", + "x-ms-client-request-id": "cb9cceafe45ae3486ab1c4c190525200", + "x-ms-correlation-request-id": "ab9c2ee8-d27f-4452-b238-8e123b56fd76", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "18d3505a-ddc3-496a-ba32-e09e5ea7e8e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075636Z:ab9c2ee8-d27f-4452-b238-8e123b56fd76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f567-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3567871bf25d7ef049c1bbacfb743699", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76354ff2-73cf-4ad4-a879-8d9aa9b794c8", + "x-ms-client-request-id": "3567871bf25d7ef049c1bbacfb743699", + "x-ms-correlation-request-id": "c065dd25-e204-4170-b8de-a3984795ca3a", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "12c67453-dc7d-4b0a-a358-4765e85ce89d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075637Z:c065dd25-e204-4170-b8de-a3984795ca3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f568-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87acbd277e7d74c7d16f2ab1942aca0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66bfa3d7-1f14-4da5-9121-4676b65e5e6b", + "x-ms-client-request-id": "87acbd277e7d74c7d16f2ab1942aca0d", + "x-ms-correlation-request-id": "f8c3c055-c5b8-484a-b937-185e0f4a8f57", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "cdbd8c5c-0eb1-4f86-bb5e-b6130200e0c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075638Z:f8c3c055-c5b8-484a-b937-185e0f4a8f57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f569-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7cebbf91b121bd41dd1e8199289be8f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fdc43003-9843-4fef-a22e-8a94906021cd", + "x-ms-client-request-id": "7cebbf91b121bd41dd1e8199289be8f6", + "x-ms-correlation-request-id": "8e1d2957-433a-41bb-81bf-13461fa82f95", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "26d61560-1a09-49d3-8707-896c5c27d699", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075640Z:8e1d2957-433a-41bb-81bf-13461fa82f95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f56a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d39a2a7acba69c83bff264eec83fea1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1de1fa32-5551-4fe3-a223-a686f5b4f50b", + "x-ms-client-request-id": "d39a2a7acba69c83bff264eec83fea1f", + "x-ms-correlation-request-id": "60310e05-4732-4685-a863-585d17ad41f8", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "8634d44b-407e-49cd-becc-86ae5fe8f9fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075641Z:60310e05-4732-4685-a863-585d17ad41f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f56b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b1aadf6ba8875787befa95efc2e4c35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "825d048a-ac84-4569-a942-cd47a3f67795", + "x-ms-client-request-id": "3b1aadf6ba8875787befa95efc2e4c35", + "x-ms-correlation-request-id": "98d3f4ed-b6f0-4883-b8c2-6ca4ef5628e6", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "f5a11a4a-f83f-4f62-a70d-c83d3596b6d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075642Z:98d3f4ed-b6f0-4883-b8c2-6ca4ef5628e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f56c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69363487f790c6673c4fbc2e4d53f49e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9737ef4e-f03e-40c8-a9b7-c5390ec46e6e", + "x-ms-client-request-id": "69363487f790c6673c4fbc2e4d53f49e", + "x-ms-correlation-request-id": "b2b5b238-fab7-4084-828a-1d39fe8335e3", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "a6be10de-05f6-4da0-9148-cd78b0370c78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075643Z:b2b5b238-fab7-4084-828a-1d39fe8335e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f56d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7aa26234ac80bf6db22457b722249f91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c48a1f45-4a97-430b-bf1b-6de8e0993b0e", + "x-ms-client-request-id": "7aa26234ac80bf6db22457b722249f91", + "x-ms-correlation-request-id": "811e0c34-8475-4ec4-af15-9f83c4e531f2", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "707ca590-80c8-4090-9f27-093531c64b96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075645Z:811e0c34-8475-4ec4-af15-9f83c4e531f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f56e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94662fa68008ff8e4654ff39fe492727", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d66aba8f-c357-417c-8ca1-59bdc783118d", + "x-ms-client-request-id": "94662fa68008ff8e4654ff39fe492727", + "x-ms-correlation-request-id": "1b95b407-b482-415f-be0e-3b9ce7fa6a76", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "41198ebf-00aa-47a5-aeb5-fb6e6f6cd13b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075646Z:1b95b407-b482-415f-be0e-3b9ce7fa6a76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f56f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a2a0bfad18cdbb4c676b76c9fafa417", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1080aac2-65a2-4932-86f3-3e18065448e6", + "x-ms-client-request-id": "9a2a0bfad18cdbb4c676b76c9fafa417", + "x-ms-correlation-request-id": "26f2ee03-eab3-4d27-afb9-3765b8c24dbb", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "8fcf314f-704b-4cd5-8469-27fe674d5b9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075647Z:26f2ee03-eab3-4d27-afb9-3765b8c24dbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f570-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e882aaf60edb495d3a2332cac33c168", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "558c417a-cc92-4e98-a261-67d2da9fca34", + "x-ms-client-request-id": "1e882aaf60edb495d3a2332cac33c168", + "x-ms-correlation-request-id": "e193c09e-79db-4e93-bbc3-bd56f89a315b", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "b770cb40-d833-4639-a081-f618eb23c180", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075649Z:e193c09e-79db-4e93-bbc3-bd56f89a315b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f571-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17bc30fc04fad4057a8bcd91c9225f96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7eab3431-7c6d-4403-bb87-f48d082abb79", + "x-ms-client-request-id": "17bc30fc04fad4057a8bcd91c9225f96", + "x-ms-correlation-request-id": "40dd9504-629d-40c9-a390-66bbca8977ac", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "de37f025-c6c2-41d0-920c-c5bb720b61ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075650Z:40dd9504-629d-40c9-a390-66bbca8977ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f572-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d38ae8b009c19a3a7576c6e99d872e92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d1b0a30-ff88-4627-8bce-84e961f26a06", + "x-ms-client-request-id": "d38ae8b009c19a3a7576c6e99d872e92", + "x-ms-correlation-request-id": "55788b5e-bb1d-4d04-b71a-f231be5f74ea", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "a0b11e57-1653-43ff-8ab8-1ee1e5ea5230", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075651Z:55788b5e-bb1d-4d04-b71a-f231be5f74ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f573-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f6f4eb58cf3aa1c25b3a3619204eab1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3151f577-cddd-42e9-a41c-0eaa1b25e1e6", + "x-ms-client-request-id": "6f6f4eb58cf3aa1c25b3a3619204eab1", + "x-ms-correlation-request-id": "79589ec8-8239-4b1f-8c99-c8a5b4ed1df8", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "7c97ed9d-a3d9-4937-bbaa-d7da76616399", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075652Z:79589ec8-8239-4b1f-8c99-c8a5b4ed1df8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f574-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c37b9c43eea9f3a6f522a1843e1b36f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "932ed7d4-cbe9-4642-b410-5c89eae15fb8", + "x-ms-client-request-id": "c37b9c43eea9f3a6f522a1843e1b36f2", + "x-ms-correlation-request-id": "e4624fdd-5474-4427-9d82-92f3bab43971", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "8fcecdd0-b219-4843-8c5d-bea430e737b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075654Z:e4624fdd-5474-4427-9d82-92f3bab43971" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f575-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7adc3b5cefb323a3ccdfad0e66d80871", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "602e29a5-bd2c-4534-a641-bd44c679b84a", + "x-ms-client-request-id": "7adc3b5cefb323a3ccdfad0e66d80871", + "x-ms-correlation-request-id": "0084fd1c-33a0-4489-9613-f50a7496861b", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "821a6d2a-67b9-4517-bdfe-1d3195be13c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075655Z:0084fd1c-33a0-4489-9613-f50a7496861b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f576-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00a6158b6b0cc6e8a87c79d0eb986c09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7ff3ab6-0e36-40a8-acdb-d4a95acd8129", + "x-ms-client-request-id": "00a6158b6b0cc6e8a87c79d0eb986c09", + "x-ms-correlation-request-id": "1f01f929-9027-4e3a-9159-869f9867db1a", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "9c7be3ef-9def-4553-8218-dc37cf9920db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075656Z:1f01f929-9027-4e3a-9159-869f9867db1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f577-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5704b07c702753fef958f7ca40988d1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd2e3270-cde0-4230-8df9-6abc45a822df", + "x-ms-client-request-id": "5704b07c702753fef958f7ca40988d1c", + "x-ms-correlation-request-id": "26403740-3f75-45c7-8055-e39a6c3e225a", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "b2e97724-43da-474b-81e9-d0da964f1c00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075658Z:26403740-3f75-45c7-8055-e39a6c3e225a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f578-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28f9301a3575f1e65215d23676d23834", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0937bcaf-5d35-4102-9b19-1113217576c7", + "x-ms-client-request-id": "28f9301a3575f1e65215d23676d23834", + "x-ms-correlation-request-id": "30b2ef3d-73c0-4733-b1d0-63258f0a2be5", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "0893ecf0-c47f-4789-a5e9-2ab322b3ca10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075659Z:30b2ef3d-73c0-4733-b1d0-63258f0a2be5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f579-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b591a372b0d41a49165207b4731e8510", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:56:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87d3577f-09c2-4ed9-b11a-bbe1eb9b13ae", + "x-ms-client-request-id": "b591a372b0d41a49165207b4731e8510", + "x-ms-correlation-request-id": "6f57679e-6e18-40e6-990d-397592f83f5f", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "ec3c25b7-dd97-42b1-973c-7c8c800d9698", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075700Z:6f57679e-6e18-40e6-990d-397592f83f5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f57a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bab65cef439e4694ca1305119ec7dd26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a4bf98e-63af-4888-8545-02dac9af404b", + "x-ms-client-request-id": "bab65cef439e4694ca1305119ec7dd26", + "x-ms-correlation-request-id": "c7d79017-9e14-4818-8451-6a56a16d0505", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "5992a829-1bb7-41ed-8579-e19b7c31aa0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075701Z:c7d79017-9e14-4818-8451-6a56a16d0505" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f57b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d57c31fd7066948e7de11232d327d33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c50070b5-52b7-4af8-a3b8-60501d738172", + "x-ms-client-request-id": "9d57c31fd7066948e7de11232d327d33", + "x-ms-correlation-request-id": "9ce46fcc-2f8a-4fad-84ae-73e12f8e125e", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "381924d8-a002-4550-a47b-66388cd853b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075703Z:9ce46fcc-2f8a-4fad-84ae-73e12f8e125e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f57c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1947c1907d1c2f950f4aeac0ab377c4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a3b655c-d94b-4d6c-9aa5-0f9861da8de1", + "x-ms-client-request-id": "1947c1907d1c2f950f4aeac0ab377c4f", + "x-ms-correlation-request-id": "e4b62c3f-9948-4906-9fba-df72f7cc1cee", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "7ad478b4-c56f-4293-975b-7833ad78ae28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075704Z:e4b62c3f-9948-4906-9fba-df72f7cc1cee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f57d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b094e175e8c71709134dd3c031701897", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64f471ef-3ee4-4536-92ff-b9317ecd72a9", + "x-ms-client-request-id": "b094e175e8c71709134dd3c031701897", + "x-ms-correlation-request-id": "167a88f9-a0e5-494d-b52b-47971a75d055", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "c2c901c0-4f84-4e39-93f4-20fa4c4f2e90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075705Z:167a88f9-a0e5-494d-b52b-47971a75d055" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f57e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc81d195c380a2092e288dbbec87bdaf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c0bc4d1-ccd1-4364-882f-213a2549066c", + "x-ms-client-request-id": "dc81d195c380a2092e288dbbec87bdaf", + "x-ms-correlation-request-id": "2004c0c3-8adc-4224-8f15-b358c8d26efb", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "89d96f1c-5c8c-42bf-919c-daa8d6a1e862", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075706Z:2004c0c3-8adc-4224-8f15-b358c8d26efb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f57f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cadc261cd9da76cb72f05cfa9d4fd9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "136f6e08-1c0e-4dd5-9093-98ffb49c674f", + "x-ms-client-request-id": "4cadc261cd9da76cb72f05cfa9d4fd9e", + "x-ms-correlation-request-id": "5b93b8c2-0c7b-4f0d-8171-5dbbf7bc5c17", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "1ac03cd8-1ebf-46d5-a1d7-b9298df5aa65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075708Z:5b93b8c2-0c7b-4f0d-8171-5dbbf7bc5c17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f580-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da2b5331a0b5b1cfd8f2819e5a4e2a8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4935d5e0-0860-4c4e-9d50-66a7c9135c3b", + "x-ms-client-request-id": "da2b5331a0b5b1cfd8f2819e5a4e2a8c", + "x-ms-correlation-request-id": "8d23f6a5-b695-4230-894b-078619137a8d", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "20f71b7b-4534-489b-a8ea-3c0e87df50f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075709Z:8d23f6a5-b695-4230-894b-078619137a8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f581-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f5e248fccc2c7fa65da2450be3af859", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "666f1350-5de0-4ec9-8eb1-aa32a6fb83a6", + "x-ms-client-request-id": "6f5e248fccc2c7fa65da2450be3af859", + "x-ms-correlation-request-id": "17a896dc-004d-48f6-99c7-5a74cc6adac9", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "9906cf87-0e09-4f4e-9581-dd3d2089f2ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075710Z:17a896dc-004d-48f6-99c7-5a74cc6adac9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f582-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9989ee2be35cc1f9f2fc74ab4ccd4c69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f12a932e-e422-4ff8-a7d0-24ac8eb3048e", + "x-ms-client-request-id": "9989ee2be35cc1f9f2fc74ab4ccd4c69", + "x-ms-correlation-request-id": "e6ec9d93-7ff5-4f3c-bdc4-9ba112d17b20", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "18d463de-576c-4829-8aca-660d14008283", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075712Z:e6ec9d93-7ff5-4f3c-bdc4-9ba112d17b20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f583-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "853f79058d7665db586375db7b7ff39d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f249977-e245-485c-a02c-d29af2278194", + "x-ms-client-request-id": "853f79058d7665db586375db7b7ff39d", + "x-ms-correlation-request-id": "7d5c0cc1-038b-4410-ba3a-d8195d37e028", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "e005f48d-e9d8-4fbb-a11b-91818c6565a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075713Z:7d5c0cc1-038b-4410-ba3a-d8195d37e028" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f584-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b7328fa91c4ac2f2b9d7cc6584e7b97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "146ae6a1-0c0d-4ac4-9b59-b247c7b9a3d0", + "x-ms-client-request-id": "6b7328fa91c4ac2f2b9d7cc6584e7b97", + "x-ms-correlation-request-id": "f2d25cc8-7c58-4048-99e8-551dc7228d1f", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "468f6a88-5dcd-476a-823f-37300dca5744", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075714Z:f2d25cc8-7c58-4048-99e8-551dc7228d1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f585-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "444aba8d72fb9de3132440f86e1d4573", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "329a7c28-6406-433d-9c59-4325f5eff059", + "x-ms-client-request-id": "444aba8d72fb9de3132440f86e1d4573", + "x-ms-correlation-request-id": "c43e31c9-25b6-4c92-872c-f56e95475bf5", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "0c9cfecf-d028-4193-a338-d83f40c7991c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075715Z:c43e31c9-25b6-4c92-872c-f56e95475bf5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f586-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23b1d608e05a74a449935ad911150c09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d231c7bf-b52d-4b5f-b917-a3d5e63d20cf", + "x-ms-client-request-id": "23b1d608e05a74a449935ad911150c09", + "x-ms-correlation-request-id": "e76d90f2-996f-48f7-b983-440c4d2f3e6e", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "9131e8c1-3baa-4ac8-8a0d-a0ea862ddf07", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075717Z:e76d90f2-996f-48f7-b983-440c4d2f3e6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f587-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c04edde8ae3487a245d558a050373d0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "24689065-eb41-41f6-b3bd-c101e3595b6b", + "x-ms-client-request-id": "c04edde8ae3487a245d558a050373d0d", + "x-ms-correlation-request-id": "4a9c1d13-978b-4fc5-bf22-b24572d518ad", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "1973f04d-cef5-4ac5-a9c0-1d10f6f9eac6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075718Z:4a9c1d13-978b-4fc5-bf22-b24572d518ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f588-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81be0857589dac3d16d6fb6718098cfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6057496-5c85-45ad-b6ef-7858b46c52cc", + "x-ms-client-request-id": "81be0857589dac3d16d6fb6718098cfe", + "x-ms-correlation-request-id": "1f3cd4d4-6e27-4b1e-9eee-10cc4ae31a94", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "6df2fb6a-bf36-43a0-b254-574602aef293", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075719Z:1f3cd4d4-6e27-4b1e-9eee-10cc4ae31a94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f589-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9110361784cf593f3429de8487042412", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9863e3a8-72e5-411e-91c7-26820205b787", + "x-ms-client-request-id": "9110361784cf593f3429de8487042412", + "x-ms-correlation-request-id": "3bc95d8d-4246-4c05-851e-dd52d2c7e3ad", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "a17d98f4-daa4-4e60-9f2a-03d260b35ab2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075721Z:3bc95d8d-4246-4c05-851e-dd52d2c7e3ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f58a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08814c558a56906c9fa1aa5db33a6e3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "145102cd-559e-4349-8f0c-e18d980b7b7a", + "x-ms-client-request-id": "08814c558a56906c9fa1aa5db33a6e3b", + "x-ms-correlation-request-id": "2136adc8-cc64-4c94-a4ee-4d380f76cf12", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "c8ead9d1-584a-41ff-b2b3-ea9a15b1bf46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075722Z:2136adc8-cc64-4c94-a4ee-4d380f76cf12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f58b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19885a49ac26d23ec9644d7479b92412", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1bda507e-ab16-40b5-9ebf-8dbdb2bbf278", + "x-ms-client-request-id": "19885a49ac26d23ec9644d7479b92412", + "x-ms-correlation-request-id": "25d273f8-2543-4789-a423-1cb6e9d74d03", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "d196073a-f7ce-4648-a071-f06db715df6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075723Z:25d273f8-2543-4789-a423-1cb6e9d74d03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f58c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb11e8b284888da7ca80f12ddae1a6f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37f393b8-b91f-40b7-8174-a7b007a89e36", + "x-ms-client-request-id": "cb11e8b284888da7ca80f12ddae1a6f9", + "x-ms-correlation-request-id": "e6ae80c2-42bb-4227-95a9-08f058556c9b", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "284e0eec-56e4-4139-872a-38c501f5698d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075724Z:e6ae80c2-42bb-4227-95a9-08f058556c9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f58d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c3ba3ba0a7ba8eb0eae3ef23cf816e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05f65b8c-07ef-4824-8428-41d85173ad5e", + "x-ms-client-request-id": "2c3ba3ba0a7ba8eb0eae3ef23cf816e6", + "x-ms-correlation-request-id": "0125c9eb-833a-4255-967e-42bc528c0238", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "603aafa4-e4c8-4dab-b8f9-98143a8b1f82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075726Z:0125c9eb-833a-4255-967e-42bc528c0238" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f58e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "caaa987ca328c4b2b3fb4ea6bb10f8e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "572d8159-b194-4281-880f-6683fc1caaf2", + "x-ms-client-request-id": "caaa987ca328c4b2b3fb4ea6bb10f8e7", + "x-ms-correlation-request-id": "8cec4907-186a-45b7-a098-9e6f7ee9382a", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "4d3d78b7-b44a-4f8d-b58e-d798687505ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075727Z:8cec4907-186a-45b7-a098-9e6f7ee9382a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f58f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6b954bdf87ea796fd69bdd946b450d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0c6c2b5-0b0e-408e-bc35-d3e6dd4b8a78", + "x-ms-client-request-id": "d6b954bdf87ea796fd69bdd946b450d2", + "x-ms-correlation-request-id": "281b6457-d72a-4c23-884b-1a30cabbe64a", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "e0d2a818-9edb-4e8e-bc23-2d819babdf3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075728Z:281b6457-d72a-4c23-884b-1a30cabbe64a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f590-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41b00b69db3617d0f0767880bc44edfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ec17177-84e7-46f1-a0cf-a5a6b53ec043", + "x-ms-client-request-id": "41b00b69db3617d0f0767880bc44edfd", + "x-ms-correlation-request-id": "103c8819-fe7c-406e-b258-baf19bf4010f", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "86fe9ea4-754f-478f-8482-e84228194452", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075729Z:103c8819-fe7c-406e-b258-baf19bf4010f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f591-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e83556b63f3e84670103ccbfe5d97eff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a929f62e-0820-4a89-a97a-2912778673da", + "x-ms-client-request-id": "e83556b63f3e84670103ccbfe5d97eff", + "x-ms-correlation-request-id": "9dab4ebe-c454-498e-8e86-fb03e9ada1ac", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "576bb04a-d9d6-4aff-bf50-a7e5bf57a7e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075731Z:9dab4ebe-c454-498e-8e86-fb03e9ada1ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f592-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b03c7baab65fe1b183a1e6077f16eab8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3de0e60e-a53b-434b-9c25-ca7708d3e5ab", + "x-ms-client-request-id": "b03c7baab65fe1b183a1e6077f16eab8", + "x-ms-correlation-request-id": "f02f9d7e-3e0f-4941-ba56-fa59b3858fb6", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "93d3f88f-9c07-4073-bcea-a6a32e1386ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075732Z:f02f9d7e-3e0f-4941-ba56-fa59b3858fb6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f593-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef22bf7b677f2a93a32c40330f103116", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59713f0c-86f8-47c1-8421-d8180d2590cb", + "x-ms-client-request-id": "ef22bf7b677f2a93a32c40330f103116", + "x-ms-correlation-request-id": "9ac5d42c-fc7a-493d-bd65-56b6e5e63300", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "1bc3e69e-7675-40d0-b196-6e232ea75f05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075733Z:9ac5d42c-fc7a-493d-bd65-56b6e5e63300" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f594-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41d579f83d08009ea553659d596005eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f637aadf-482d-4dfb-827c-889029286275", + "x-ms-client-request-id": "41d579f83d08009ea553659d596005eb", + "x-ms-correlation-request-id": "f5de7629-dbf9-4664-bb6d-0fcdbf722acc", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "01575f88-02f7-47dc-a4bf-e1dea9baf5f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075735Z:f5de7629-dbf9-4664-bb6d-0fcdbf722acc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f595-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "264414188eb64380e8120c33767dd272", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80adebfe-cf65-452d-8645-1fa89aee1459", + "x-ms-client-request-id": "264414188eb64380e8120c33767dd272", + "x-ms-correlation-request-id": "7e36ce0a-c218-436f-b495-bf732609d536", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "dfe0afed-3be5-429f-9771-01ef0468f84d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075736Z:7e36ce0a-c218-436f-b495-bf732609d536" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f596-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "050fcf6fa9413eb021224a2b02f6d043", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e45fde50-5516-46ec-8c06-8289587dac9b", + "x-ms-client-request-id": "050fcf6fa9413eb021224a2b02f6d043", + "x-ms-correlation-request-id": "c0cd98b5-a7d7-4653-8ac6-24e7ff4b3d46", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "a3fc1f41-9b22-4517-acbf-db20fde9680a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075737Z:c0cd98b5-a7d7-4653-8ac6-24e7ff4b3d46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f597-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb1b55260bcc6960f89259f5306a8927", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b609aa19-6c23-43ed-8f4f-5bfe859468da", + "x-ms-client-request-id": "fb1b55260bcc6960f89259f5306a8927", + "x-ms-correlation-request-id": "86a07c2c-c7f2-49bf-991f-a4fb90c00174", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "55b2c5c1-0f8c-4eb7-a987-416c7bf1d3cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075738Z:86a07c2c-c7f2-49bf-991f-a4fb90c00174" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f598-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a2df280ff506ea963050594445440f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6367450-5775-43a5-ac87-574d8a9c9669", + "x-ms-client-request-id": "8a2df280ff506ea963050594445440f1", + "x-ms-correlation-request-id": "1e867797-98b2-4a6c-a792-56edf34ad2a2", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "40f09a60-dc48-45ad-94e5-3b79ffa8fdf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075740Z:1e867797-98b2-4a6c-a792-56edf34ad2a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f599-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "210cc942d76264a56fa60caf50ba0eb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ceff4bf-21ba-4ece-8d02-e3499873f06c", + "x-ms-client-request-id": "210cc942d76264a56fa60caf50ba0eb6", + "x-ms-correlation-request-id": "a5f2d6e2-27ad-43df-874f-de99cd09dff8", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "eec0ad0e-bfd1-4de8-989c-43d9914126c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075741Z:a5f2d6e2-27ad-43df-874f-de99cd09dff8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f59a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fab229846c826f2abac97c705cc24a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c19155a8-cd9f-4523-b1df-a7b28f5c9afd", + "x-ms-client-request-id": "0fab229846c826f2abac97c705cc24a4", + "x-ms-correlation-request-id": "f3ff4ab0-1e2c-40ad-9202-1acc94d74b86", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "3d3b2325-da33-467a-bcdd-0eb4397edbb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075742Z:f3ff4ab0-1e2c-40ad-9202-1acc94d74b86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f59b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66b36751685ea9c44dc81aaaf3fa1da8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bbd73c3f-3aaf-42e1-9f6e-1165f8f5b681", + "x-ms-client-request-id": "66b36751685ea9c44dc81aaaf3fa1da8", + "x-ms-correlation-request-id": "945de9a5-8296-4b02-a857-71527f756be6", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "bcaa7047-c02c-4235-ba2e-1dde29cb1e7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075743Z:945de9a5-8296-4b02-a857-71527f756be6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f59c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22fb4ef631a9fb28d7e575b540de5fa3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb1df627-a61d-47e0-8fbb-8367470171bc", + "x-ms-client-request-id": "22fb4ef631a9fb28d7e575b540de5fa3", + "x-ms-correlation-request-id": "0b113a6f-9026-4186-b98f-6f19e07439fd", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "007a6ad0-4a37-4665-b0fd-f94e267748bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075745Z:0b113a6f-9026-4186-b98f-6f19e07439fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f59d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e95d6881a80730585d01c2002b4833b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06a2ca39-1941-4d19-aa03-ae149bbdd922", + "x-ms-client-request-id": "e95d6881a80730585d01c2002b4833b0", + "x-ms-correlation-request-id": "cab4ef39-4817-4463-b593-de0f049eaab8", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "6ad09e1e-cf52-4e7e-ae71-1d82e7a5493c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075746Z:cab4ef39-4817-4463-b593-de0f049eaab8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f59e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6d0ee8f02d020fa3eb88f78f20e686f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "128cf380-d0c4-4dff-bb97-2b923239dd8e", + "x-ms-client-request-id": "b6d0ee8f02d020fa3eb88f78f20e686f", + "x-ms-correlation-request-id": "dc6d21de-9624-468f-a897-d00e9ca0da9c", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "5ae39737-6ebe-4e13-83d1-6f9c0ed4a6fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075747Z:dc6d21de-9624-468f-a897-d00e9ca0da9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f59f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a287769349d4ea1f6cbc4a76f28cf8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77f0ae74-d8d3-43e9-91b7-b9cc37edd686", + "x-ms-client-request-id": "8a287769349d4ea1f6cbc4a76f28cf8f", + "x-ms-correlation-request-id": "a37bffdd-8dd5-49cf-8362-2c3fe814091f", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "1dae5485-8ce8-4b7b-a1f8-caa1221013b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075749Z:a37bffdd-8dd5-49cf-8362-2c3fe814091f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5a0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5126c5b1a80d7fd26d3dab4f19df3d4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ac1bc9f-2d39-4607-9b21-91a799a6eb9f", + "x-ms-client-request-id": "5126c5b1a80d7fd26d3dab4f19df3d4f", + "x-ms-correlation-request-id": "6c2ccf8d-5550-41a5-9723-030591c20dd4", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "41bced6c-2281-4d41-a99e-c2204a5e4ec9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075750Z:6c2ccf8d-5550-41a5-9723-030591c20dd4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5a1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4965399a81f5b134d82c0053e53b115", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "933d5ae0-cdf6-4389-b230-6a364d9ae383", + "x-ms-client-request-id": "b4965399a81f5b134d82c0053e53b115", + "x-ms-correlation-request-id": "0fb86ae0-abba-412a-8fba-4292693e70f9", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "c89af0ac-76aa-4ef2-bcab-2c403db8e998", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075751Z:0fb86ae0-abba-412a-8fba-4292693e70f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5a2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2dc6ffe817e8c161a5a81d6089523517", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c356ae4-d4e2-46e7-9d62-1766849f3785", + "x-ms-client-request-id": "2dc6ffe817e8c161a5a81d6089523517", + "x-ms-correlation-request-id": "a3702689-29ae-4888-b0dc-1d61256a9d2c", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "c5c8da0b-7a54-4bc5-a48e-c5242e90c3b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075752Z:a3702689-29ae-4888-b0dc-1d61256a9d2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5a3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b0e758d1b91086fb2cb038be8cc411a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a398f48c-95fa-4ba8-9678-94fae034ffb4", + "x-ms-client-request-id": "1b0e758d1b91086fb2cb038be8cc411a", + "x-ms-correlation-request-id": "99b2e9a7-8894-4af5-b9d0-e7253cbc3a94", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "d4d99aad-0f65-4cd6-999b-7e97b6cc7d06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075754Z:99b2e9a7-8894-4af5-b9d0-e7253cbc3a94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5a4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1967958b10188166f1d50f768bb3d2fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4eabc9b8-375b-4c5d-b224-655d23efdb68", + "x-ms-client-request-id": "1967958b10188166f1d50f768bb3d2fb", + "x-ms-correlation-request-id": "ddc4b544-4da5-49b1-91a9-70463335b832", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "061e7a7b-5a5f-41e0-b4d5-43ce518000d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075755Z:ddc4b544-4da5-49b1-91a9-70463335b832" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5a5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c978a94c9544cc8490bd7b1c13d6d9d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "719e0eef-4ebb-4df9-9e78-41ed3fe45bd4", + "x-ms-client-request-id": "c978a94c9544cc8490bd7b1c13d6d9d8", + "x-ms-correlation-request-id": "f8d0095b-b64d-44a7-b5b7-2e6ab6ed941b", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "b8a9bd2e-7450-4e58-9699-7108848178a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075756Z:f8d0095b-b64d-44a7-b5b7-2e6ab6ed941b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5a6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3d402671beb7cfe0e8d2abc0cf87dfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "210b8c9a-7e7a-4f1c-846d-11089c5e0617", + "x-ms-client-request-id": "f3d402671beb7cfe0e8d2abc0cf87dfe", + "x-ms-correlation-request-id": "7e7d40fc-d0f4-4d2b-ae31-6788f357bd50", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "ffab9019-058d-4f36-b50c-8915fcdc3d41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075757Z:7e7d40fc-d0f4-4d2b-ae31-6788f357bd50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5a7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e3e08f97853f6d6109a895a954a6d1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:57:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c24c7ab-750d-400e-9792-d829630ed9f2", + "x-ms-client-request-id": "3e3e08f97853f6d6109a895a954a6d1b", + "x-ms-correlation-request-id": "de8ba167-259b-48a0-94ef-d86df7aedac8", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "39bccd24-1487-4547-9ab0-f936f3375dac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075759Z:de8ba167-259b-48a0-94ef-d86df7aedac8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5a8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "880e36fcdedf3010abfbbab76bc7c097", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a7c0cf4-b2cc-47fa-84ca-17c52a6265d8", + "x-ms-client-request-id": "880e36fcdedf3010abfbbab76bc7c097", + "x-ms-correlation-request-id": "d32e128b-4273-4acb-89bf-266df06b45b1", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "d2e8c663-f5e4-4fc2-bba5-896bd2fc7b70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075800Z:d32e128b-4273-4acb-89bf-266df06b45b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5a9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a237c409a98ef852cdde25192a3e7c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fdcc5053-b57f-4901-8784-f6ff56b9c5c6", + "x-ms-client-request-id": "0a237c409a98ef852cdde25192a3e7c3", + "x-ms-correlation-request-id": "bbe0a843-1b35-44f0-8fa2-a4265f3a6106", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "51f2fa99-2c7f-46f5-9364-60ea669f810a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075801Z:bbe0a843-1b35-44f0-8fa2-a4265f3a6106" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5aa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5bf0f1ff4ea1b1ff80d9357bd1f8b48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18a44759-fff0-42fe-acbc-db7f03c1c283", + "x-ms-client-request-id": "d5bf0f1ff4ea1b1ff80d9357bd1f8b48", + "x-ms-correlation-request-id": "984f273e-9533-4d9a-9cb8-ce6679ed3f0d", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "938074ef-c220-4b9c-b018-26a00a546b9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075803Z:984f273e-9533-4d9a-9cb8-ce6679ed3f0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ab-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "191af1d962276282b11f5c01fbbe9e07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af9a82ff-58b7-4c3f-965e-8ea4af944ca4", + "x-ms-client-request-id": "191af1d962276282b11f5c01fbbe9e07", + "x-ms-correlation-request-id": "7191dd3f-ba55-40d0-acab-ea4a2c676464", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "9e534ebf-72aa-49ea-ba10-649b799e8da6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075804Z:7191dd3f-ba55-40d0-acab-ea4a2c676464" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ac-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b97f714ea084cad5c07128a062d320d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21f1a433-6922-4c30-8fb7-ed2ea4cf20be", + "x-ms-client-request-id": "5b97f714ea084cad5c07128a062d320d", + "x-ms-correlation-request-id": "73793ee2-edea-4f31-b989-319b26bde9d2", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "1650b416-e21d-40c5-8980-45b275723345", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075805Z:73793ee2-edea-4f31-b989-319b26bde9d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ad-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0779a52ce88bc9c8c5d24ca971e1f39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c1bb263-719f-44e8-956e-aaaff3a9dc63", + "x-ms-client-request-id": "a0779a52ce88bc9c8c5d24ca971e1f39", + "x-ms-correlation-request-id": "f3f34a60-2caa-424c-9a82-ad47f4640598", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "e388b89f-a687-4917-96d6-0850e4752132", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075806Z:f3f34a60-2caa-424c-9a82-ad47f4640598" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ae-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6438c6f2f87ee4044cdbc1f50f85b83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9231c6bc-6a5a-40c7-81c5-e50610288f81", + "x-ms-client-request-id": "c6438c6f2f87ee4044cdbc1f50f85b83", + "x-ms-correlation-request-id": "008f1241-9c83-4f93-a0d7-bbc23c312e9c", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "1fbe70bd-2ba7-48e5-b532-7c78f15bfe63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075808Z:008f1241-9c83-4f93-a0d7-bbc23c312e9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5af-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61ae4fedfd47457e5bdbcfaac5e2b43e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fe8907f-7c8e-48a8-bc42-6a1c34b62e12", + "x-ms-client-request-id": "61ae4fedfd47457e5bdbcfaac5e2b43e", + "x-ms-correlation-request-id": "fa7bb8d5-c278-484c-8a34-22a1166c1069", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "e65cdac1-dbc6-4dbc-99cc-bc560bbf8733", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075809Z:fa7bb8d5-c278-484c-8a34-22a1166c1069" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5b0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a1bd8e76ce9238559885cbb117c6b93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "307cc1d0-2efb-4439-a55c-416a3940a653", + "x-ms-client-request-id": "7a1bd8e76ce9238559885cbb117c6b93", + "x-ms-correlation-request-id": "182c52d4-e3fc-4389-9659-99024531519b", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "5f81f108-4ac1-4e66-9b5e-924e50f9d97f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075810Z:182c52d4-e3fc-4389-9659-99024531519b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5b1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48dda101be6f71f20dfd6aac5f952862", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "502e5e4c-ab28-456c-beef-9531def747b7", + "x-ms-client-request-id": "48dda101be6f71f20dfd6aac5f952862", + "x-ms-correlation-request-id": "dc96aa2c-c419-4b38-8c2d-2a5d62015633", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "472d8871-4394-48fa-95ff-cf9fcbc333f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075812Z:dc96aa2c-c419-4b38-8c2d-2a5d62015633" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5b2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78377e19e1dc819ac98b07bea1c334de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c670652-77c9-4be6-8405-ce5896d743f0", + "x-ms-client-request-id": "78377e19e1dc819ac98b07bea1c334de", + "x-ms-correlation-request-id": "cf8102df-1a66-44a5-88a9-9ba6dcfaee14", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "403b9116-d45f-4046-a0e8-095daded572a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075813Z:cf8102df-1a66-44a5-88a9-9ba6dcfaee14" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5b3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24a93b6f6b0529cee5a96cec01d9c3c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd395353-fc33-4462-ac25-20d0f7dd7926", + "x-ms-client-request-id": "24a93b6f6b0529cee5a96cec01d9c3c3", + "x-ms-correlation-request-id": "6550c5d9-baf4-4f14-a624-75891527becf", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "b42fb245-c011-4ae5-8535-fcfaf2d15752", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075814Z:6550c5d9-baf4-4f14-a624-75891527becf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5b4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93a1fa5ff3441fb7075b7fe4b633d049", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "42649e8c-fd07-4171-be10-36d8c67e7f3b", + "x-ms-client-request-id": "93a1fa5ff3441fb7075b7fe4b633d049", + "x-ms-correlation-request-id": "160ca2ea-8178-4e2b-8545-14788b26ac2a", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "c9288117-e1ba-4fe8-9613-f50d5bceb637", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075815Z:160ca2ea-8178-4e2b-8545-14788b26ac2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5b5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "233d8cc904ecad5cb00e923374ae80f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09deec91-7dd4-4494-865d-bc8a82fad9a3", + "x-ms-client-request-id": "233d8cc904ecad5cb00e923374ae80f0", + "x-ms-correlation-request-id": "96dfe316-6046-45f4-8503-8d7f77f16f14", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "d13c0910-ad06-42bc-b5f7-e22ea13c4be8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075817Z:96dfe316-6046-45f4-8503-8d7f77f16f14" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5b6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a75e44c7a0227b9984891da9ece972b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10f5d266-d743-4071-8524-acf0560f23db", + "x-ms-client-request-id": "a75e44c7a0227b9984891da9ece972b2", + "x-ms-correlation-request-id": "975d6fbd-0d60-4f2a-8e04-90eba3127320", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "b645ea0f-7a99-4a16-8078-37dd2b3c2c7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075818Z:975d6fbd-0d60-4f2a-8e04-90eba3127320" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5b7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "742223d8a09b5bd79df4e3366084ab59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d69df27f-4659-438c-8aaf-9c702138bb39", + "x-ms-client-request-id": "742223d8a09b5bd79df4e3366084ab59", + "x-ms-correlation-request-id": "a1dced2f-711e-4b0d-ad03-4eda3a6d7386", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "20dfbc99-b057-4095-987f-9fa0f50cc7b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075819Z:a1dced2f-711e-4b0d-ad03-4eda3a6d7386" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5b8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "721c8fdb29d42827f2c19f63e6b2c0c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63897071-14ce-48a2-b24d-07adcb2a2b6a", + "x-ms-client-request-id": "721c8fdb29d42827f2c19f63e6b2c0c6", + "x-ms-correlation-request-id": "02edb904-33f6-4810-948d-d7ca34c0abc3", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "f860cd81-b2fb-45eb-8ee0-bf7ac22ffe97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075820Z:02edb904-33f6-4810-948d-d7ca34c0abc3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5b9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "515ae09b0b8b27546d03092dbd621b00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dce2009d-794c-4857-9e8b-c32b4a6a5dc2", + "x-ms-client-request-id": "515ae09b0b8b27546d03092dbd621b00", + "x-ms-correlation-request-id": "09e81754-4002-4e08-80d1-6ed40b638002", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "feab1de9-a5ad-4033-917a-15c584312bf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075822Z:09e81754-4002-4e08-80d1-6ed40b638002" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ba-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5dcec4de00ccafddfcf982da017374eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c9c5980-62e3-483e-b41f-ae97a7d11db2", + "x-ms-client-request-id": "5dcec4de00ccafddfcf982da017374eb", + "x-ms-correlation-request-id": "3e71bc6c-56d8-4169-890d-b441a7bf569f", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "719bd2af-2309-44c1-89c3-2ef24bfb02b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075823Z:3e71bc6c-56d8-4169-890d-b441a7bf569f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5bb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "809b1c335a29cfcd3af504d120f96b8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a5b830b-d7b2-4d55-9369-ebcf39406037", + "x-ms-client-request-id": "809b1c335a29cfcd3af504d120f96b8f", + "x-ms-correlation-request-id": "69679996-4487-4ea6-8faf-883bf214e9bb", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "6ffee908-9d9a-4f63-b23d-d46a390c21a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075824Z:69679996-4487-4ea6-8faf-883bf214e9bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5bc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22849ea663e49bf902ab5592897926f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18781748-679a-4e88-b75e-7b2adf4eb744", + "x-ms-client-request-id": "22849ea663e49bf902ab5592897926f9", + "x-ms-correlation-request-id": "5eda971a-5ca0-47fd-8f07-20de939a3a06", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "2b6775a5-54a7-4d8e-859d-17e2fb03b568", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075826Z:5eda971a-5ca0-47fd-8f07-20de939a3a06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5bd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0fa1e8e9ac784d6f7fe22d7fb0b8e02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1a25e79-377b-4782-86f7-ee1f552dfc91", + "x-ms-client-request-id": "a0fa1e8e9ac784d6f7fe22d7fb0b8e02", + "x-ms-correlation-request-id": "335dc797-e125-4556-9a89-af0c8db87dfd", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "b38d1177-724b-44a3-a8df-d49c7c861172", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075827Z:335dc797-e125-4556-9a89-af0c8db87dfd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5be-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6234f28d52eed00622ff7d7e053b46c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1faef355-71a9-4dc9-b305-155801eb2556", + "x-ms-client-request-id": "6234f28d52eed00622ff7d7e053b46c1", + "x-ms-correlation-request-id": "3b49d42f-eaf7-46b1-9142-8fc240136e75", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "39713789-3d39-4d47-9cda-e8e3d193c4a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075828Z:3b49d42f-eaf7-46b1-9142-8fc240136e75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5bf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02430bcfcafe0bc7c7002be540229ff7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e50aee21-38b3-4c58-bded-c6568d690ede", + "x-ms-client-request-id": "02430bcfcafe0bc7c7002be540229ff7", + "x-ms-correlation-request-id": "848849e5-648e-41e3-ae97-c8257a7c6724", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "1e482e71-57c2-46ab-8447-26d91bb9c5e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075829Z:848849e5-648e-41e3-ae97-c8257a7c6724" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5c0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9704521cc3453c0a17297ec81c587ebb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b889871-3619-4915-a387-6d2ec031844e", + "x-ms-client-request-id": "9704521cc3453c0a17297ec81c587ebb", + "x-ms-correlation-request-id": "b8b99bed-9ccb-426b-9ef1-f515f647ebf4", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "19a0ebee-9f27-413a-8849-86ca344d4481", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075831Z:b8b99bed-9ccb-426b-9ef1-f515f647ebf4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5c1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef0861b88cc8c3032a289aed27209000", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e66db1a4-f738-429f-8261-92d2bcd0174c", + "x-ms-client-request-id": "ef0861b88cc8c3032a289aed27209000", + "x-ms-correlation-request-id": "5c154545-5e8c-43ae-8326-e02bad417e5a", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "b3f928c2-b01b-4caa-91a0-166266f7ca01", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075832Z:5c154545-5e8c-43ae-8326-e02bad417e5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5c2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b261865faf360b7c0006ead54cffee6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94ac0066-8f2b-4cd2-8dba-c246f735514e", + "x-ms-client-request-id": "b261865faf360b7c0006ead54cffee6f", + "x-ms-correlation-request-id": "286d50d9-162b-4902-9198-02c89e3e23e2", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "2dea62c5-931e-42ba-911e-55fd7ad26d75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075833Z:286d50d9-162b-4902-9198-02c89e3e23e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5c3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de2d6f82b01a902e4e406c1c291c15f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ed56c4d-db0f-4004-971a-9d723a02f90e", + "x-ms-client-request-id": "de2d6f82b01a902e4e406c1c291c15f6", + "x-ms-correlation-request-id": "cbd594bf-f9f1-44a3-b8a7-872a2afcf295", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "838e9c0b-bbcd-4d8d-84dc-8b831f109d83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075835Z:cbd594bf-f9f1-44a3-b8a7-872a2afcf295" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5c4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96687e99ccf60885e5fceec1a22e772a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d50ee359-2a27-4e0e-86eb-640b8759d668", + "x-ms-client-request-id": "96687e99ccf60885e5fceec1a22e772a", + "x-ms-correlation-request-id": "8e65aca7-af0c-419e-accf-8a20d93363f7", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "bfda88fb-bd88-403b-b348-a8b471bd74c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075836Z:8e65aca7-af0c-419e-accf-8a20d93363f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5c5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b76b2a39b1f2afe557d164f5425fe1e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "576bf336-e1be-4ce3-8f21-978f906fa530", + "x-ms-client-request-id": "b76b2a39b1f2afe557d164f5425fe1e4", + "x-ms-correlation-request-id": "ff22df2c-acfc-4469-8906-6f6ba521f77d", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "9d6be31d-3330-414c-b0ad-d77b8ea83e3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075837Z:ff22df2c-acfc-4469-8906-6f6ba521f77d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5c6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce3bf3f15897b579ea25f91dc16cee1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "320399cb-5edd-4fd8-819a-9096b5f4d258", + "x-ms-client-request-id": "ce3bf3f15897b579ea25f91dc16cee1f", + "x-ms-correlation-request-id": "42889907-34a1-4685-b718-35a8056cfd55", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "9bd65ab0-2fa8-4d6b-82a1-ea968602d3c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075838Z:42889907-34a1-4685-b718-35a8056cfd55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5c7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fee241c95db0e80398b83e25688fc685", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14fd9f80-7bf0-45ef-9b4c-a386a06e9b86", + "x-ms-client-request-id": "fee241c95db0e80398b83e25688fc685", + "x-ms-correlation-request-id": "fce148e9-1052-42a5-9519-0e2e1779c20e", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "3f871d65-6b90-4279-a01c-049858287b3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075840Z:fce148e9-1052-42a5-9519-0e2e1779c20e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5c8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aed00a1ba8f3e193b1b6cdcdb7c8eeea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "765a0ad0-10e6-4ded-b715-546f5ea47f80", + "x-ms-client-request-id": "aed00a1ba8f3e193b1b6cdcdb7c8eeea", + "x-ms-correlation-request-id": "9b8a5063-ec0f-4756-8e7e-214337324a5a", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "4eb08144-a72e-4600-889a-b0faf207bca9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075841Z:9b8a5063-ec0f-4756-8e7e-214337324a5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5c9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "002c44e3e37c9433ef5335de19534d5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e7a3363-f445-4530-afa8-1c3c91ab90ba", + "x-ms-client-request-id": "002c44e3e37c9433ef5335de19534d5b", + "x-ms-correlation-request-id": "b41a1966-f94c-42fb-98ca-cb6471bf5384", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "032b0102-e43c-4067-b8fc-c4b3bf07cc82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075842Z:b41a1966-f94c-42fb-98ca-cb6471bf5384" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ca-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b602745e3f9c202cad014cfa903530d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc7b55b3-9d30-47d0-97cb-fc0a99ac1b67", + "x-ms-client-request-id": "b602745e3f9c202cad014cfa903530d0", + "x-ms-correlation-request-id": "ebf47911-2c09-465b-940b-b1e45e2f3377", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "a43ba786-8e2e-418d-b660-747184b2e578", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075844Z:ebf47911-2c09-465b-940b-b1e45e2f3377" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5cb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "244154cac5623808d63cbea072b5c75d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cee799ca-26d8-484d-a49f-df42d860db82", + "x-ms-client-request-id": "244154cac5623808d63cbea072b5c75d", + "x-ms-correlation-request-id": "0c4de3af-03a9-4f31-bec8-a8854fbdd9c0", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "8e6e2f08-063b-4e61-93d3-7b9c05ac0106", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075845Z:0c4de3af-03a9-4f31-bec8-a8854fbdd9c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5cc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "436f726837c5a44d170b537a963903b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "498edd6f-533b-4e30-af99-648a83344411", + "x-ms-client-request-id": "436f726837c5a44d170b537a963903b9", + "x-ms-correlation-request-id": "a6e391ca-5365-47d9-9777-873699ec5eb8", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "4d895c7a-0152-429e-8d9b-dca3a40c88f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075847Z:a6e391ca-5365-47d9-9777-873699ec5eb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5cd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5136522291299f86bcae060808cadf8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d22f070b-6127-49ca-9cb8-a0f871677149", + "x-ms-client-request-id": "c5136522291299f86bcae060808cadf8", + "x-ms-correlation-request-id": "5725c1b3-fed0-488b-8e03-3d1e22cca15a", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "b1e2b448-dc03-4845-bbf0-917bfd78ac83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075848Z:5725c1b3-fed0-488b-8e03-3d1e22cca15a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ce-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e91ef3aecc6930a069d0c57728da19d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae9c70fa-e875-4366-9bb2-26b6590c0fc0", + "x-ms-client-request-id": "1e91ef3aecc6930a069d0c57728da19d", + "x-ms-correlation-request-id": "10521db2-6963-442e-a050-16d39b9c38bf", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "00aea6c3-e69f-4c7a-a31d-b5ca3be99799", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075850Z:10521db2-6963-442e-a050-16d39b9c38bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5cf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c7d043801a13f4b79d5d8fb57ed238b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "97d05f0c-734b-4079-b0db-53704880e2ea", + "x-ms-client-request-id": "0c7d043801a13f4b79d5d8fb57ed238b", + "x-ms-correlation-request-id": "a19502c6-4158-4c31-ba11-9bd29e2e434a", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "a8b8e87f-604a-415b-87e2-09c5dc6d7c7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075851Z:a19502c6-4158-4c31-ba11-9bd29e2e434a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5d0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7405a5de5a736f35b80bf751da127dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67b388f4-f3c5-4e6c-b2cb-ae519a423480", + "x-ms-client-request-id": "a7405a5de5a736f35b80bf751da127dd", + "x-ms-correlation-request-id": "7944b16c-0c3d-43ba-9cf4-e619ec1ecd47", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "4226f3c7-50b7-4d3f-a0f9-9f846e4c02ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075852Z:7944b16c-0c3d-43ba-9cf4-e619ec1ecd47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5d1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c284228a00e3856a352a4f1140f3c18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5323d136-ac78-4e19-bfb1-c8619c23f58f", + "x-ms-client-request-id": "7c284228a00e3856a352a4f1140f3c18", + "x-ms-correlation-request-id": "78f61395-e00b-431e-bcd2-54b909abbfe5", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "8eb475d0-c1bd-4d20-baf8-7063e9278012", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075854Z:78f61395-e00b-431e-bcd2-54b909abbfe5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5d2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17f9817afa4d52f61147b12142d621d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3132092a-9c45-4925-bcc0-7f20d9dbb919", + "x-ms-client-request-id": "17f9817afa4d52f61147b12142d621d8", + "x-ms-correlation-request-id": "8c10acb6-dfa9-4e92-82d8-3a150f8aa961", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "3143c38e-c9b4-4330-b274-eb718ec0af0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075855Z:8c10acb6-dfa9-4e92-82d8-3a150f8aa961" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5d3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14d2fbada6c5bd7c040703544102214c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67f9ceed-ba26-483a-80b4-5887ad833bc6", + "x-ms-client-request-id": "14d2fbada6c5bd7c040703544102214c", + "x-ms-correlation-request-id": "b9951e7e-4f13-455a-875f-7284f914d53f", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "9f0d3456-e58c-4f9d-9be0-56e629976bff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075856Z:b9951e7e-4f13-455a-875f-7284f914d53f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5d4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bfaa64410a72d8f4cd56bc7ef35f5cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f85fe880-c037-407e-8730-4747778654cf", + "x-ms-client-request-id": "9bfaa64410a72d8f4cd56bc7ef35f5cd", + "x-ms-correlation-request-id": "b0be9db2-bc32-494e-8163-2e85e31b5bf7", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "c05dc3f0-68ad-4f12-8085-ec03786f9ee0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075857Z:b0be9db2-bc32-494e-8163-2e85e31b5bf7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5d5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1943cb31273cd353043c1245f7a2110f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:58:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13b18fbb-6dd4-4751-900a-6a2e9c5e5658", + "x-ms-client-request-id": "1943cb31273cd353043c1245f7a2110f", + "x-ms-correlation-request-id": "a71a54c0-fdb6-43b6-b2c5-05962775a905", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "f7f35767-648f-40d0-8232-27ed443c8556", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075859Z:a71a54c0-fdb6-43b6-b2c5-05962775a905" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5d6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cdd642586db9d316ba4c7ef3bb4cdcf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b7db721-50d2-40a7-9833-5867308eedca", + "x-ms-client-request-id": "9cdd642586db9d316ba4c7ef3bb4cdcf", + "x-ms-correlation-request-id": "52041887-3eb0-41a7-bd94-080ceafbe61a", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "fa3fe9ad-596d-47a8-b6e0-556bf4ed8c0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075900Z:52041887-3eb0-41a7-bd94-080ceafbe61a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5d7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7523351208be1c105226966bfd4a36aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95539821-b851-4b42-ab19-bdf87f6f4f1d", + "x-ms-client-request-id": "7523351208be1c105226966bfd4a36aa", + "x-ms-correlation-request-id": "7845dcd3-518d-4d70-a04a-e89c9de1375b", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "fce92c1d-e4be-42ea-a4df-ebb085c1512d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075901Z:7845dcd3-518d-4d70-a04a-e89c9de1375b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5d8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8aa15bc45958aaf29aa5ad9760649850", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4dc5c495-5932-43f8-9daa-909eaf7a071d", + "x-ms-client-request-id": "8aa15bc45958aaf29aa5ad9760649850", + "x-ms-correlation-request-id": "80deaad6-9588-4e64-baf5-6f1232b18c5e", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "badb8689-8ea3-4212-90d2-4ac387ea36aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075902Z:80deaad6-9588-4e64-baf5-6f1232b18c5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5d9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c133436e9b7e1c5054c049b4efc69f20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a26a6396-5cdf-427f-99d1-a1576fe89cd1", + "x-ms-client-request-id": "c133436e9b7e1c5054c049b4efc69f20", + "x-ms-correlation-request-id": "4112b019-2629-455e-9183-7828d69db35a", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "9a041148-7b8b-4057-9180-e614cd62cd26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075904Z:4112b019-2629-455e-9183-7828d69db35a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5da-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df2a1d6e4213b8774378da195a78bced", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "788e337d-8bd6-4335-b79a-43d29178a750", + "x-ms-client-request-id": "df2a1d6e4213b8774378da195a78bced", + "x-ms-correlation-request-id": "6b507bfe-badf-43c8-a074-146bd4aed024", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "2dace132-2f3f-407e-87d8-ebb284b82837", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075905Z:6b507bfe-badf-43c8-a074-146bd4aed024" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5db-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bafc468e7416292b0b8536970f3dbbd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f452ebb-b064-4214-8629-db0d0b84d103", + "x-ms-client-request-id": "bafc468e7416292b0b8536970f3dbbd4", + "x-ms-correlation-request-id": "4bb3b1e6-47b3-4304-a790-398926ee8d2f", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "d450c830-707b-45a7-b6ef-0ce35b7d3c1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075906Z:4bb3b1e6-47b3-4304-a790-398926ee8d2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5dc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42298d06b83a2c3ccc7a7e06c037c1dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "314f12ca-ab15-4da3-8509-a7fa2aa7ce9e", + "x-ms-client-request-id": "42298d06b83a2c3ccc7a7e06c037c1dc", + "x-ms-correlation-request-id": "02238b0d-9740-4d30-a30c-57a64a199337", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "1d9bb21a-ccfd-4b57-81e0-0c241a215deb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075908Z:02238b0d-9740-4d30-a30c-57a64a199337" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5dd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8255b04e5c9f909f100d48e0cdfa805", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8fe78cad-49ba-4cfe-8c5c-9eefc2768460", + "x-ms-client-request-id": "a8255b04e5c9f909f100d48e0cdfa805", + "x-ms-correlation-request-id": "acff198f-d0c7-47f6-bcd9-b73f13b74950", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "b056e081-52df-4ac0-b629-36cc9dc87c7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075909Z:acff198f-d0c7-47f6-bcd9-b73f13b74950" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5de-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd1305bd794ed6b309d0ee9cf52568d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d169332-4bba-4c9a-9702-118497b70a7b", + "x-ms-client-request-id": "cd1305bd794ed6b309d0ee9cf52568d4", + "x-ms-correlation-request-id": "5bedec9b-0f3e-4ce6-a43b-a886b4272bc0", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "f43691bd-3003-4328-b0b7-ef6701f2bb43", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075910Z:5bedec9b-0f3e-4ce6-a43b-a886b4272bc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5df-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b49359c31217200a832f5039e4ae1fec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2f322ae-ed97-4f4f-ade8-5688cb7f7a0b", + "x-ms-client-request-id": "b49359c31217200a832f5039e4ae1fec", + "x-ms-correlation-request-id": "dafca773-9b94-427b-81f3-cac698f777da", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "dbd8823e-d736-4802-9079-a13398896782", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075912Z:dafca773-9b94-427b-81f3-cac698f777da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5e0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba4978d2f3248a8ea84f9ef9f76d03cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da078bed-9f7f-4cde-9a0c-d47cae36f286", + "x-ms-client-request-id": "ba4978d2f3248a8ea84f9ef9f76d03cc", + "x-ms-correlation-request-id": "b33e615a-7203-44c6-9843-6c326f3ef69c", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "5d39831c-32c7-4089-a6df-355a5556ef94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075913Z:b33e615a-7203-44c6-9843-6c326f3ef69c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5e1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3ca0098f44caaeefaf24a1e2879f25a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "827d45d0-2a9c-4713-8651-e728ed24cb73", + "x-ms-client-request-id": "b3ca0098f44caaeefaf24a1e2879f25a", + "x-ms-correlation-request-id": "4c8c704a-e189-40e3-badc-b592d898c331", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "33f5670f-7405-4c1a-b71c-2cdd322e173d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075915Z:4c8c704a-e189-40e3-badc-b592d898c331" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5e2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dc901b0addbcfb0cb080cc773112915", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bf0ec9e-72b6-4c68-b8c7-48e6e815ae69", + "x-ms-client-request-id": "7dc901b0addbcfb0cb080cc773112915", + "x-ms-correlation-request-id": "aee41c4d-3a54-42ba-85b5-762a4cb962a6", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "6775d7cd-aa32-4a4b-a1e1-c09c1e34643c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075916Z:aee41c4d-3a54-42ba-85b5-762a4cb962a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5e3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4a1842c6be4dea08a9ebf31a96f612e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e0a8df0-08d4-4a8d-918d-782fbb177ff6", + "x-ms-client-request-id": "e4a1842c6be4dea08a9ebf31a96f612e", + "x-ms-correlation-request-id": "3f69feef-4ade-4136-afed-5b3a9438ae6a", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "6ae59b22-fde0-4c62-ab1a-11a318e7fbdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075917Z:3f69feef-4ade-4136-afed-5b3a9438ae6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5e4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f548445d86a3ebf04ffbe744e72636e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96f0bfeb-71db-4ab1-8d75-d01427f78620", + "x-ms-client-request-id": "f548445d86a3ebf04ffbe744e72636e9", + "x-ms-correlation-request-id": "0f299bbc-d9b9-447f-b4b2-ee0d7a9db104", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "57560113-666e-4cac-99dc-dc8d0c0ceb73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075918Z:0f299bbc-d9b9-447f-b4b2-ee0d7a9db104" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5e5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4f234c80ed8447661ebf33ded7e255c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33e708e9-e119-4134-abd2-53290390dc4d", + "x-ms-client-request-id": "a4f234c80ed8447661ebf33ded7e255c", + "x-ms-correlation-request-id": "b48c17d6-e08b-4ac3-a0b5-cff13da826b7", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "df680442-aacb-459b-b273-a86327a54254", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075920Z:b48c17d6-e08b-4ac3-a0b5-cff13da826b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5e6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f6adea633c8a57193b594e8845cf663", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "149ef218-5ed9-487e-a52c-ed74b089499b", + "x-ms-client-request-id": "2f6adea633c8a57193b594e8845cf663", + "x-ms-correlation-request-id": "3dd44305-da1f-4392-9203-ecc8e548ca36", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "f30c0015-c6f2-43e1-b6dd-205bb1384762", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075921Z:3dd44305-da1f-4392-9203-ecc8e548ca36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5e7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7469d668bd7c4f55cd0494b893b3fdd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0def318e-ac63-48fc-bbdf-ce48ee1d76c2", + "x-ms-client-request-id": "7469d668bd7c4f55cd0494b893b3fdd1", + "x-ms-correlation-request-id": "49ab8cb6-2a50-4ec0-9483-38fd706cec00", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "6a956cfc-a475-490e-a3ea-3d6751ec25b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075922Z:49ab8cb6-2a50-4ec0-9483-38fd706cec00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5e8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "099d8bd506bc9421c34c10237a8ec005", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5dcfe1af-8f5f-463c-853f-2ebead211732", + "x-ms-client-request-id": "099d8bd506bc9421c34c10237a8ec005", + "x-ms-correlation-request-id": "f766f658-30fc-4d90-af84-21173d88525f", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "265afea8-b79d-4707-a738-a8462fc1b62d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075924Z:f766f658-30fc-4d90-af84-21173d88525f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5e9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17d48ff5b114e8df891a62c49fb912e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58ff2d6b-3483-4847-a180-8c446306b090", + "x-ms-client-request-id": "17d48ff5b114e8df891a62c49fb912e0", + "x-ms-correlation-request-id": "8dcebaf1-df21-4525-a91f-b672e75fdfb7", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "cde62872-ce47-4993-8859-5016536d89c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075925Z:8dcebaf1-df21-4525-a91f-b672e75fdfb7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ea-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f812c2b8ecbe61a6b4d4b12fac32d53f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13d43b18-d191-4ad7-8fcd-ac6c416b4f17", + "x-ms-client-request-id": "f812c2b8ecbe61a6b4d4b12fac32d53f", + "x-ms-correlation-request-id": "eeb4604b-a28c-4766-bb7d-1f2e5186f775", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "6ec89eb3-1deb-443a-a594-b814f2356983", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075926Z:eeb4604b-a28c-4766-bb7d-1f2e5186f775" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5eb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03c38f43e6de24bcacb480a2a45df50a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f653837-e2a9-4183-a100-4dcf1badb466", + "x-ms-client-request-id": "03c38f43e6de24bcacb480a2a45df50a", + "x-ms-correlation-request-id": "d4026b2b-af7f-4064-81d2-da5ac712cc68", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "bbaf0333-c743-485e-b03f-32e15d74bf8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075927Z:d4026b2b-af7f-4064-81d2-da5ac712cc68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ec-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b76a303ac77b0846e8736340ffaf3c56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d26dee32-3e69-4f7c-8cb6-f2312f3788a9", + "x-ms-client-request-id": "b76a303ac77b0846e8736340ffaf3c56", + "x-ms-correlation-request-id": "e08a2ed4-fb75-4bed-82fe-865749eefc9b", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "cf82bf2b-98bd-4f27-a7c7-dc802329bdd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075929Z:e08a2ed4-fb75-4bed-82fe-865749eefc9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ed-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f8023440ef5d20105ee4c096b04bc56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35ca44b5-9acc-4579-91c7-8db8bb26260f", + "x-ms-client-request-id": "0f8023440ef5d20105ee4c096b04bc56", + "x-ms-correlation-request-id": "3731e51c-afce-48fd-94b3-33ad47fe24dc", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "0ddba76c-c1ce-4eb9-a260-7c63aee155ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075930Z:3731e51c-afce-48fd-94b3-33ad47fe24dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ee-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7cf5a7df1dc77bc348ba1a6b837c24fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9375c9a2-cad3-4660-a862-8b2be83886af", + "x-ms-client-request-id": "7cf5a7df1dc77bc348ba1a6b837c24fc", + "x-ms-correlation-request-id": "636483b4-a9a6-4593-b270-51808b1ff00c", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "04fd72df-ebf5-4821-bf71-eb5eeb312252", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075931Z:636483b4-a9a6-4593-b270-51808b1ff00c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ef-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "815d2978e5dd2b142f98b18c7b3d9ce3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0db1aca2-d1ae-4777-98fa-538e0cb9cb34", + "x-ms-client-request-id": "815d2978e5dd2b142f98b18c7b3d9ce3", + "x-ms-correlation-request-id": "742f7920-603b-42ab-891a-d25fb9a531fe", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "bc86527e-ad09-43d2-923f-b07d2db3262d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075932Z:742f7920-603b-42ab-891a-d25fb9a531fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5f0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58600cb6c0ba278f5f05c63bf4964e89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc39b7b9-349d-4651-8dad-cbc647ca2dd1", + "x-ms-client-request-id": "58600cb6c0ba278f5f05c63bf4964e89", + "x-ms-correlation-request-id": "78469d2b-3205-4110-b41f-9fb81d9e89e4", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "5e22d2a4-01a0-4d28-8874-109717521a9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075934Z:78469d2b-3205-4110-b41f-9fb81d9e89e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5f1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41904fc93ba7f97993c94d2e6b37ff0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9307db4b-64e3-4ea5-bafd-a0341c005407", + "x-ms-client-request-id": "41904fc93ba7f97993c94d2e6b37ff0b", + "x-ms-correlation-request-id": "b6dd30ff-331b-493c-9ac0-fbcbda53ff9b", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "6c32ba18-c6ef-43a8-8cba-f05c324b6d8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075935Z:b6dd30ff-331b-493c-9ac0-fbcbda53ff9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5f2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76b4371dcc1bb8429a3522d81ed83798", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78ee78b5-f4a4-4b0b-bffb-6fe7f9268533", + "x-ms-client-request-id": "76b4371dcc1bb8429a3522d81ed83798", + "x-ms-correlation-request-id": "448c1cbf-c163-46c9-893c-b28db8576ab7", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "a454d654-67bc-4124-af4e-a95bb4b3a1fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075936Z:448c1cbf-c163-46c9-893c-b28db8576ab7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5f3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cc328495bac7b3b9366c5f07360bb28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ede13b0-5317-4a5e-8a42-75f0c65230f6", + "x-ms-client-request-id": "2cc328495bac7b3b9366c5f07360bb28", + "x-ms-correlation-request-id": "50aaee2e-d2b3-4cb3-bf2e-41bdb80c991a", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "03e0213e-bf65-40d5-8dad-70c0ddb27323", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075938Z:50aaee2e-d2b3-4cb3-bf2e-41bdb80c991a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5f4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc1dbb05d8e1fd6d0cd8a77219a1dbba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9189354-28da-408e-b767-7332ba2f7797", + "x-ms-client-request-id": "bc1dbb05d8e1fd6d0cd8a77219a1dbba", + "x-ms-correlation-request-id": "fe5f9c80-402d-47d7-82a7-0a55d7a4d015", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "8ce2cc8a-92d3-43f9-8926-08918747a99e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075939Z:fe5f9c80-402d-47d7-82a7-0a55d7a4d015" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5f5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43e5b492d373c25efb39e3b506524539", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d997adb-05fc-42a0-97f4-86aa6dd362ae", + "x-ms-client-request-id": "43e5b492d373c25efb39e3b506524539", + "x-ms-correlation-request-id": "b360bc06-3584-430e-8898-ffba4ce36bda", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "1aad4312-2769-4f1c-9a64-d2e4f6aa2c1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075940Z:b360bc06-3584-430e-8898-ffba4ce36bda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5f6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63d2f97a7aba71b7bbc51fd4b3c962f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04191049-bc86-4fca-a27b-8c162de6c36f", + "x-ms-client-request-id": "63d2f97a7aba71b7bbc51fd4b3c962f2", + "x-ms-correlation-request-id": "7d35a8b2-42a6-4705-9490-a09f8c37d14b", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "9efae4e2-e974-4a34-ba75-ca503e468473", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075941Z:7d35a8b2-42a6-4705-9490-a09f8c37d14b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5f7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be5e0b8b787b31b45c5bc1a8f5b8f7ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78f4c760-f84e-4690-8bfd-9c8059d8c95d", + "x-ms-client-request-id": "be5e0b8b787b31b45c5bc1a8f5b8f7ba", + "x-ms-correlation-request-id": "11f64294-a66c-41a9-a519-9661b2867805", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "d8fc5ef8-1d7b-4c14-a9e8-128173e93fd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075943Z:11f64294-a66c-41a9-a519-9661b2867805" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5f8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ff76d9378ce17fffc7387aeb48a0e31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6769ee99-250c-4922-a614-f1ea47dc7277", + "x-ms-client-request-id": "1ff76d9378ce17fffc7387aeb48a0e31", + "x-ms-correlation-request-id": "32343d6d-37e6-4a9f-9183-e0f26fe1ff84", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "52b87bed-35a0-4f8d-ac59-f7c81d42db96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075944Z:32343d6d-37e6-4a9f-9183-e0f26fe1ff84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5f9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb29f1d786f402be45a1065fb90e7c03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5b2f198-c7a1-4106-a05c-db2baf86c20f", + "x-ms-client-request-id": "fb29f1d786f402be45a1065fb90e7c03", + "x-ms-correlation-request-id": "4f0ba58d-3639-427d-bf3e-56f1e1378de4", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "3f06a7a1-e05e-415f-8fe0-0eb59569d959", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075945Z:4f0ba58d-3639-427d-bf3e-56f1e1378de4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5fa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "464065ce42d213230c46c207f0057dd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "694cb267-3b73-41bb-b090-dbf33327fb65", + "x-ms-client-request-id": "464065ce42d213230c46c207f0057dd2", + "x-ms-correlation-request-id": "248da1ad-befe-4dc7-bf36-626db4ff7b0a", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "4af6701d-f350-4196-ba4b-74157bb6bf96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075947Z:248da1ad-befe-4dc7-bf36-626db4ff7b0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5fb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03d18f4cfb8e0dc5aff4da2d719f5eee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d365184c-67b9-4d0d-9e46-d3cc446b59c7", + "x-ms-client-request-id": "03d18f4cfb8e0dc5aff4da2d719f5eee", + "x-ms-correlation-request-id": "47c37847-f5f9-442f-815c-5ff623177008", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "14f15978-88ff-44b7-a2a4-7dc3d231f625", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075948Z:47c37847-f5f9-442f-815c-5ff623177008" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5fc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4edf84f7c84a945fcd16efadc4b6123f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e01a371e-32f8-4207-9b6b-f9227e4275d7", + "x-ms-client-request-id": "4edf84f7c84a945fcd16efadc4b6123f", + "x-ms-correlation-request-id": "6af0d325-1d09-4455-b21f-5e5988ee0499", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "df2ad702-70ad-4586-a928-66ff3db6f8b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075949Z:6af0d325-1d09-4455-b21f-5e5988ee0499" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5fd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29123424783dd2749f3396dd68f6a16c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a463843b-499d-4b16-9e44-ce2291a36f20", + "x-ms-client-request-id": "29123424783dd2749f3396dd68f6a16c", + "x-ms-correlation-request-id": "fc3cd4b2-ea79-44a4-a7ef-6b45f48b8ada", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "2c485186-f4a1-4550-9532-77bf8b34a95a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075951Z:fc3cd4b2-ea79-44a4-a7ef-6b45f48b8ada" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5fe-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b10d3e82e258387303c36770c1749f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c1a8d87-7a9a-45de-8813-234b70a8da64", + "x-ms-client-request-id": "6b10d3e82e258387303c36770c1749f8", + "x-ms-correlation-request-id": "7cf0746c-d5db-4f38-b16a-5666a6f5dbcb", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "cfaea90c-178e-4ffa-af94-b1c4805ab737", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075952Z:7cf0746c-d5db-4f38-b16a-5666a6f5dbcb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f5ff-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d099ae2348c7fb00f0daf1632822cd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc063a9c-6cb4-4ce4-9f6b-71f0e2c2b5ca", + "x-ms-client-request-id": "3d099ae2348c7fb00f0daf1632822cd7", + "x-ms-correlation-request-id": "528bf783-7e4b-470e-b531-75dd71c1b71d", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "a533e829-6573-4d00-a919-a84312b6a1fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075953Z:528bf783-7e4b-470e-b531-75dd71c1b71d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f600-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0c58275a6a6f519ac8ff90041fcc588", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ff630b3-38dc-4dff-8b42-5da6bc3b3dec", + "x-ms-client-request-id": "f0c58275a6a6f519ac8ff90041fcc588", + "x-ms-correlation-request-id": "941fd740-377a-4ed9-8a97-234a83aaaf9d", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "4326a241-27e1-4883-b340-33ff752da947", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075954Z:941fd740-377a-4ed9-8a97-234a83aaaf9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f601-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdfa9eea63edb3df23905b187f7151ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1152f293-5a5c-4ad8-beaa-320461f677af", + "x-ms-client-request-id": "cdfa9eea63edb3df23905b187f7151ad", + "x-ms-correlation-request-id": "60922ce3-f90c-4e14-ad69-c883d6821e38", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "0c36e950-e938-4cb3-85a6-b975d72a8bd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075956Z:60922ce3-f90c-4e14-ad69-c883d6821e38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f602-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89025f1058513c52801391fd3bb03d12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c67e8ea5-a07b-4fc9-9c21-ac5e73185df5", + "x-ms-client-request-id": "89025f1058513c52801391fd3bb03d12", + "x-ms-correlation-request-id": "92fa8e87-9424-4473-b409-cdd2ae7bfba0", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "0f281e0b-3a97-4dd3-9f04-90a4b43c72f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075957Z:92fa8e87-9424-4473-b409-cdd2ae7bfba0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f603-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "942c26475e8712eaa312cd154a00763b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6fbdd75-257a-4a2d-99c6-5d9ea6736147", + "x-ms-client-request-id": "942c26475e8712eaa312cd154a00763b", + "x-ms-correlation-request-id": "1fa5989d-39b0-4cb4-8c2d-a16927e3f651", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "90189955-6cc0-44e7-a144-09ac9d6a24c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075958Z:1fa5989d-39b0-4cb4-8c2d-a16927e3f651" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f604-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2ef4b3d3cfa91364bbe4cd9d2e17872", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 07:59:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "896a9c19-dd92-47cd-98c3-19f5d87f1c61", + "x-ms-client-request-id": "e2ef4b3d3cfa91364bbe4cd9d2e17872", + "x-ms-correlation-request-id": "b9c47c5d-8579-41f6-a8ad-1d3bf3c0790f", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "45832a57-dde2-4f54-9395-4da6d2e4540d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T075959Z:b9c47c5d-8579-41f6-a8ad-1d3bf3c0790f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f605-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58d14853bd44b22674f0e53f8b3cf17f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "949e3313-6f2a-4d2e-b99b-7091ad33394a", + "x-ms-client-request-id": "58d14853bd44b22674f0e53f8b3cf17f", + "x-ms-correlation-request-id": "10e38d18-d1d4-4a1c-b0d4-12e2bd0c0883", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "e81784d1-4cea-4f39-950a-d5cf2eca7b84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080001Z:10e38d18-d1d4-4a1c-b0d4-12e2bd0c0883" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f606-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efc0559c5ac00b18f09a48c911103fc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad92e20f-363f-444b-b97a-b4eb9905f6f6", + "x-ms-client-request-id": "efc0559c5ac00b18f09a48c911103fc2", + "x-ms-correlation-request-id": "e887a87f-bbf0-4ac7-a56d-87ff00cc3708", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "8e85ac01-0255-4434-bbd0-9bb09fa8f758", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080002Z:e887a87f-bbf0-4ac7-a56d-87ff00cc3708" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f607-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01c25a991e2f7ff6253c6e0a56f6060f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff278cc7-a3b6-4a7e-8ee6-b49ca1eb30ab", + "x-ms-client-request-id": "01c25a991e2f7ff6253c6e0a56f6060f", + "x-ms-correlation-request-id": "b1d16375-2bd0-4435-b5fb-a25afcd7ad43", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "1219dbc1-86d9-42fa-8d7f-bb8d464a7fb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080003Z:b1d16375-2bd0-4435-b5fb-a25afcd7ad43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f608-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c3ccccc8820f8b130c568aa755da164", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4f36745-05bd-4835-944b-1b8b24f12d15", + "x-ms-client-request-id": "7c3ccccc8820f8b130c568aa755da164", + "x-ms-correlation-request-id": "53fcf8ed-e7dd-4739-baa1-b7d3cd0927ae", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "06962ee6-2824-40f3-8f7e-6bb1ec9b9d72", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080005Z:53fcf8ed-e7dd-4739-baa1-b7d3cd0927ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f609-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30a523b0ef7a7e505f40ca84ec0db5f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84d3a876-06b3-41fc-9f61-857c0aa4f34f", + "x-ms-client-request-id": "30a523b0ef7a7e505f40ca84ec0db5f9", + "x-ms-correlation-request-id": "20a7749a-f3e2-4327-8043-e73ccf86a063", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "adaad484-684c-4651-8068-01fb8157c50c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080006Z:20a7749a-f3e2-4327-8043-e73ccf86a063" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f60a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44fc3994c3d311a1a8c9d16ab64c0ac8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c541f45a-0ad0-4169-9500-498d980e000a", + "x-ms-client-request-id": "44fc3994c3d311a1a8c9d16ab64c0ac8", + "x-ms-correlation-request-id": "f1bead93-b035-4fd7-89e0-1a8551df1031", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "cb2dc5e5-971f-4930-9f94-4612e64ae6df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080007Z:f1bead93-b035-4fd7-89e0-1a8551df1031" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f60b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "325a0a9bd551dd947cbe1cdfbe2d0c23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c805c671-5d40-4531-8c87-024e8a21c014", + "x-ms-client-request-id": "325a0a9bd551dd947cbe1cdfbe2d0c23", + "x-ms-correlation-request-id": "7c7c0157-f575-4023-a9a3-441d9baaff4b", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "30229ed1-e75b-4d5d-a814-fad6d8629317", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080008Z:7c7c0157-f575-4023-a9a3-441d9baaff4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f60c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b156e105d61ec90819487b11ee5c813", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6826bea0-a3d2-44bd-835b-57bff700d582", + "x-ms-client-request-id": "3b156e105d61ec90819487b11ee5c813", + "x-ms-correlation-request-id": "0446ec04-df7b-4ee0-b020-a419a16127e7", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "243b1a13-24f5-426f-898e-27021cf6702f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080010Z:0446ec04-df7b-4ee0-b020-a419a16127e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f60d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2e8023682b3bfa8a41ec715a6c1537b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38a964fa-ce63-4280-a7f7-97abfc71726f", + "x-ms-client-request-id": "e2e8023682b3bfa8a41ec715a6c1537b", + "x-ms-correlation-request-id": "f8a0e2e5-9dfa-474d-a543-27b7ad47aa25", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "e0849427-d85c-4d58-8e05-b0bd5844e121", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080011Z:f8a0e2e5-9dfa-474d-a543-27b7ad47aa25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f60e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4759aebcce373d66796db1bc4de2be97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3757205c-83d8-442c-a414-0c888c8da35f", + "x-ms-client-request-id": "4759aebcce373d66796db1bc4de2be97", + "x-ms-correlation-request-id": "3703f452-ced9-40dd-b8f4-eb8c749f03ca", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "ee379bd5-3322-4361-a991-e4375717b4ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080012Z:3703f452-ced9-40dd-b8f4-eb8c749f03ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f60f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bba909f62a448e70c6559642967a45bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd3c8328-b92c-4248-94de-84e764511849", + "x-ms-client-request-id": "bba909f62a448e70c6559642967a45bf", + "x-ms-correlation-request-id": "8e24e18f-f07a-4251-b668-41be42643fc1", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "77d8088f-eadd-4051-a887-d1d6b1c3be9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080014Z:8e24e18f-f07a-4251-b668-41be42643fc1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f610-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70f40c41808c67db9bab6845d1eb72c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69497440-c743-4d5d-9b5e-0797c34951f1", + "x-ms-client-request-id": "70f40c41808c67db9bab6845d1eb72c2", + "x-ms-correlation-request-id": "244439fc-0154-4775-919c-4a0f842de9fd", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "ff37a82f-26bb-4e14-8f6b-6a361d75e4f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080015Z:244439fc-0154-4775-919c-4a0f842de9fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f611-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c1e3060971892363ecb81e13724a7ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d7da2880-f2a8-4838-a08c-0745315cbe05", + "x-ms-client-request-id": "9c1e3060971892363ecb81e13724a7ff", + "x-ms-correlation-request-id": "88982afc-b4d4-4074-b428-bf4e784b4e77", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "1d36e8c0-28b6-426d-ab38-a2d43e929275", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080016Z:88982afc-b4d4-4074-b428-bf4e784b4e77" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f612-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "407bf1284dee750a2d422099c22abcda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f15b5ef-2daf-44f6-bb0a-8b6f217c1446", + "x-ms-client-request-id": "407bf1284dee750a2d422099c22abcda", + "x-ms-correlation-request-id": "dcd20990-64cf-4824-b639-b247c175938b", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "5c202bbb-76eb-42c4-b330-cce1a708c730", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080018Z:dcd20990-64cf-4824-b639-b247c175938b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f613-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65e1d4e3a85ca9a7d56232c0fefa2f76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "511ed850-7c04-48e0-a552-1af4d41f3401", + "x-ms-client-request-id": "65e1d4e3a85ca9a7d56232c0fefa2f76", + "x-ms-correlation-request-id": "d6db3fba-12ed-4c1a-a8d0-6c020f84f4c9", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "9798f447-4171-4c36-9cfc-758ecf20e789", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080019Z:d6db3fba-12ed-4c1a-a8d0-6c020f84f4c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f614-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df1d6903317012d325a86fd5769dd013", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "871c015a-3e0f-4750-a30b-3120ce4fc38b", + "x-ms-client-request-id": "df1d6903317012d325a86fd5769dd013", + "x-ms-correlation-request-id": "48162565-4199-42f0-b9e5-d3299a823e29", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "f35ebf78-67bf-4f88-a870-01cb8541ed64", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080020Z:48162565-4199-42f0-b9e5-d3299a823e29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f615-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62fda70e41437fa24ad16a8b1b4a7732", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a143bf1-e631-4755-87e5-4726960db355", + "x-ms-client-request-id": "62fda70e41437fa24ad16a8b1b4a7732", + "x-ms-correlation-request-id": "02c462c9-e302-4ecb-85e2-442c29dd74ac", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "a752cbd6-b737-4bf3-86e3-165bde513895", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080022Z:02c462c9-e302-4ecb-85e2-442c29dd74ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f616-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5896aa12dd0db26a00cf40b339d23238", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c1e4489d-bc97-4c72-813e-658f8f01f076", + "x-ms-client-request-id": "5896aa12dd0db26a00cf40b339d23238", + "x-ms-correlation-request-id": "ed226d94-27a0-4c13-bd29-a020c0bd7b8b", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "232bf8ae-a43b-4a06-a248-564500af40eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080023Z:ed226d94-27a0-4c13-bd29-a020c0bd7b8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f617-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57b11f92ccfdc133c69d959ec648f7db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51d0eb94-d2bc-471d-bf8d-15d4be7cddfb", + "x-ms-client-request-id": "57b11f92ccfdc133c69d959ec648f7db", + "x-ms-correlation-request-id": "42bd88b0-d5fb-4a8b-bb21-0622bbce20c3", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "bb585453-bec2-4715-acd2-8037f191151a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080024Z:42bd88b0-d5fb-4a8b-bb21-0622bbce20c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f618-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccc23c31770731053d4a617301ef4578", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be4f30a5-a3cf-4fd7-ae06-18ecd138b050", + "x-ms-client-request-id": "ccc23c31770731053d4a617301ef4578", + "x-ms-correlation-request-id": "bcc66d2c-d33b-4495-8026-d0c5380607af", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "348b5019-0cd8-4bf9-a078-8ba37c60375e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080026Z:bcc66d2c-d33b-4495-8026-d0c5380607af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f619-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcf9329e1f98463576d4927047cbebb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00da3f15-3301-4192-8da3-0ffd5da804d5", + "x-ms-client-request-id": "fcf9329e1f98463576d4927047cbebb8", + "x-ms-correlation-request-id": "575b5e53-6503-495d-8417-a9c0fac13d82", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "fd625b27-1360-4fc3-b708-b8c9494677e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080027Z:575b5e53-6503-495d-8417-a9c0fac13d82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f61a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd8165d8660f1b311a801ab26abfbfd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3e587f1-c9f3-4fee-a03e-4d569ac47de8", + "x-ms-client-request-id": "fd8165d8660f1b311a801ab26abfbfd6", + "x-ms-correlation-request-id": "acad8215-3d9a-4d3b-a91b-58fc5784df56", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "ddbafff6-cd80-4d09-a4bb-5875471b7cc2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080028Z:acad8215-3d9a-4d3b-a91b-58fc5784df56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f61b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94ff1d58fa4f1242077c5532e495e971", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "263b44ce-13a7-4e61-939f-bec277587e19", + "x-ms-client-request-id": "94ff1d58fa4f1242077c5532e495e971", + "x-ms-correlation-request-id": "61d329d7-2029-4951-829f-49d0f6fe9a9a", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "20850dac-cec8-4038-9522-e0534ffab5b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080029Z:61d329d7-2029-4951-829f-49d0f6fe9a9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f61c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c9ba95f476e386801dde2180582dbb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "442bf6a4-521f-43e8-84b1-0ac3cd6598c5", + "x-ms-client-request-id": "9c9ba95f476e386801dde2180582dbb7", + "x-ms-correlation-request-id": "4047d73e-6301-4030-9848-d6226207d9eb", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "442a78de-b0fb-47c6-8b61-8448add7e200", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080031Z:4047d73e-6301-4030-9848-d6226207d9eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f61d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a17bc1457ccdd69226ef69310fe3685", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58deb488-281c-4649-b915-c6c8f65cfe94", + "x-ms-client-request-id": "2a17bc1457ccdd69226ef69310fe3685", + "x-ms-correlation-request-id": "2b2de1b7-5b69-418b-9f4e-d938d702da98", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "2e587cfc-874f-49bf-9154-60e550006564", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080032Z:2b2de1b7-5b69-418b-9f4e-d938d702da98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f61e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c153a89623241067b4c69371182a0c84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6497a20f-7c86-4f31-92a6-bb2b08085493", + "x-ms-client-request-id": "c153a89623241067b4c69371182a0c84", + "x-ms-correlation-request-id": "5dfade54-7240-4b89-b24c-a498d50b4c12", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "e14f3cb1-cb3e-4105-b303-dae0122af2fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080033Z:5dfade54-7240-4b89-b24c-a498d50b4c12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f61f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "281d9ea0bf7d08a43fbe7aff51d52702", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf6767d8-674b-454b-b93f-d2f4b760a86a", + "x-ms-client-request-id": "281d9ea0bf7d08a43fbe7aff51d52702", + "x-ms-correlation-request-id": "6f4b3f85-2c19-49da-a3ec-64c436f15e90", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "f6b4ff63-f2cb-4795-93af-dd1466b70794", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080035Z:6f4b3f85-2c19-49da-a3ec-64c436f15e90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f620-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c815ca71a2ef19254077505c3f7c4f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99089993-4222-471b-887d-caf2e0f435da", + "x-ms-client-request-id": "5c815ca71a2ef19254077505c3f7c4f7", + "x-ms-correlation-request-id": "0221389d-870a-4195-b1c5-28f0f97d55b9", + "x-ms-ratelimit-remaining-subscription-reads": "11547", + "x-ms-request-id": "7cb0ec86-6866-4e9d-a256-b1949703d361", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080036Z:0221389d-870a-4195-b1c5-28f0f97d55b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f621-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72f271610ee1d707034b8165a967bfdf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c62e44a3-0d99-49a3-a921-3b542c4df231", + "x-ms-client-request-id": "72f271610ee1d707034b8165a967bfdf", + "x-ms-correlation-request-id": "b1129742-e189-4433-947b-4293b36bbf64", + "x-ms-ratelimit-remaining-subscription-reads": "11545", + "x-ms-request-id": "70d9bade-f7cf-474c-8766-44a84b951513", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080037Z:b1129742-e189-4433-947b-4293b36bbf64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f622-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbca909eb0a885550b2bd3764a9e4448", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81b0a78e-41b9-4ecf-b104-06498cb4241e", + "x-ms-client-request-id": "bbca909eb0a885550b2bd3764a9e4448", + "x-ms-correlation-request-id": "c57dd601-ce5c-4097-beb6-0b2549c47d9b", + "x-ms-ratelimit-remaining-subscription-reads": "11543", + "x-ms-request-id": "def3ee7d-78d4-4ba5-bc82-f59e25ff5ca1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080038Z:c57dd601-ce5c-4097-beb6-0b2549c47d9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f623-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df9d82f9b5e2982155aa58e3992d48ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55284fae-1654-4eda-8b0a-43682e435514", + "x-ms-client-request-id": "df9d82f9b5e2982155aa58e3992d48ec", + "x-ms-correlation-request-id": "60d274b5-d309-4c26-a2e0-f51562a02f27", + "x-ms-ratelimit-remaining-subscription-reads": "11541", + "x-ms-request-id": "3bd5f2d4-9a0a-4e5f-a523-e813698d73cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080040Z:60d274b5-d309-4c26-a2e0-f51562a02f27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f624-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32679547082db14e1c6d66b53a918c65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae7e6d6b-f4b9-4bca-af49-3e3eb8a12f02", + "x-ms-client-request-id": "32679547082db14e1c6d66b53a918c65", + "x-ms-correlation-request-id": "4e837759-977c-45c2-a759-ecccc3a4d208", + "x-ms-ratelimit-remaining-subscription-reads": "11539", + "x-ms-request-id": "a982ebf4-9118-4a43-ad62-f219d92b421f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080041Z:4e837759-977c-45c2-a759-ecccc3a4d208" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f625-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "266c3906dfcae9fd6f3166fe5771ecde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e4cad7f-2fc4-4c3f-a2d2-d47a23c15100", + "x-ms-client-request-id": "266c3906dfcae9fd6f3166fe5771ecde", + "x-ms-correlation-request-id": "529a2198-f843-4c24-9a09-3bb7069f0dfb", + "x-ms-ratelimit-remaining-subscription-reads": "11537", + "x-ms-request-id": "ac27a0b0-02cd-4935-ad50-d37cdcefe5e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080042Z:529a2198-f843-4c24-9a09-3bb7069f0dfb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f626-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b42ee7e31137f01a33ecc3754f6c5ec4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d3d6ccf-0f90-45df-af77-1d8b7a5d7a9d", + "x-ms-client-request-id": "b42ee7e31137f01a33ecc3754f6c5ec4", + "x-ms-correlation-request-id": "49085ec1-11de-4548-af53-9c0e3976e0ac", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "90a92db9-246f-42b0-9b24-08ed37186939", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080044Z:49085ec1-11de-4548-af53-9c0e3976e0ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f627-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60dcf31d21c06722987dc3fba2505aaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d926e6e9-c202-4b3c-b513-537d92b30a3d", + "x-ms-client-request-id": "60dcf31d21c06722987dc3fba2505aaa", + "x-ms-correlation-request-id": "04a173b4-67c5-4d2c-9219-135e1230a697", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "5f17415f-8d74-43ba-b811-1704e7ee4911", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080045Z:04a173b4-67c5-4d2c-9219-135e1230a697" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f628-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52d18780d862f52d1e7bf3de1c889903", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49f4d1b1-3eea-4eac-93e5-0ea89c075c17", + "x-ms-client-request-id": "52d18780d862f52d1e7bf3de1c889903", + "x-ms-correlation-request-id": "d8580a8c-1d5b-4e5c-ad18-c059318fae4a", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "f45b50ba-8e13-4c6a-8988-865907d7cf39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080046Z:d8580a8c-1d5b-4e5c-ad18-c059318fae4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f629-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63e0a2d38c95c21ec5c71bba4e1f4ee3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c64d25ac-db2e-4874-a693-14f7106b720d", + "x-ms-client-request-id": "63e0a2d38c95c21ec5c71bba4e1f4ee3", + "x-ms-correlation-request-id": "9b5f7f2b-516c-42ad-913e-aba29b01f4f5", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "fb0f1c5d-dfa2-4b11-b354-c2cd097dd583", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080048Z:9b5f7f2b-516c-42ad-913e-aba29b01f4f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f62a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7f419910b9a4561c6e741452e444b10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d81d9b2e-9857-490b-9919-17763dbc9281", + "x-ms-client-request-id": "c7f419910b9a4561c6e741452e444b10", + "x-ms-correlation-request-id": "a0b0e190-df05-4e3d-9220-1d9804ca7de0", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "b9968165-6ae4-455a-b641-2babb470400b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080049Z:a0b0e190-df05-4e3d-9220-1d9804ca7de0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f62b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0027bfe3f76ff415690f8d9bbc73a6ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0c09083-5d61-4b45-a406-4c250ea80028", + "x-ms-client-request-id": "0027bfe3f76ff415690f8d9bbc73a6ff", + "x-ms-correlation-request-id": "a4a6c37b-0219-490f-9daa-9cfffdb7d6d7", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "5a25b07d-5f6a-49df-a6be-37050842edd0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080050Z:a4a6c37b-0219-490f-9daa-9cfffdb7d6d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f62c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "034c102cd293c869409b9dad4ad89481", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7a331fe-4b2b-4efe-994c-28cbfa075be3", + "x-ms-client-request-id": "034c102cd293c869409b9dad4ad89481", + "x-ms-correlation-request-id": "6dd50805-4a51-4884-ba86-e4a6e6ca774f", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "f145aa10-ce6e-42c0-83aa-9c453be7fde2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080052Z:6dd50805-4a51-4884-ba86-e4a6e6ca774f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f62d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ed60b7b4ef79a7304005d8a7dc68853", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef5015af-9656-4f63-9f61-ff38eae0b1ca", + "x-ms-client-request-id": "8ed60b7b4ef79a7304005d8a7dc68853", + "x-ms-correlation-request-id": "165b460a-821b-45e9-9ee3-ab31bfd4ab3d", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "24f1c9b5-fe98-41ca-9e29-1146495f7e87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080053Z:165b460a-821b-45e9-9ee3-ab31bfd4ab3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f62e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d18424047f7117c565fbfd45967a990", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8f62c6e-6ef1-41bc-909e-0fd361548efd", + "x-ms-client-request-id": "1d18424047f7117c565fbfd45967a990", + "x-ms-correlation-request-id": "fc5585f6-0a87-4284-8c84-4d84ed0db1f5", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "bf552899-77d4-4653-8ac3-7c2a0855ad7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080054Z:fc5585f6-0a87-4284-8c84-4d84ed0db1f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f62f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b01f0c7b189dde079db2ff9374de4a79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4062f7b7-07df-4650-85ac-9888e864f31a", + "x-ms-client-request-id": "b01f0c7b189dde079db2ff9374de4a79", + "x-ms-correlation-request-id": "e0ac53e2-98b2-4cb5-9304-1fd0ba2e3cfb", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "b1ab54d4-e72a-4fde-93d0-7a7a9eabbb1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080056Z:e0ac53e2-98b2-4cb5-9304-1fd0ba2e3cfb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f630-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "076c491376c033898ec438978e9f409c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73a66942-42b0-4992-8550-ac13128e990e", + "x-ms-client-request-id": "076c491376c033898ec438978e9f409c", + "x-ms-correlation-request-id": "d1cdd34c-da2b-4b83-b663-8dc5abd35367", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "4e70c74f-3267-4366-b80b-de3604122e8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080057Z:d1cdd34c-da2b-4b83-b663-8dc5abd35367" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f631-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "710fcd56d7a728b63b3a804548e99d77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93746582-7344-4eaa-8728-ccd1b0f178d6", + "x-ms-client-request-id": "710fcd56d7a728b63b3a804548e99d77", + "x-ms-correlation-request-id": "3132ca3f-4898-45bc-9324-b33e24c7378a", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "c3e704be-e777-4736-8450-78e43fdd6905", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080058Z:3132ca3f-4898-45bc-9324-b33e24c7378a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f632-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10c04615a2fb05d082eb22d8df704ffd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:00:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cabfdb86-75d3-425b-857a-6a48f297066e", + "x-ms-client-request-id": "10c04615a2fb05d082eb22d8df704ffd", + "x-ms-correlation-request-id": "d8d747c3-3068-4f0c-80be-34eaf7b51d0e", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "a83ca1ba-67b3-4c50-8c03-5cb8809a6499", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080100Z:d8d747c3-3068-4f0c-80be-34eaf7b51d0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f633-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a73c6271d8ce3bd29343cc85f544eaa5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b1cee30-e9e9-4462-a169-e5af79df23a3", + "x-ms-client-request-id": "a73c6271d8ce3bd29343cc85f544eaa5", + "x-ms-correlation-request-id": "9965aa7d-7501-40c0-91d0-2b6785f9b565", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "fdbaedc1-4694-4d1d-b0c0-19b8a63d2862", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080101Z:9965aa7d-7501-40c0-91d0-2b6785f9b565" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f634-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4881c02730deb4a1fc0aeebbb5dd49ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f67955f3-3739-4cca-8001-cf4ba947ece3", + "x-ms-client-request-id": "4881c02730deb4a1fc0aeebbb5dd49ca", + "x-ms-correlation-request-id": "f0bf01fa-7970-4058-b144-77b5f0857010", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "d61a5543-8484-40b8-b1a1-0a75c54d6b8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080102Z:f0bf01fa-7970-4058-b144-77b5f0857010" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f635-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6d382ebf5ac3ca974857cb7d54b0f3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d219bcdd-175b-4add-959b-b2f60bc09654", + "x-ms-client-request-id": "e6d382ebf5ac3ca974857cb7d54b0f3e", + "x-ms-correlation-request-id": "bc629c3c-d7b0-4224-a820-fa576ca20639", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "46298a14-629b-4f09-b362-0d1693bf0e8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080104Z:bc629c3c-d7b0-4224-a820-fa576ca20639" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f636-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1eb07c0007ee411fc188aac4e91686b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37e3b4e4-3cf7-48b3-95c5-b53ef49f0020", + "x-ms-client-request-id": "1eb07c0007ee411fc188aac4e91686b6", + "x-ms-correlation-request-id": "79a4d370-1f7e-4394-af3b-bb3f76104192", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "41af6814-6b8c-48c3-99f9-5826d2245e0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080105Z:79a4d370-1f7e-4394-af3b-bb3f76104192" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f637-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "729a01fa047131f81745d359b4eadeb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d49e7ce8-c2e1-4d1f-bf94-dbf974502e4c", + "x-ms-client-request-id": "729a01fa047131f81745d359b4eadeb1", + "x-ms-correlation-request-id": "8df92908-8cd8-47f3-bc8c-26838cda753b", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "3b0110f2-8141-453b-85bf-a1f0daf456cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080106Z:8df92908-8cd8-47f3-bc8c-26838cda753b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f638-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38bab0fa2a2de3dc639125234ae4525d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6584bda-73cd-4cd2-995e-4b56a7840af7", + "x-ms-client-request-id": "38bab0fa2a2de3dc639125234ae4525d", + "x-ms-correlation-request-id": "ed0b2dea-75a5-4e6f-80c1-e905b2db7dd2", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "50ec883f-cd4b-4ec2-a2ed-77668382a1de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080108Z:ed0b2dea-75a5-4e6f-80c1-e905b2db7dd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f639-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4bcc6fe9cb0fccd837f07a933c68dd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16b00494-c925-4872-bbe8-140e68cc4939", + "x-ms-client-request-id": "d4bcc6fe9cb0fccd837f07a933c68dd7", + "x-ms-correlation-request-id": "5ae5a960-4647-40aa-833a-6e57a6d3bfc9", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "c0028505-a2db-4967-9f88-47302c793e3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080109Z:5ae5a960-4647-40aa-833a-6e57a6d3bfc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f63a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39c9f9aa4d5ccf8925b60fdfdfd4e633", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13c75b57-5a2e-451c-a210-23fb5b7a6e3b", + "x-ms-client-request-id": "39c9f9aa4d5ccf8925b60fdfdfd4e633", + "x-ms-correlation-request-id": "e257994e-cab5-45d9-bfa9-df62bb16d2c8", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "f7a015a8-d458-4da9-a32b-028cd79441fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080110Z:e257994e-cab5-45d9-bfa9-df62bb16d2c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f63b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee5a76f20a2d5e00e3beb4ae2333b09c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "62d6270d-619e-4622-a54c-f1bb1561a9dc", + "x-ms-client-request-id": "ee5a76f20a2d5e00e3beb4ae2333b09c", + "x-ms-correlation-request-id": "0ef7acb2-5ddf-4421-92e5-bd146b30c30f", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "71e0fc19-7566-4ec1-bd62-c16c30385dc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080112Z:0ef7acb2-5ddf-4421-92e5-bd146b30c30f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f63c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51794e04191bb0003decaff98dee1daf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8952b1f4-3cd2-4149-9fdf-6927830eda73", + "x-ms-client-request-id": "51794e04191bb0003decaff98dee1daf", + "x-ms-correlation-request-id": "23ea69ca-c4f4-4764-9ff8-60e6961b85f5", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "0800ba23-6c03-4baf-b975-5114d7bd6679", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080113Z:23ea69ca-c4f4-4764-9ff8-60e6961b85f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f63d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdb6d4989f6ba0a9f86b559e99dbacf1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09b7920c-5df9-4ba2-a708-a4d7ab71f7ce", + "x-ms-client-request-id": "bdb6d4989f6ba0a9f86b559e99dbacf1", + "x-ms-correlation-request-id": "e3441cd0-36fe-4338-a1df-7e6f45422a3f", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "8bdce517-c201-44df-87b2-e615e37808a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080114Z:e3441cd0-36fe-4338-a1df-7e6f45422a3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f63e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91da7206955bd81775a9b1405a07d1f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "585cc3a5-2fb6-4749-918a-b28f0724fb86", + "x-ms-client-request-id": "91da7206955bd81775a9b1405a07d1f5", + "x-ms-correlation-request-id": "c45064ba-6b6d-4a36-b87b-bf09bd5ac023", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "c93b8961-bb13-4544-bf20-161c17c9fae1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080115Z:c45064ba-6b6d-4a36-b87b-bf09bd5ac023" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f63f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f1505a0f27c6531a4d958afc3621761", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d09f9d8-5849-455c-834c-b278b170d959", + "x-ms-client-request-id": "4f1505a0f27c6531a4d958afc3621761", + "x-ms-correlation-request-id": "5bf358fb-3cf6-4e4d-ae59-4e6afd7a5a80", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "7457d2f1-4ffd-4030-9b50-1538d579f061", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080117Z:5bf358fb-3cf6-4e4d-ae59-4e6afd7a5a80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f640-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1af2bd408c130254bcdd47c2ee6945f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "463d43a4-595b-4c29-952d-49b5291768eb", + "x-ms-client-request-id": "1af2bd408c130254bcdd47c2ee6945f1", + "x-ms-correlation-request-id": "07956817-297d-4043-8aff-19cfe96d3a54", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "d31af93c-13f0-4163-a2ed-b51b6fd5f29d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080118Z:07956817-297d-4043-8aff-19cfe96d3a54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f641-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93fd609a5cc513744175ec813c681412", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b53b0cbe-bb6f-4ef4-9b7c-30af9943fe24", + "x-ms-client-request-id": "93fd609a5cc513744175ec813c681412", + "x-ms-correlation-request-id": "f9fed58c-5203-4ab7-b26a-8ae32e1b19b2", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "99a7c1bf-ba5c-42b4-8a9e-3667cf7555f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080119Z:f9fed58c-5203-4ab7-b26a-8ae32e1b19b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f642-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cff4f91b61414e1b112939eab6e773a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddd9bad2-a400-4c70-8890-46c128b8573e", + "x-ms-client-request-id": "9cff4f91b61414e1b112939eab6e773a", + "x-ms-correlation-request-id": "5164167a-97b6-4706-81a7-8c3e551654eb", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "0faa0a22-2469-4a17-9a16-c910dc29a6d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080121Z:5164167a-97b6-4706-81a7-8c3e551654eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f643-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "631566938465e39c49dfd99e9fd2c653", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83127eb8-1afb-4051-9263-34b2e193e8bb", + "x-ms-client-request-id": "631566938465e39c49dfd99e9fd2c653", + "x-ms-correlation-request-id": "a95fadd4-5cf6-4cc9-bbb7-5841c6829c24", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "723a459e-6c77-485e-ab33-b31ef6100f11", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080122Z:a95fadd4-5cf6-4cc9-bbb7-5841c6829c24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f644-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f3035c9a869e3dd7ee8e2b2c9d568d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb5a03e5-eba9-447f-96c1-57e7661ff56d", + "x-ms-client-request-id": "9f3035c9a869e3dd7ee8e2b2c9d568d2", + "x-ms-correlation-request-id": "f2b9a2b1-5257-488f-8227-67eff734f27e", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "bc4cf81c-98dd-4895-a748-16d6b96a47ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080123Z:f2b9a2b1-5257-488f-8227-67eff734f27e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f645-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6eeb2feb1520dadb21c5334dd4375de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d0ce8d3-3081-4ec4-b904-63402cbd1c4a", + "x-ms-client-request-id": "d6eeb2feb1520dadb21c5334dd4375de", + "x-ms-correlation-request-id": "554ae901-cd19-44fd-b967-900f673b63ce", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "516e09fc-31d5-4984-9bf6-c3e84cb86df2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080125Z:554ae901-cd19-44fd-b967-900f673b63ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f646-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76d53f4cd73eead18832e47ca1ea1a73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4f9ca87-8a3a-413c-beaa-7bd38a82b3bd", + "x-ms-client-request-id": "76d53f4cd73eead18832e47ca1ea1a73", + "x-ms-correlation-request-id": "d266ca9e-c90e-4913-9ac8-c1fa1f7e7811", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "1bbbf096-841d-4805-83d3-361121ab2223", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080127Z:d266ca9e-c90e-4913-9ac8-c1fa1f7e7811" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f647-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eca00676efe417018723ec4d54a8053b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ffa1ce0c-d98f-407e-a10d-27aa52852023", + "x-ms-client-request-id": "eca00676efe417018723ec4d54a8053b", + "x-ms-correlation-request-id": "1cd23bf4-d6c4-4e62-9e8d-84aa9a5e555a", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "4d1e7f12-66f8-4d0e-80c7-9f499896e269", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080128Z:1cd23bf4-d6c4-4e62-9e8d-84aa9a5e555a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f648-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89650373f2002694e1034d20cd316bc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29d53c72-9796-4114-aa58-0bd5e02c404c", + "x-ms-client-request-id": "89650373f2002694e1034d20cd316bc8", + "x-ms-correlation-request-id": "47d9f952-6993-4fab-9dcc-49ad413b1270", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "4639b2b9-7dd2-48a5-9586-cc83a27b1473", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080129Z:47d9f952-6993-4fab-9dcc-49ad413b1270" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f649-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7bee00288a25cfa3ebeee1aeb8396df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b657e94-5e64-4787-8061-6920831dcd82", + "x-ms-client-request-id": "d7bee00288a25cfa3ebeee1aeb8396df", + "x-ms-correlation-request-id": "08a4fd7f-debf-4e6b-a918-34a398ea71ed", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "a823e4fa-a63f-40ac-89d0-41e82878ae2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080130Z:08a4fd7f-debf-4e6b-a918-34a398ea71ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f64a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e08a82c90848372727a0be0a2e14956", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "806daec6-9638-4b36-8f29-a951c873926d", + "x-ms-client-request-id": "9e08a82c90848372727a0be0a2e14956", + "x-ms-correlation-request-id": "2cdf6a35-3cbf-4a2e-8f06-a46e41cfe4f7", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "f5d341d4-55a4-4130-ab78-d7167d28c7e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080132Z:2cdf6a35-3cbf-4a2e-8f06-a46e41cfe4f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f64b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "734b24b72eeaea9808094b4103793a5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa064d19-b96e-4ca6-b4b1-cd54736e35ba", + "x-ms-client-request-id": "734b24b72eeaea9808094b4103793a5d", + "x-ms-correlation-request-id": "d4899d96-f0fd-49b1-a86b-c42ae6c1dc48", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "6b38e481-883f-457e-87bd-0b23b9c113a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080133Z:d4899d96-f0fd-49b1-a86b-c42ae6c1dc48" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f64c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24f36d6dcd2871446e3a65287d1aba5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83b1c0ed-66fa-4b3f-ba87-f47dfc3bd4a4", + "x-ms-client-request-id": "24f36d6dcd2871446e3a65287d1aba5c", + "x-ms-correlation-request-id": "9bdda62b-41b2-444e-be3d-3dba6fa38df1", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "9fb34684-92c1-4086-840c-ea60cf5ebfae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080134Z:9bdda62b-41b2-444e-be3d-3dba6fa38df1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f64d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c76298742238fef50f1e957a44317ff8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "818c7009-887c-46ce-8438-374aba618120", + "x-ms-client-request-id": "c76298742238fef50f1e957a44317ff8", + "x-ms-correlation-request-id": "c8228ad0-cdd1-4cda-b721-d08d733c6054", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "176af3f2-7fbb-4756-b994-6b5530d3b4ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080136Z:c8228ad0-cdd1-4cda-b721-d08d733c6054" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f64e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3573ae3f25edea2ddfd905afc9706dee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8a12639-aa17-40b0-a8d5-dece12c8d790", + "x-ms-client-request-id": "3573ae3f25edea2ddfd905afc9706dee", + "x-ms-correlation-request-id": "c718c890-db7b-4568-9522-9b68535d4a4c", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "9d5236eb-9c21-40a7-86e1-2104f4423e9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080138Z:c718c890-db7b-4568-9522-9b68535d4a4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f64f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6bcdef4e73164a2477f5150937c92d3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c265bc13-2f27-4837-a9b8-4b045c130050", + "x-ms-client-request-id": "6bcdef4e73164a2477f5150937c92d3d", + "x-ms-correlation-request-id": "3e5b3aac-3790-40f5-8578-7b7005f613f5", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "f87119f8-6cb2-4638-a7ac-833c264aea68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080139Z:3e5b3aac-3790-40f5-8578-7b7005f613f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f650-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cee96cba85a64f6f6a77e75f1c45349f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5b04e7e-03d6-4317-963f-b8321d77c6d8", + "x-ms-client-request-id": "cee96cba85a64f6f6a77e75f1c45349f", + "x-ms-correlation-request-id": "c514dd93-f231-4ef8-9109-ada682eeb70c", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "fc4397a9-8743-4497-b89b-2396c482665c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080140Z:c514dd93-f231-4ef8-9109-ada682eeb70c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f651-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "552ba7b11463cbe18928bdf80f23b316", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0f39b0b-98a6-46e7-886e-99a8f8c0a3bd", + "x-ms-client-request-id": "552ba7b11463cbe18928bdf80f23b316", + "x-ms-correlation-request-id": "3d9e7cd4-72cc-4de3-8083-5d5a282150e0", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "19805248-c2a3-4289-a5d1-0b881fbca8c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080141Z:3d9e7cd4-72cc-4de3-8083-5d5a282150e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f652-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cf4c8ac9e87c947807d009e8cc52e31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "625142f3-4044-4451-93c7-561b857c359f", + "x-ms-client-request-id": "5cf4c8ac9e87c947807d009e8cc52e31", + "x-ms-correlation-request-id": "8444364d-8f3d-4698-9147-37d5c45c777f", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "92236d31-c0a5-49e0-82cd-92eb43d2964f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080143Z:8444364d-8f3d-4698-9147-37d5c45c777f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f653-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f5876c0d79da6d98b1d457dc7763f46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e820ea33-b823-4d36-8592-346f73839afc", + "x-ms-client-request-id": "8f5876c0d79da6d98b1d457dc7763f46", + "x-ms-correlation-request-id": "99067e69-3858-4e32-9e77-08c0e7b09b9f", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "546d2595-0807-46a8-931c-50ce4a715a26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080144Z:99067e69-3858-4e32-9e77-08c0e7b09b9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f654-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53b3d0c4d75112185f62d5e513423fc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66faf639-2e36-4788-a4e6-5e6117ac01c8", + "x-ms-client-request-id": "53b3d0c4d75112185f62d5e513423fc4", + "x-ms-correlation-request-id": "973be1ee-d01d-41d4-9182-b53a2794fec7", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "1e65fc5c-adf2-4b87-8f98-7c0c55a3eb3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080145Z:973be1ee-d01d-41d4-9182-b53a2794fec7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f655-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99378bfa24cbd479ef4ed16959ca0109", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b1f854a-234f-4e7a-8660-d66e2c2af391", + "x-ms-client-request-id": "99378bfa24cbd479ef4ed16959ca0109", + "x-ms-correlation-request-id": "b1da5321-fe47-4faf-a0ef-c199067660c2", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "5022fffd-47a2-4fc3-8ae9-aa190f307252", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080147Z:b1da5321-fe47-4faf-a0ef-c199067660c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f656-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbdab93eda12e8e05d46303b02f39248", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4fbf63fc-b2d7-40f7-93c7-1f954e17453f", + "x-ms-client-request-id": "bbdab93eda12e8e05d46303b02f39248", + "x-ms-correlation-request-id": "15435ae1-ae12-4131-8c82-3df9dfe97aa5", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "8ac6e937-b04d-46a3-80b4-a7ee47e7e6ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080148Z:15435ae1-ae12-4131-8c82-3df9dfe97aa5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f657-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c8380dea63ea07b57de640206aeb995", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "907d1b69-8a3c-4965-bca4-7b51b136cbb3", + "x-ms-client-request-id": "3c8380dea63ea07b57de640206aeb995", + "x-ms-correlation-request-id": "dac720ba-3381-4c6e-b21a-eaa2b4994e36", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "d98d8934-7510-4e0a-a7fc-979e77711c23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080149Z:dac720ba-3381-4c6e-b21a-eaa2b4994e36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f658-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59a7cc6083671fb2aa4e3b85f43dd1fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "159e64b4-3942-46e8-a5e8-bf6bc439a8d2", + "x-ms-client-request-id": "59a7cc6083671fb2aa4e3b85f43dd1fb", + "x-ms-correlation-request-id": "aa8e9c08-82d2-467d-a639-1a3919b56c70", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "a19f0912-d4c8-4287-af6a-de076ef720a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080150Z:aa8e9c08-82d2-467d-a639-1a3919b56c70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f659-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d88b88bcc54698ca3e3a643376dee2af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f367ac9-bc4a-4944-bbfc-e8efc1fe62d7", + "x-ms-client-request-id": "d88b88bcc54698ca3e3a643376dee2af", + "x-ms-correlation-request-id": "38d42bab-6867-44e4-8f97-2bc9b152bfb7", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "c4d7b353-2eff-420c-aed2-d0aab0fc05d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080152Z:38d42bab-6867-44e4-8f97-2bc9b152bfb7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f65a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36db9a8c384c5be1ce6391ef6af6ab19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "923a90f6-20d8-4869-b9b4-246938be4c5e", + "x-ms-client-request-id": "36db9a8c384c5be1ce6391ef6af6ab19", + "x-ms-correlation-request-id": "6f57cfef-515b-4314-bfdf-eb2401b61810", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "f5181cda-2509-47e5-979f-ed13807ce971", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080153Z:6f57cfef-515b-4314-bfdf-eb2401b61810" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f65b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e45680ce0239a4e010f1b2c1e7ea9cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5a09b49-3058-40ea-91fe-fe971e355782", + "x-ms-client-request-id": "7e45680ce0239a4e010f1b2c1e7ea9cc", + "x-ms-correlation-request-id": "0e829fe6-3efc-4442-8382-245a9be93d47", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "519707e2-9632-46a6-baa9-e273291406de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080154Z:0e829fe6-3efc-4442-8382-245a9be93d47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f65c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59f88c6c9b6283afa72f0ae333da2d48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d607caba-10b8-4759-9930-7551a2b21115", + "x-ms-client-request-id": "59f88c6c9b6283afa72f0ae333da2d48", + "x-ms-correlation-request-id": "439885ab-7691-4795-851d-94162438ebec", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "78061dc3-99b3-4c47-ad18-421512416773", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080155Z:439885ab-7691-4795-851d-94162438ebec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f65d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e264a8e6498ac8b4b40343c1cb43c4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "11c9d077-fbdf-47d6-91e8-fa9296f7daf1", + "x-ms-client-request-id": "0e264a8e6498ac8b4b40343c1cb43c4f", + "x-ms-correlation-request-id": "959216d6-826f-414b-a985-a1557a0bea40", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "ffd380e6-c65a-43ad-8624-9c82d02e9a30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080157Z:959216d6-826f-414b-a985-a1557a0bea40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f65e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de83c5ba52fe71b7b8c2d6f3d66b6727", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9442765f-2fba-4c80-a2b5-5e8d3b157d1e", + "x-ms-client-request-id": "de83c5ba52fe71b7b8c2d6f3d66b6727", + "x-ms-correlation-request-id": "dfca71a6-adf5-473f-a37a-a38b9992e3ac", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "8f2300e2-ebe5-4546-9616-8ba587a2e245", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080158Z:dfca71a6-adf5-473f-a37a-a38b9992e3ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f65f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d49ed3e19a580833004b0d21667267f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:01:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10375a33-48a1-421e-bfe2-2f667ecfd815", + "x-ms-client-request-id": "d49ed3e19a580833004b0d21667267f2", + "x-ms-correlation-request-id": "3d4d8380-5319-47e7-92cd-c9baecdf3858", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "bb17ca7c-c352-4001-b5a3-ed6d39ce7445", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080159Z:3d4d8380-5319-47e7-92cd-c9baecdf3858" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f660-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d28baf34e573c4992b555d68d98d5e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0726e300-4a6a-41c6-ad44-22c334b7768e", + "x-ms-client-request-id": "6d28baf34e573c4992b555d68d98d5e0", + "x-ms-correlation-request-id": "15430f85-3181-45c7-aede-6a49a94c2b2c", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "66159f2b-9abc-45da-bbfd-0db8fdfaf750", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080201Z:15430f85-3181-45c7-aede-6a49a94c2b2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f661-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "495a0dd967161ff7927adeb244960a46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de190f78-22d9-44d5-bc9f-9e9794213432", + "x-ms-client-request-id": "495a0dd967161ff7927adeb244960a46", + "x-ms-correlation-request-id": "3ac33af3-84f2-4e9b-b1cf-162aeec06ded", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "d1860a40-f049-4bd3-9a26-d5db7e3b3fc8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080202Z:3ac33af3-84f2-4e9b-b1cf-162aeec06ded" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f662-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b00e35af94292cf896141a3455c7b67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99ffea56-9bb9-4da6-8c2f-60c407f2adc6", + "x-ms-client-request-id": "1b00e35af94292cf896141a3455c7b67", + "x-ms-correlation-request-id": "9de78213-45ba-4ba3-bdd3-8626f4e50f2b", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "d306730e-ac77-49b7-9e59-ae69f1bfcf4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080203Z:9de78213-45ba-4ba3-bdd3-8626f4e50f2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f663-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58482c751d178bdcc209dbdc7097f7fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b5bc3ba-efb1-49f9-a5f2-3d15823b3c65", + "x-ms-client-request-id": "58482c751d178bdcc209dbdc7097f7fc", + "x-ms-correlation-request-id": "c5a50c42-d09d-43f7-9e3b-85c09e603a91", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "4b884326-10f0-4947-8e91-babf6138d4ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080204Z:c5a50c42-d09d-43f7-9e3b-85c09e603a91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f664-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a97b0eaaba98df9e3dc7bfb42554da35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8f53bfd-db65-4a3a-94ab-0315be312a3b", + "x-ms-client-request-id": "a97b0eaaba98df9e3dc7bfb42554da35", + "x-ms-correlation-request-id": "713dd8f5-e6fa-4f3e-bae7-5df993670437", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "0c71a77d-bb77-4c3c-a2cb-afb3ad251c52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080206Z:713dd8f5-e6fa-4f3e-bae7-5df993670437" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f665-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "173c76feb14d3d2e077458391ef222f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "90ba751c-4899-45b3-90e7-8fda397795a0", + "x-ms-client-request-id": "173c76feb14d3d2e077458391ef222f2", + "x-ms-correlation-request-id": "8a799379-d19e-40f2-b4c7-18f9d03b3009", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "97e0026c-9e61-45ac-b8b0-51dc47f177fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080207Z:8a799379-d19e-40f2-b4c7-18f9d03b3009" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f666-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36f8456ad2e1bbcf8e681b4f5e27656e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c0988fc-ea33-4d31-b032-7b23c44a215e", + "x-ms-client-request-id": "36f8456ad2e1bbcf8e681b4f5e27656e", + "x-ms-correlation-request-id": "fc48a40b-8b4d-424f-9173-12d059fc1358", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "a0b65065-5206-4c15-a88f-3ca3485afca7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080208Z:fc48a40b-8b4d-424f-9173-12d059fc1358" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f667-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fadea52fdf5af8aee03ea1246165c14a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "681b2c6a-9d94-44f1-acd2-9c258781e67f", + "x-ms-client-request-id": "fadea52fdf5af8aee03ea1246165c14a", + "x-ms-correlation-request-id": "f3e8b091-f5d0-4b20-a539-131e9791ca9e", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "a347a902-837f-4b1e-945e-77cf7b8d7a63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080210Z:f3e8b091-f5d0-4b20-a539-131e9791ca9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f668-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e04acda5a35b2c54a78089e596dfdfdf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5190e076-736c-40f6-a32a-2cfef010d9d2", + "x-ms-client-request-id": "e04acda5a35b2c54a78089e596dfdfdf", + "x-ms-correlation-request-id": "3697f447-43b3-4280-94f7-7838cb485316", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "da6d9494-6cda-4cd3-a901-d0c6d969c48f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080211Z:3697f447-43b3-4280-94f7-7838cb485316" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f669-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7909ea0e27148a97960056a230ab5a29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2115eab4-9aa3-4c09-b0e8-f5dbb9a3822e", + "x-ms-client-request-id": "7909ea0e27148a97960056a230ab5a29", + "x-ms-correlation-request-id": "0c9d5b62-80a9-4a28-97e3-d37aeb6e8654", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "5f9decf8-54b9-49bb-8e3e-8b6b5e76f279", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080212Z:0c9d5b62-80a9-4a28-97e3-d37aeb6e8654" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f66a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90aad0a785dd8c1351b253d956c96101", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "314fbb9c-a423-4681-9d7d-a8eb3bff1c0c", + "x-ms-client-request-id": "90aad0a785dd8c1351b253d956c96101", + "x-ms-correlation-request-id": "48963d82-3ba9-4c69-901f-f3c489e36d22", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "29310866-7853-4f36-bef2-609da4a04e7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080214Z:48963d82-3ba9-4c69-901f-f3c489e36d22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f66b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7615c25f485b7d3635c04a5b4cb1fbfc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c2f6ac9-775b-47ea-8b72-ed60207d39e2", + "x-ms-client-request-id": "7615c25f485b7d3635c04a5b4cb1fbfc", + "x-ms-correlation-request-id": "bcb8effe-82bf-448e-a237-2d78fb96a589", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "e57be594-1de5-4dbb-a3c8-c1879e5de5d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080215Z:bcb8effe-82bf-448e-a237-2d78fb96a589" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f66c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c63e60264e348802d77d2762d4be34cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69107d5c-89fc-4d69-8bd7-684f3374d62e", + "x-ms-client-request-id": "c63e60264e348802d77d2762d4be34cd", + "x-ms-correlation-request-id": "73134efc-a8c2-40c0-b6f9-3e930059f657", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "a8a6f427-8a65-4498-8312-02094e4e967d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080216Z:73134efc-a8c2-40c0-b6f9-3e930059f657" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f66d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e43559ee4955fcd992c5b1c3bb83fa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9e75bbc-1a1e-420d-9088-b99613b9dc76", + "x-ms-client-request-id": "6e43559ee4955fcd992c5b1c3bb83fa0", + "x-ms-correlation-request-id": "58b19db4-8fa4-4726-b67a-98c7eb8a00e0", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "516a1dd0-ec3c-4299-a862-04c52f5d773d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080217Z:58b19db4-8fa4-4726-b67a-98c7eb8a00e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f66e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5b356b69b8b11ccbf8c9fdd20d4a877", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "187e60ea-d6f8-4179-a5d0-e7f1fd41e794", + "x-ms-client-request-id": "f5b356b69b8b11ccbf8c9fdd20d4a877", + "x-ms-correlation-request-id": "2f346c62-f8a7-4b03-8a34-b01cc4e27b60", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "8f546a89-bdc3-4d2d-a2df-84988ec25777", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080219Z:2f346c62-f8a7-4b03-8a34-b01cc4e27b60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f66f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6bc7c8c8d6d426692df2c08f2e54d1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4ec9b72-6fb3-4fac-96cf-e9963e566ded", + "x-ms-client-request-id": "f6bc7c8c8d6d426692df2c08f2e54d1f", + "x-ms-correlation-request-id": "8b894efa-1ba3-4728-8d4c-36ded053ce31", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "0d5b2878-312e-4f79-8198-35aff98f581a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080220Z:8b894efa-1ba3-4728-8d4c-36ded053ce31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f670-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dab873e3e0a03428932ae0844f03ec5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78ecc8eb-4d2d-4ca6-8fc6-953191c8742c", + "x-ms-client-request-id": "7dab873e3e0a03428932ae0844f03ec5", + "x-ms-correlation-request-id": "3613e3d9-11d8-4169-b311-877a96a983da", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "39657dbd-8fe6-41e7-90a3-f6d15da869b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080221Z:3613e3d9-11d8-4169-b311-877a96a983da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f671-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be90e48348fb2932f07163ab6ec31eda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4b1e41cd-8e97-439c-906a-aad083cc19c3", + "x-ms-client-request-id": "be90e48348fb2932f07163ab6ec31eda", + "x-ms-correlation-request-id": "eecb7fb9-03c7-4ed1-9058-f604f3bae28d", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "ed98f0d0-7781-4ca0-bcb0-1d1cf64a06cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080222Z:eecb7fb9-03c7-4ed1-9058-f604f3bae28d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f672-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "989f803f2a284d6c3ab96d3bde5efda2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "edfb26dd-4c69-4e0d-95d6-fbb02f3c263f", + "x-ms-client-request-id": "989f803f2a284d6c3ab96d3bde5efda2", + "x-ms-correlation-request-id": "28b91e77-3414-4341-b8f2-7832e9b1eb80", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "c80383c3-0700-47f1-b68c-52cb52e179b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080224Z:28b91e77-3414-4341-b8f2-7832e9b1eb80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f673-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e8567a08f54f52355818d99db9694c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26c0159f-fc0e-4e2f-a5d1-8ad936def72e", + "x-ms-client-request-id": "0e8567a08f54f52355818d99db9694c6", + "x-ms-correlation-request-id": "4c059625-6b12-4b84-a3cd-6c5bb9bee3c1", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "7fd64a4a-e728-41f7-9601-f67d215e1854", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080225Z:4c059625-6b12-4b84-a3cd-6c5bb9bee3c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f674-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4c9d414a650589c77438342dbf64b92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c78119dc-ada2-4101-b2d8-70b679ac9bff", + "x-ms-client-request-id": "c4c9d414a650589c77438342dbf64b92", + "x-ms-correlation-request-id": "f1b0ff5b-0271-4604-aa5b-8314ff964659", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "7c25591a-9d5b-4a4a-9a7a-deeffebf3aad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080226Z:f1b0ff5b-0271-4604-aa5b-8314ff964659" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f675-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "070bc0730f3eb0855ca942a69dd371a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "403961ce-0b6f-4216-81fc-6eb9a846414e", + "x-ms-client-request-id": "070bc0730f3eb0855ca942a69dd371a4", + "x-ms-correlation-request-id": "5853c890-4c33-4f26-8cbf-0a17a444074b", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "88da7f11-9563-487c-a355-8babd87e1d57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080228Z:5853c890-4c33-4f26-8cbf-0a17a444074b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f676-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a27a6243994f951ca2c97110be1195e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2dd2ec4b-9a7b-488d-adb2-2cc3d43d3dc3", + "x-ms-client-request-id": "0a27a6243994f951ca2c97110be1195e", + "x-ms-correlation-request-id": "90c7168c-d5d4-4762-94ce-65101a2052c4", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "ccf42730-51ce-48fa-93cd-d44d59531c1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080229Z:90c7168c-d5d4-4762-94ce-65101a2052c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f677-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a25fb368d8a04874e1967a763f5bba4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "adfd0481-62ae-4278-9bf8-9f293632ac28", + "x-ms-client-request-id": "1a25fb368d8a04874e1967a763f5bba4", + "x-ms-correlation-request-id": "68f642ab-0c06-4a46-ae7f-925c0622e567", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "2eab8362-2e7b-4472-bf0e-4a2b1ca0dbaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080230Z:68f642ab-0c06-4a46-ae7f-925c0622e567" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f678-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "341ddfd141cf3afd6e123d127874a57b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8eee6d0a-dece-4631-a1a3-33ad9a7ff682", + "x-ms-client-request-id": "341ddfd141cf3afd6e123d127874a57b", + "x-ms-correlation-request-id": "98ec219b-0611-4a30-a62e-c673f5673069", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "3875824e-7678-4ea1-8762-d613513f8596", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080231Z:98ec219b-0611-4a30-a62e-c673f5673069" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f679-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a170e38f57ad97191e22bb7bd1aa95d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc8406fc-695c-4ff8-a3b5-9508108eb6ce", + "x-ms-client-request-id": "a170e38f57ad97191e22bb7bd1aa95d4", + "x-ms-correlation-request-id": "d5856a27-1708-460a-aedd-3b8efbe15b96", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "8461a2e8-10cf-45d0-b848-71fa702be041", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080233Z:d5856a27-1708-460a-aedd-3b8efbe15b96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f67a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b3ff370e4c4f58ffeebac784f758cda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c2adace3-b23d-4282-89ee-86d93675fea7", + "x-ms-client-request-id": "2b3ff370e4c4f58ffeebac784f758cda", + "x-ms-correlation-request-id": "890bccd0-083b-4036-b4ab-9b34b2513bb2", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "0e79e9c8-6c86-4c1d-8ff5-749334c3b4ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080234Z:890bccd0-083b-4036-b4ab-9b34b2513bb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f67b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f17ec731a857af6c58516ac868168c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b120bc6e-9d8a-40a0-8945-a888946999d2", + "x-ms-client-request-id": "7f17ec731a857af6c58516ac868168c4", + "x-ms-correlation-request-id": "a877f0f3-616a-473f-823b-d82496f55549", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "a5b94ecd-72f7-49f8-ae8b-584258b90b39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080235Z:a877f0f3-616a-473f-823b-d82496f55549" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f67c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84a1687c7934aab7547ba3c2aaa147a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a2e09f0-428d-4a13-9dbc-6ee49cfd4951", + "x-ms-client-request-id": "84a1687c7934aab7547ba3c2aaa147a8", + "x-ms-correlation-request-id": "4cde7160-048f-4945-8d6e-4f067835f6f0", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "1a27a0a9-1932-4206-a22b-39e0e1408fae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080237Z:4cde7160-048f-4945-8d6e-4f067835f6f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f67d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e507e0951593564ffdc5653ecee26f7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ecf565a-5825-4b30-81ec-6066a01e330c", + "x-ms-client-request-id": "e507e0951593564ffdc5653ecee26f7c", + "x-ms-correlation-request-id": "0f22b6a1-5050-47a2-bcdf-9f26e5ef89ef", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "dc8d79c4-c288-4e37-a44e-fc9057c0eccf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080238Z:0f22b6a1-5050-47a2-bcdf-9f26e5ef89ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f67e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7fce78207d4faa6346c2b097733cf24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56aac377-30b9-4d75-be55-1ea39adc5744", + "x-ms-client-request-id": "e7fce78207d4faa6346c2b097733cf24", + "x-ms-correlation-request-id": "605f6a5f-34b6-4731-b49c-1388036664e3", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "3fb65e3a-ef6d-48af-b441-ec3dfcb53e0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080239Z:605f6a5f-34b6-4731-b49c-1388036664e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f67f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5176d3d82796631194b876e1378dc72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb6de80f-edae-4792-9b85-d9692790ce23", + "x-ms-client-request-id": "a5176d3d82796631194b876e1378dc72", + "x-ms-correlation-request-id": "ade4d366-71ba-420a-b3b6-d80045bc7e17", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "11a27e1f-1909-4581-93f8-7a22fa327eb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080241Z:ade4d366-71ba-420a-b3b6-d80045bc7e17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f680-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c340260c60a48dd43a0db126ea45dfc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f718ea3c-8252-44ec-b6bd-482af16af508", + "x-ms-client-request-id": "c340260c60a48dd43a0db126ea45dfc9", + "x-ms-correlation-request-id": "ed405109-f809-48e6-991f-bbb7a04d5cef", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "6f1a6537-c1a4-4f6e-9b78-d8741f4d2d3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080242Z:ed405109-f809-48e6-991f-bbb7a04d5cef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f681-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "610140f6c9cb0002b695cd888037e6bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "048f7860-ca45-4d67-aa5e-98e9bd82b524", + "x-ms-client-request-id": "610140f6c9cb0002b695cd888037e6bc", + "x-ms-correlation-request-id": "ca4cd10d-8558-4950-8329-0d0d1c582cee", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "5ea81d33-41e3-4d2a-9c0b-080a02a6c70f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080243Z:ca4cd10d-8558-4950-8329-0d0d1c582cee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f682-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50fdb8900cf3dc7f98896b6cd10b7cd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "736e8800-21d0-41e5-84f4-4e7e23c7da9a", + "x-ms-client-request-id": "50fdb8900cf3dc7f98896b6cd10b7cd3", + "x-ms-correlation-request-id": "4214e328-ab1c-41e2-8599-26aca0195cd5", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "78907e19-0927-496d-98fe-70e401a703b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080244Z:4214e328-ab1c-41e2-8599-26aca0195cd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f683-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d378be6c7a7742a724400d0f924c0d02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22f189fe-3b51-4227-9742-af66062c509a", + "x-ms-client-request-id": "d378be6c7a7742a724400d0f924c0d02", + "x-ms-correlation-request-id": "b254ba91-2c78-4794-b731-85513ec4a62d", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "a7c5158e-239a-4e71-976d-5f81767f97a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080246Z:b254ba91-2c78-4794-b731-85513ec4a62d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f684-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3296f4268e48ead6c024c8415e962eab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56d7e632-823a-4964-a406-1a24347ec0c1", + "x-ms-client-request-id": "3296f4268e48ead6c024c8415e962eab", + "x-ms-correlation-request-id": "fe0ba31c-b247-4cd6-80b4-9b8e4afdeebd", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "5bdf0842-9fe4-423f-9dc1-7e1651a105a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080247Z:fe0ba31c-b247-4cd6-80b4-9b8e4afdeebd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f685-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c21bfa1913bf154510ba2cb3fe704a4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a2b49011-2939-425b-a036-d8ceef8eaff0", + "x-ms-client-request-id": "c21bfa1913bf154510ba2cb3fe704a4c", + "x-ms-correlation-request-id": "e519629f-e2e5-4d9c-be38-4cb1eded4fec", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "bbb21252-edfa-4183-957a-dbc9b37bf610", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080248Z:e519629f-e2e5-4d9c-be38-4cb1eded4fec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f686-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc45697b4a74dd8be78e1252b265e48e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05dfcb13-ee39-49b2-89ec-ab6e92b5f5d6", + "x-ms-client-request-id": "dc45697b4a74dd8be78e1252b265e48e", + "x-ms-correlation-request-id": "4a78bda7-2f8e-43f9-b272-8c2d6cf3f192", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "de01096f-3f30-4aea-9159-99d2492fe8e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080250Z:4a78bda7-2f8e-43f9-b272-8c2d6cf3f192" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f687-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98f662114b301342af80218d6222eb50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2897eb7-b41f-4bea-a7ef-ce8334beb873", + "x-ms-client-request-id": "98f662114b301342af80218d6222eb50", + "x-ms-correlation-request-id": "e561eb75-2718-4df5-9a4f-cb878a77ce00", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "f0f66293-1013-4942-8d5a-98cef5b96794", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080251Z:e561eb75-2718-4df5-9a4f-cb878a77ce00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f688-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5c67cda5250ce366e3eda3100f263ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74bea3cc-e42d-46d9-8a59-201746408fd9", + "x-ms-client-request-id": "f5c67cda5250ce366e3eda3100f263ab", + "x-ms-correlation-request-id": "6ed84f6c-29ff-4f5c-8c1d-5d24e2a9d77f", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "1dc6ad79-d0bd-4e0f-be40-0866fa6cf194", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080252Z:6ed84f6c-29ff-4f5c-8c1d-5d24e2a9d77f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f689-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ca29ed5b179301b26322cf428fd7bc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e9bb7de-1f85-4baf-b5d7-f56823cd2846", + "x-ms-client-request-id": "9ca29ed5b179301b26322cf428fd7bc4", + "x-ms-correlation-request-id": "7b48ecb4-f207-4709-b8f0-a14d1cfef33e", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "406ed676-198d-454c-8a0a-a56d202e85db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080253Z:7b48ecb4-f207-4709-b8f0-a14d1cfef33e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f68a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3578c2a2ef9fbe3d2c2729f2701113bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5fbc5ad-df9b-4fd7-a54f-b7afe48c0678", + "x-ms-client-request-id": "3578c2a2ef9fbe3d2c2729f2701113bd", + "x-ms-correlation-request-id": "5a2e5524-a441-4753-af60-a5ae653097ab", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "7f63bccb-3c26-48bf-959f-8f21c3fa799b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080255Z:5a2e5524-a441-4753-af60-a5ae653097ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f68b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4b7751c4f8028d66096ce1e2541a570", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54a36fb6-cb7b-400d-af0c-577918d68020", + "x-ms-client-request-id": "c4b7751c4f8028d66096ce1e2541a570", + "x-ms-correlation-request-id": "343a4459-ec96-43bc-913f-a6616758462f", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "bf414002-ea7e-4c64-8be7-522e210dfad5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080256Z:343a4459-ec96-43bc-913f-a6616758462f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f68c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e8e15c32e79e60c60e370528729bf15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43583551-4a55-4fc8-a35d-bab20137fdf1", + "x-ms-client-request-id": "3e8e15c32e79e60c60e370528729bf15", + "x-ms-correlation-request-id": "b0d92641-cee7-4f04-8b7a-d4b31f8e7189", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "fd5ac32c-cbf5-4ab1-99a5-a339bdc08696", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080257Z:b0d92641-cee7-4f04-8b7a-d4b31f8e7189" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f68d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3d76f1fb6455344eb4fd408211f99ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f102130b-2df4-464e-a112-de2b3d0565a0", + "x-ms-client-request-id": "b3d76f1fb6455344eb4fd408211f99ea", + "x-ms-correlation-request-id": "ebfa6f99-54fc-4f45-9ea5-717c082a7de1", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "bcaf1b8a-f051-4633-aee5-c50fe1a7775a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080259Z:ebfa6f99-54fc-4f45-9ea5-717c082a7de1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f68e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a2fb881d483ee4369d1639dde84a037", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:02:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa75538d-be47-44a9-af65-d475e9398155", + "x-ms-client-request-id": "5a2fb881d483ee4369d1639dde84a037", + "x-ms-correlation-request-id": "e5d0f9ea-a79d-4b02-8451-2edd1a27e720", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "4c9d62ae-77b7-45e1-9136-882a0e1a30f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080300Z:e5d0f9ea-a79d-4b02-8451-2edd1a27e720" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f68f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6ffb9d6f2690c2bd13a522a5903c540", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca16f3ec-3ff5-4cc7-8bfe-ce2cc7e20b8b", + "x-ms-client-request-id": "b6ffb9d6f2690c2bd13a522a5903c540", + "x-ms-correlation-request-id": "89360019-5261-4bed-8980-81d8c30a9af5", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "de2e2de6-7dba-4368-9c3d-47dc39d29ecd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080301Z:89360019-5261-4bed-8980-81d8c30a9af5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f690-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ced0854a64fa4a912be9497453a67467", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c4beeb3-6a06-4bea-bce4-e7811f7e913b", + "x-ms-client-request-id": "ced0854a64fa4a912be9497453a67467", + "x-ms-correlation-request-id": "14feaebd-2995-43f8-bc15-ff561bf9f2b9", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "e1b47edb-20e4-493d-a734-cc1e214e7062", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080302Z:14feaebd-2995-43f8-bc15-ff561bf9f2b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f691-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67329daee2208e808d23894881199565", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63c5ed13-a3b9-4fd5-8ab1-1be21adf4fd4", + "x-ms-client-request-id": "67329daee2208e808d23894881199565", + "x-ms-correlation-request-id": "6fcd892b-fcfa-47d5-9238-967cb61cb729", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "ce828619-083e-42ff-97b4-2212358b3bd0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080304Z:6fcd892b-fcfa-47d5-9238-967cb61cb729" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f692-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5953230cd2b3713c27b48a80a8b6b82a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe4a873f-f43c-4a30-a62a-4da020cc9fa3", + "x-ms-client-request-id": "5953230cd2b3713c27b48a80a8b6b82a", + "x-ms-correlation-request-id": "f6f633e8-710f-4547-aa4e-86fee1dc6efc", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "a3c6727e-e9ff-41e5-b7cd-45859f36b883", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080305Z:f6f633e8-710f-4547-aa4e-86fee1dc6efc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f693-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb7bebc55dd16720044141d7db49c812", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c43b9b8-d14d-4eec-9576-580d6d194458", + "x-ms-client-request-id": "bb7bebc55dd16720044141d7db49c812", + "x-ms-correlation-request-id": "63dcda25-8ed1-44b7-8017-a8ddd6a01283", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "141a7bcc-0be9-448e-8427-83034c00ca76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080306Z:63dcda25-8ed1-44b7-8017-a8ddd6a01283" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f694-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3068e3531b53dcb461c0406b5800e5d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e643cd5d-f717-468e-87e4-1619d6bc59c0", + "x-ms-client-request-id": "3068e3531b53dcb461c0406b5800e5d6", + "x-ms-correlation-request-id": "c4b7f36f-17b7-448d-8eb2-666a472f0c19", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "691cb517-f321-47be-8ab6-72a716e71c25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080307Z:c4b7f36f-17b7-448d-8eb2-666a472f0c19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f695-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96835e6ad99eae9402eb5471906596dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8281c106-9a78-4820-be62-e109a18a3736", + "x-ms-client-request-id": "96835e6ad99eae9402eb5471906596dd", + "x-ms-correlation-request-id": "86d1bc0f-bf69-40f4-b75c-ef35291ec0a2", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "cec6fb7d-e21b-4c62-92c5-f34c5b168083", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080309Z:86d1bc0f-bf69-40f4-b75c-ef35291ec0a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f696-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c42c78ec884ea9d7369e5a101cb40f04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd663bd7-118b-4f3e-be68-10fb0e5f74bd", + "x-ms-client-request-id": "c42c78ec884ea9d7369e5a101cb40f04", + "x-ms-correlation-request-id": "59d9bfc8-4327-429d-9b86-4e25179f9900", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "8d67ee83-e02d-48a3-b756-6b6ce612a578", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080310Z:59d9bfc8-4327-429d-9b86-4e25179f9900" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f697-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c6d6a5c31c67a744eb92d67c7424bfc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38fe62de-03b9-4b50-8c24-26682b40a483", + "x-ms-client-request-id": "7c6d6a5c31c67a744eb92d67c7424bfc", + "x-ms-correlation-request-id": "e540a3b7-a692-41db-ac97-c2eb59730837", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "1cb7b17b-5be4-4ab2-967c-343576eb2444", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080311Z:e540a3b7-a692-41db-ac97-c2eb59730837" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f698-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df7f622920d3e18887d95fff7e84914e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8ab8642-eade-4370-950d-56af194535ef", + "x-ms-client-request-id": "df7f622920d3e18887d95fff7e84914e", + "x-ms-correlation-request-id": "a10d353d-288f-4c24-9276-a246fa20d768", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "cb4ab7b7-cf1c-49fe-91a7-b77f10a40bb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080313Z:a10d353d-288f-4c24-9276-a246fa20d768" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f699-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "261550dc1af7ba1704b276955b6fe2f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a30c99f-6c31-4e5e-a39b-806bcd0e26ab", + "x-ms-client-request-id": "261550dc1af7ba1704b276955b6fe2f3", + "x-ms-correlation-request-id": "ba4d1284-e504-483e-b4bb-7b73ad708c20", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "c0b6694f-6470-498a-9e5f-40c274b16eb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080314Z:ba4d1284-e504-483e-b4bb-7b73ad708c20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f69a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bae65e522f343b31e18bf5edd174fbca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e46c74a-912c-4a20-a745-24ef943ea21b", + "x-ms-client-request-id": "bae65e522f343b31e18bf5edd174fbca", + "x-ms-correlation-request-id": "4373b356-43ea-48ed-aa43-eb4146d08c3c", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "28ab7bd1-382a-4ab2-aa31-60bb2d357ec4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080315Z:4373b356-43ea-48ed-aa43-eb4146d08c3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f69b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "768bde27252d0f044bc5db20aaf38618", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9713b9a2-8de4-437c-99c3-c2df09e0a094", + "x-ms-client-request-id": "768bde27252d0f044bc5db20aaf38618", + "x-ms-correlation-request-id": "ea0c7383-9cbf-4644-ae6b-7c870479a2fe", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "990dbcdb-3ad2-4345-98e6-509b71e45026", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080316Z:ea0c7383-9cbf-4644-ae6b-7c870479a2fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f69c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20ad6cf6d79dac1a1eda446b242ae890", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b573718-f7aa-4c1f-aefc-d86704e0f107", + "x-ms-client-request-id": "20ad6cf6d79dac1a1eda446b242ae890", + "x-ms-correlation-request-id": "68af5df4-3cf2-405e-ad2c-af05144c55d8", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "21eda806-3f21-4682-ac3d-3e6e74258d95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080318Z:68af5df4-3cf2-405e-ad2c-af05144c55d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f69d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c6dabb66be32dc65ad66f6e541090ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f046ff7-99c7-42f7-88bc-d58ee31aa412", + "x-ms-client-request-id": "7c6dabb66be32dc65ad66f6e541090ee", + "x-ms-correlation-request-id": "12f89fee-5c74-4fce-85ec-8ccadfd625ef", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "6c8c74b3-1043-4f76-ba74-0b28bdbcda51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080319Z:12f89fee-5c74-4fce-85ec-8ccadfd625ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f69e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65f7dd05dbc64f2cc4df5853e098eb20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eab8248b-9dfe-48d7-b9a8-bdee7d293a50", + "x-ms-client-request-id": "65f7dd05dbc64f2cc4df5853e098eb20", + "x-ms-correlation-request-id": "a4df34e7-0936-4320-bded-589f8ab8f75c", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "a23cb29b-3f7d-44f0-895e-aeff56e5158a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080320Z:a4df34e7-0936-4320-bded-589f8ab8f75c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f69f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff694add09858a34a580c5c768ab570e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f890e19d-6d87-47bd-bd2c-6db2bd1b758b", + "x-ms-client-request-id": "ff694add09858a34a580c5c768ab570e", + "x-ms-correlation-request-id": "2a841bbd-f2f5-49fc-9189-fe3cb084ec89", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "7b7d4997-9622-4769-b0e8-1493e9546183", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080322Z:2a841bbd-f2f5-49fc-9189-fe3cb084ec89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6a0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4766564a8233dbc97e1db80413724cc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "699d06f1-e86c-4d7d-b339-fddd70ee4fd7", + "x-ms-client-request-id": "4766564a8233dbc97e1db80413724cc1", + "x-ms-correlation-request-id": "91fa6a50-8c63-4ec3-8327-15b12d06ac9f", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "6b2e5dd1-6030-4d34-b4f8-64e2f9b7ff04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080323Z:91fa6a50-8c63-4ec3-8327-15b12d06ac9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6a1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09914eeb90a6fc68a86cbf461565e718", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1acb9b7-80e3-4e52-b52e-9656aaf110b9", + "x-ms-client-request-id": "09914eeb90a6fc68a86cbf461565e718", + "x-ms-correlation-request-id": "3c76edb7-3e97-4eaf-8030-700640a27eea", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "5ef28734-09c4-4362-b7f3-ec7330e266a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080324Z:3c76edb7-3e97-4eaf-8030-700640a27eea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6a2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89094987a3325bed818e8067512f7633", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10351703-4c34-46c5-9d18-0e9db5e9917e", + "x-ms-client-request-id": "89094987a3325bed818e8067512f7633", + "x-ms-correlation-request-id": "b87fd246-177c-4c5f-a7ed-87fdf72238d0", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "8c4aac91-b9d5-40a6-974d-6aead4ee797f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080325Z:b87fd246-177c-4c5f-a7ed-87fdf72238d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6a3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1adb04334e1ab967ed699ec6c282c619", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2eab5e1-41f5-4356-bab5-2c7c44406fa5", + "x-ms-client-request-id": "1adb04334e1ab967ed699ec6c282c619", + "x-ms-correlation-request-id": "8fe88872-fb38-4b5d-845d-f57b2a780eef", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "43e64a79-6953-44a0-b9c9-468039c246b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080327Z:8fe88872-fb38-4b5d-845d-f57b2a780eef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6a4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c97d9f36c269488f603587181001ab79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "005a2c34-bd5e-4a4d-9e68-46676508842a", + "x-ms-client-request-id": "c97d9f36c269488f603587181001ab79", + "x-ms-correlation-request-id": "5542d349-2b7c-44db-bbf7-67ae96c5fa4e", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "51606ffe-33a5-42b8-979e-f3629caeb6a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080328Z:5542d349-2b7c-44db-bbf7-67ae96c5fa4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6a5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11138cf6cc8938fee24f9cc8042798ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5093de06-3048-4ee3-8d50-949c1e48a76e", + "x-ms-client-request-id": "11138cf6cc8938fee24f9cc8042798ff", + "x-ms-correlation-request-id": "1cbf17b2-3642-4cbb-9382-9bce03cf8e82", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "fb4a52c7-5ae8-4d8f-99db-d8b3f27a2cf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080329Z:1cbf17b2-3642-4cbb-9382-9bce03cf8e82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6a6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b13166c7acb170c97493b9e4c64ea9ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b7325832-e3fe-4e1a-ac2f-26914fb9c032", + "x-ms-client-request-id": "b13166c7acb170c97493b9e4c64ea9ec", + "x-ms-correlation-request-id": "80d1e615-ecfd-4868-a711-83c24a91b86e", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "9eaa1784-b4c6-4d6c-ba30-fb3db7c26041", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080331Z:80d1e615-ecfd-4868-a711-83c24a91b86e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6a7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35d025beb56e6990a144e71926c74339", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3fef0f5-6945-49f8-b293-334f3afd54d0", + "x-ms-client-request-id": "35d025beb56e6990a144e71926c74339", + "x-ms-correlation-request-id": "91fa9263-17db-48f8-9d82-8a20c12486e9", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "fc319496-b5b8-45e7-b1a6-5a99195c1c71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080332Z:91fa9263-17db-48f8-9d82-8a20c12486e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6a8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a951889df9cf49c8c3a39cf512197294", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68b81b4e-fcac-40b2-89f1-10fb737c1a36", + "x-ms-client-request-id": "a951889df9cf49c8c3a39cf512197294", + "x-ms-correlation-request-id": "dfefdad6-8e17-4910-aa4a-a7ce5b5f3547", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "cc37fe61-2c95-4095-9402-858f5ebc6e93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080333Z:dfefdad6-8e17-4910-aa4a-a7ce5b5f3547" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6a9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df0aafa663571290d6c7106cc5af4aad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54b932f2-717b-4931-8067-7da6cf9a0261", + "x-ms-client-request-id": "df0aafa663571290d6c7106cc5af4aad", + "x-ms-correlation-request-id": "68dceb05-d87f-4ce2-a2af-587a97e9da9a", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "3afc8817-90af-4a99-bd6f-68428790d664", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080334Z:68dceb05-d87f-4ce2-a2af-587a97e9da9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6aa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e47804ffffcc41c5d8672cb189a5788", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a05e524-95cd-4f0c-abad-ff7b290ccd82", + "x-ms-client-request-id": "3e47804ffffcc41c5d8672cb189a5788", + "x-ms-correlation-request-id": "ca519817-c976-44e8-8180-6e41b371f337", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "b5c9f629-ded1-4539-928a-510951bd4039", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080336Z:ca519817-c976-44e8-8180-6e41b371f337" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ab-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "767352d264bc3ae2f73ed308e95b8413", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aafb4636-9f04-494b-af0f-74a003ecc1b6", + "x-ms-client-request-id": "767352d264bc3ae2f73ed308e95b8413", + "x-ms-correlation-request-id": "65bcd2bb-2a4f-487a-943d-f95a1921f852", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "2b8f8359-5f48-4ef4-b692-389c4115330a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080337Z:65bcd2bb-2a4f-487a-943d-f95a1921f852" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ac-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92a6ef5934d1a697934582d0f0c5fa3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81664cd7-0752-4920-b712-5c40f8bc10a0", + "x-ms-client-request-id": "92a6ef5934d1a697934582d0f0c5fa3b", + "x-ms-correlation-request-id": "8c91624b-f4c9-47f4-9b77-9853874d38fb", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "005ec98c-5ae9-4d0d-af0d-2e6e9ac1ec8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080338Z:8c91624b-f4c9-47f4-9b77-9853874d38fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ad-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "739a8870d33bebf09e0d46be2c14db01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ec974f2-7a69-4f2f-94b2-68e7c9e703b4", + "x-ms-client-request-id": "739a8870d33bebf09e0d46be2c14db01", + "x-ms-correlation-request-id": "48d32466-90c7-454b-a5c8-980e98199b3a", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "43f129c0-9bb7-49ca-9956-2d802a060455", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080340Z:48d32466-90c7-454b-a5c8-980e98199b3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ae-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29725e02c4f49eb6bacde377e2114932", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c88aa4a-df9e-4933-9a4a-a90167064d25", + "x-ms-client-request-id": "29725e02c4f49eb6bacde377e2114932", + "x-ms-correlation-request-id": "1ba25d81-258d-4146-83d9-b2c389525550", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "d23f9c20-0276-4daa-adc7-dd836db78290", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080341Z:1ba25d81-258d-4146-83d9-b2c389525550" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6af-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6198974411c185d7febaf3c4eed9797e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c289ca20-6772-4f20-bd28-8bf4bd12d3c8", + "x-ms-client-request-id": "6198974411c185d7febaf3c4eed9797e", + "x-ms-correlation-request-id": "3d807dda-8ea7-4348-8741-5dfff7656694", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "a8f01238-f91a-4bbf-844f-a953bf3fc924", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080343Z:3d807dda-8ea7-4348-8741-5dfff7656694" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6b0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91ce806ad152ab46d1fbb86eef79098d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ffee57c-7422-4d38-b5a0-a41687f5426d", + "x-ms-client-request-id": "91ce806ad152ab46d1fbb86eef79098d", + "x-ms-correlation-request-id": "fa0a9cc2-9be1-40e2-8ad1-ddf7079a36be", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "9f2262b0-52dc-43cf-9da0-1cd63175922b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080344Z:fa0a9cc2-9be1-40e2-8ad1-ddf7079a36be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6b1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "947913c47a7cf14087ed2a39d1f2b0e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce159d83-8e21-4d79-94b7-131a5fed1303", + "x-ms-client-request-id": "947913c47a7cf14087ed2a39d1f2b0e1", + "x-ms-correlation-request-id": "0fabfe35-58a8-4095-a3df-16f1befd28be", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "94e6a0db-402b-412a-a1d6-80b9a448818a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080345Z:0fabfe35-58a8-4095-a3df-16f1befd28be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6b2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "610d6453b74273e051ec8fc558689585", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4acf229-1191-4f74-8c0b-bdeee066f186", + "x-ms-client-request-id": "610d6453b74273e051ec8fc558689585", + "x-ms-correlation-request-id": "585a0317-2e10-4dfb-9fff-f43e6a3ef5eb", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "dc2685be-0c23-4b87-b36a-1c496b809423", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080346Z:585a0317-2e10-4dfb-9fff-f43e6a3ef5eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6b3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "daff65b1e560f00240dd0a65a60cd9df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0430d4a7-34a4-4bc9-90df-41a337b1e916", + "x-ms-client-request-id": "daff65b1e560f00240dd0a65a60cd9df", + "x-ms-correlation-request-id": "978ddd75-3808-431e-bc4f-9c0fe2e2aeba", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "fd23eea8-3df5-4f28-ba3b-b23f53a3bd09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080348Z:978ddd75-3808-431e-bc4f-9c0fe2e2aeba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6b4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b1ad74ba76c0c4b3306438fea7a981e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9e6fd9e-901e-4d75-a68e-c5dc96062c44", + "x-ms-client-request-id": "8b1ad74ba76c0c4b3306438fea7a981e", + "x-ms-correlation-request-id": "c766391e-2506-453d-9329-32101e53be69", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "ca491f3f-a68f-4c88-a00d-749b9c2274cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080349Z:c766391e-2506-453d-9329-32101e53be69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6b5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b88a457d5f26e81621d2064ad7acc44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "253d93b6-2573-4bf6-8758-eabd12bada87", + "x-ms-client-request-id": "6b88a457d5f26e81621d2064ad7acc44", + "x-ms-correlation-request-id": "9bf50379-29cb-47ba-b087-e64e68993a1f", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "bb0c0f99-818e-40aa-9116-0a2229f1a835", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080350Z:9bf50379-29cb-47ba-b087-e64e68993a1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6b6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8179af120a4e09191af3a759a17205c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7cb49fb3-60af-40dc-bae4-bdc593608109", + "x-ms-client-request-id": "8179af120a4e09191af3a759a17205c5", + "x-ms-correlation-request-id": "68cb4660-2092-416d-b3b2-7efe89e6e30b", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "ad25601f-3e4a-4d81-9787-598f7510cc51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080352Z:68cb4660-2092-416d-b3b2-7efe89e6e30b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6b7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "010deb456d8476ed56ac284f87e65fb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "518cd22c-ac50-467d-9a84-103f195b3f93", + "x-ms-client-request-id": "010deb456d8476ed56ac284f87e65fb8", + "x-ms-correlation-request-id": "3e3113c6-d475-4e09-8f00-b363a040f214", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "78545141-bfd0-4023-a052-b8576d246f87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080353Z:3e3113c6-d475-4e09-8f00-b363a040f214" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6b8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a7cff3917014dd08b7e51fe2e27cdf0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3381fece-bea3-4fdd-8294-3e9ebd89e28f", + "x-ms-client-request-id": "3a7cff3917014dd08b7e51fe2e27cdf0", + "x-ms-correlation-request-id": "0e6f2cd7-be99-4a7f-bf7d-9bdde448176a", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "f18dbe6b-76b7-476d-ab0b-e013d8743fcf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080354Z:0e6f2cd7-be99-4a7f-bf7d-9bdde448176a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6b9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c11f5a17ca6da5bfc2032ba2e2c98234", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d95f56b2-bec5-4696-bd8e-d0d162df5e2a", + "x-ms-client-request-id": "c11f5a17ca6da5bfc2032ba2e2c98234", + "x-ms-correlation-request-id": "e0f1ae30-4683-42f4-9581-9e93cf244470", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "5af5bec3-5d2d-4e2c-8976-f7ab362aca4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080355Z:e0f1ae30-4683-42f4-9581-9e93cf244470" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ba-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a120ee94caf52dc41bc076051cee472f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d669449a-8cf3-409c-a1ba-d9744958e2b2", + "x-ms-client-request-id": "a120ee94caf52dc41bc076051cee472f", + "x-ms-correlation-request-id": "e7d42b93-d9c7-4fc6-801e-49c416c98079", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "d600e167-6209-47a1-bbdc-cfd24d9943cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080357Z:e7d42b93-d9c7-4fc6-801e-49c416c98079" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6bb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c3737de9dc66e4b40d777feec2e6ac1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a652d794-4489-44f8-961a-f4edc5a88db1", + "x-ms-client-request-id": "2c3737de9dc66e4b40d777feec2e6ac1", + "x-ms-correlation-request-id": "8f9e86c4-6f51-4d13-bac1-2a246ad76a4a", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "b060fa70-f301-440c-ab0f-c19c819e7e36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080358Z:8f9e86c4-6f51-4d13-bac1-2a246ad76a4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6bc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f6a1cfc2b064dfb95f1a6ac54b988d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:03:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8e1a3e3-6960-4639-be41-9f23a300faf0", + "x-ms-client-request-id": "3f6a1cfc2b064dfb95f1a6ac54b988d4", + "x-ms-correlation-request-id": "76639c45-1beb-4544-a00e-4cbb2d605a06", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "08243ca9-51a5-4028-bec2-bdae65f3e02e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080359Z:76639c45-1beb-4544-a00e-4cbb2d605a06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6bd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aac3fbbb5592f66ea2b1611d52c641ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "790eb064-9e30-4e4a-9afa-3c55791c6e3b", + "x-ms-client-request-id": "aac3fbbb5592f66ea2b1611d52c641ed", + "x-ms-correlation-request-id": "e98c42d8-4361-4c0b-b960-28ec7af76b0b", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "34ea622d-8034-413e-962c-c392de432320", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080401Z:e98c42d8-4361-4c0b-b960-28ec7af76b0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6be-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0009b4550883b3283cea96d4f79f1a86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "611bf914-47f0-4840-ad36-7e2556ce881a", + "x-ms-client-request-id": "0009b4550883b3283cea96d4f79f1a86", + "x-ms-correlation-request-id": "5ee8efd7-e48d-4c80-b279-24396f474962", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "650543a8-6e58-4b5c-8826-0fff32450fbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080402Z:5ee8efd7-e48d-4c80-b279-24396f474962" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6bf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f043a34fc06aa72fae749c54c9ddfacf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d77c3a9-f46d-4b91-9d14-db00c0c67441", + "x-ms-client-request-id": "f043a34fc06aa72fae749c54c9ddfacf", + "x-ms-correlation-request-id": "136fc656-7dd0-4c62-84a1-5f1191dae22d", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "f3f50681-fc87-460a-89aa-bde536cb1056", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080403Z:136fc656-7dd0-4c62-84a1-5f1191dae22d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6c0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a056b8af88b0b251d30f6da7be99ff03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3794c3bd-c104-4a56-90e4-7d9cc14d4fec", + "x-ms-client-request-id": "a056b8af88b0b251d30f6da7be99ff03", + "x-ms-correlation-request-id": "b6342f35-bd83-4348-bb26-7e9513fc1574", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "ba06a290-2205-41fc-8528-7ac02f25695c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080404Z:b6342f35-bd83-4348-bb26-7e9513fc1574" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6c1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afcedb97518395828561510e6bd3ea5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff813f24-7ce3-4550-a125-8503483f01e6", + "x-ms-client-request-id": "afcedb97518395828561510e6bd3ea5f", + "x-ms-correlation-request-id": "02608c82-da6f-455c-bd44-3d226fdcf261", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "e8e26e77-8591-47f7-85dc-0a6ff2a197c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080406Z:02608c82-da6f-455c-bd44-3d226fdcf261" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6c2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e24c7f07a48c7d552901c5b5287e814", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5777278-69b4-4bc4-84fe-8adc8708d8ed", + "x-ms-client-request-id": "3e24c7f07a48c7d552901c5b5287e814", + "x-ms-correlation-request-id": "b5791c5f-d161-406b-b63c-5365a7cf4a48", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "d1dca0fc-7c14-4b50-969b-3c5a40a05ca9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080407Z:b5791c5f-d161-406b-b63c-5365a7cf4a48" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6c3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edbd99754b0f5e4c36c11a4e364247ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ba66377-1dbb-4405-965d-f09eabe5519e", + "x-ms-client-request-id": "edbd99754b0f5e4c36c11a4e364247ff", + "x-ms-correlation-request-id": "2b969ab0-4654-4733-a1ce-48767213bf5b", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "80ec7276-b49b-47fa-960b-974667b257d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080408Z:2b969ab0-4654-4733-a1ce-48767213bf5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6c4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7b70e25c0751dbb06065cf3352742fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "497840c4-7e9a-485e-a2b5-f57ad32ed7b3", + "x-ms-client-request-id": "f7b70e25c0751dbb06065cf3352742fd", + "x-ms-correlation-request-id": "f2a06257-1911-4725-a6c5-5cd2f31813dd", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "5272fe70-a748-4822-b90c-db94c7af8526", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080409Z:f2a06257-1911-4725-a6c5-5cd2f31813dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6c5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1993d79fd16a54f7bc607875f86910f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "149fc701-49b1-4eb7-9d25-40166277a515", + "x-ms-client-request-id": "d1993d79fd16a54f7bc607875f86910f", + "x-ms-correlation-request-id": "ff5c5b4a-7dee-4ee3-82fd-5557f611ece0", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "470de2ab-62f4-4b54-950f-eefe32837921", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080411Z:ff5c5b4a-7dee-4ee3-82fd-5557f611ece0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6c6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44361d48f0cfb49fdda0e708ee59290f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d68c409-0790-4035-9b34-f4e939f0762f", + "x-ms-client-request-id": "44361d48f0cfb49fdda0e708ee59290f", + "x-ms-correlation-request-id": "99984b5a-f0dc-4b7c-bc78-15f9524d6f78", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "a040202d-f88d-458d-981e-b65e8fba9820", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080412Z:99984b5a-f0dc-4b7c-bc78-15f9524d6f78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6c7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8d51d7f76a928e9be127caeb833be7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "831091df-51a2-47c9-8e63-176a818a1b42", + "x-ms-client-request-id": "f8d51d7f76a928e9be127caeb833be7f", + "x-ms-correlation-request-id": "85dd392a-7b30-4676-8c3a-e56651b16af1", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "669634dc-cdc1-49cd-a6e7-7debbcfdc729", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080413Z:85dd392a-7b30-4676-8c3a-e56651b16af1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6c8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17aa4d75fdf1882e9de4f3761547b621", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c40c01f-e325-468a-8f61-2a2a8a3a37b4", + "x-ms-client-request-id": "17aa4d75fdf1882e9de4f3761547b621", + "x-ms-correlation-request-id": "4d66426c-dcba-49f1-84b1-3528392bd5c8", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "a5876dd0-33e8-453d-a245-956094467301", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080415Z:4d66426c-dcba-49f1-84b1-3528392bd5c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6c9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4208f89d98b1d266340d86bc74f1fba9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd0ecae6-342a-4222-b812-06c68bf834bf", + "x-ms-client-request-id": "4208f89d98b1d266340d86bc74f1fba9", + "x-ms-correlation-request-id": "69eff240-720e-4068-b14d-ac9abc397cf0", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "2ac8c48d-7255-4ec8-95ef-52e9bba1d0db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080416Z:69eff240-720e-4068-b14d-ac9abc397cf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ca-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a19367e211ae811dee4c5bc482721276", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "641caca4-5edf-4096-95dd-af9dc2bc756d", + "x-ms-client-request-id": "a19367e211ae811dee4c5bc482721276", + "x-ms-correlation-request-id": "1a92aabe-d5cc-4c56-b9ab-de1f41b8664d", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "a0db5262-d2ed-4401-84eb-8fa03de3cf19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080417Z:1a92aabe-d5cc-4c56-b9ab-de1f41b8664d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6cb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0115a5b7b2bdccde6d8e3e3767113ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b3d1891-2c2d-4831-bee4-480d5712dadd", + "x-ms-client-request-id": "c0115a5b7b2bdccde6d8e3e3767113ac", + "x-ms-correlation-request-id": "801e78f3-eed9-49ea-a10f-a36d3133fecd", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "d976a893-aeca-476a-8c8b-d1a5959db90c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080418Z:801e78f3-eed9-49ea-a10f-a36d3133fecd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6cc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad9449e815b38c73da8653653da250c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0644a9c-f8e4-4aef-96ae-d056373a65dc", + "x-ms-client-request-id": "ad9449e815b38c73da8653653da250c1", + "x-ms-correlation-request-id": "53908582-ee05-4d0c-b5cf-14f499cef750", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "c60bab72-fd0a-4e01-8f94-bab91186eaed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080420Z:53908582-ee05-4d0c-b5cf-14f499cef750" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6cd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a610ffb3bdf667e99b6bad62d3a0b7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "beda656b-f3e2-423a-b479-759d981ff8d7", + "x-ms-client-request-id": "1a610ffb3bdf667e99b6bad62d3a0b7d", + "x-ms-correlation-request-id": "9194aa00-9a16-467d-ba3e-1baad6e89af2", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "03c3098a-6cda-4906-936a-c0d2645f0d35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080421Z:9194aa00-9a16-467d-ba3e-1baad6e89af2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ce-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38dbae3864de45c3e784e5a528689f44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce871bdf-3f2c-4765-855c-dd1d8c9ecd18", + "x-ms-client-request-id": "38dbae3864de45c3e784e5a528689f44", + "x-ms-correlation-request-id": "f4c38db1-7594-4390-a005-cc740c4d2539", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "37f5108e-578f-46e6-88a4-91a10f1c2537", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080422Z:f4c38db1-7594-4390-a005-cc740c4d2539" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6cf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67e72288f910adcccb2e14fc5a9d5fa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "449c9de0-a753-486d-b24d-07bb25abf80e", + "x-ms-client-request-id": "67e72288f910adcccb2e14fc5a9d5fa0", + "x-ms-correlation-request-id": "efbaa1f4-14d5-4297-9f62-f2537f9c956b", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "b6e82de7-8aec-43f5-a169-02d540ba2ca2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080424Z:efbaa1f4-14d5-4297-9f62-f2537f9c956b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6d0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e2cd57b17c697e34c1b325a56d83d31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fcab37fd-785e-4395-9f8d-e8c4986e65f4", + "x-ms-client-request-id": "8e2cd57b17c697e34c1b325a56d83d31", + "x-ms-correlation-request-id": "12183a72-f92c-49d4-823b-256869de4299", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "b87883a9-fb2d-4ca0-bbbd-fb137028cba1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080425Z:12183a72-f92c-49d4-823b-256869de4299" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6d1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a4d7617a4523e6de12e6caf50c6eb4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "177fb994-2e4f-4f56-9188-ed5193359685", + "x-ms-client-request-id": "0a4d7617a4523e6de12e6caf50c6eb4a", + "x-ms-correlation-request-id": "d5a94091-3a8b-48de-869c-e8a77433c5c4", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "f6ec4fc0-fbf9-437d-b757-a4afcbb34643", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080426Z:d5a94091-3a8b-48de-869c-e8a77433c5c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6d2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "532a4425103c707e3f501af5c77156f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c72a81da-64ba-49d9-bb13-05ba9ce619e2", + "x-ms-client-request-id": "532a4425103c707e3f501af5c77156f3", + "x-ms-correlation-request-id": "aca4d18e-d61d-4b43-87e1-82587f03513e", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "8e8d6347-53b4-4325-9bfd-ef62cc270ee6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080428Z:aca4d18e-d61d-4b43-87e1-82587f03513e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6d3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4e5e2f1544fd74d68edad97ab334686", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4933ae32-1115-4474-a725-ad7096cd4940", + "x-ms-client-request-id": "e4e5e2f1544fd74d68edad97ab334686", + "x-ms-correlation-request-id": "cf93f8be-acf2-4346-8f71-8a9852079db0", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "059d9f39-0d54-4e94-9b37-75b9045b174d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080429Z:cf93f8be-acf2-4346-8f71-8a9852079db0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6d4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1134e830e9ad06f4f8ddcb028977776f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0dc89bdc-238e-40a0-951b-971d7bc3c316", + "x-ms-client-request-id": "1134e830e9ad06f4f8ddcb028977776f", + "x-ms-correlation-request-id": "44fd5eec-c1cf-47d5-a831-0d769b5bdae3", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "37fffda0-12c0-47a3-9bc5-5845764573ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080430Z:44fd5eec-c1cf-47d5-a831-0d769b5bdae3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6d5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6dbe78d806e0d1faf753ea4e63e6c50b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4807aa6-678d-4bfd-a16c-67dc05122d03", + "x-ms-client-request-id": "6dbe78d806e0d1faf753ea4e63e6c50b", + "x-ms-correlation-request-id": "bcd2b5a7-0d47-40a6-85ed-2e2c081f9f20", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "2c3487b3-8bed-42f0-8041-a44bf02e56eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080432Z:bcd2b5a7-0d47-40a6-85ed-2e2c081f9f20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6d6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dec59409453c0745eedfeb72894a4df0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f92d79e-fe76-41d0-ae1c-f88a1f4e4115", + "x-ms-client-request-id": "dec59409453c0745eedfeb72894a4df0", + "x-ms-correlation-request-id": "c2c496fc-770d-4c84-8a99-76f376ecda2e", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "8ae85e5f-d5f2-4edb-af04-5d965f04e968", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080433Z:c2c496fc-770d-4c84-8a99-76f376ecda2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6d7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32be3d76d97429a5ee63195affa6a311", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94ad162d-be70-4b75-ad7e-4094b23d07ff", + "x-ms-client-request-id": "32be3d76d97429a5ee63195affa6a311", + "x-ms-correlation-request-id": "b796f975-17e3-4a71-8e6a-956e62715187", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "c9ef40f0-07c3-443b-af61-3eea435b95eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080434Z:b796f975-17e3-4a71-8e6a-956e62715187" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6d8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4f8bf1798b2933232b77f011b8748ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e6c4a6d-385f-4609-97eb-586325302e3c", + "x-ms-client-request-id": "f4f8bf1798b2933232b77f011b8748ac", + "x-ms-correlation-request-id": "3de005c4-e2a1-466b-a569-672916a46ec9", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "b591fd38-9e61-4b9b-892a-ce9d2ed499e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080435Z:3de005c4-e2a1-466b-a569-672916a46ec9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6d9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25d8fa0592273096ee9cf0d92beb0748", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "967abb79-fdad-4ac6-b7d8-6d9e09944c03", + "x-ms-client-request-id": "25d8fa0592273096ee9cf0d92beb0748", + "x-ms-correlation-request-id": "a2835768-b94b-455b-a170-aef57f11449d", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "18b5b23c-5fc3-4df1-985d-48dcc324582d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080437Z:a2835768-b94b-455b-a170-aef57f11449d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6da-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c95ada3b5852dd3d0a2bffbd5aa40e66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a15d8bce-9a97-405b-a05f-79cae3cf01a2", + "x-ms-client-request-id": "c95ada3b5852dd3d0a2bffbd5aa40e66", + "x-ms-correlation-request-id": "389884cd-42c9-4763-aa44-f17533163085", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "db14bf54-7809-4456-947c-47821c9300a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080438Z:389884cd-42c9-4763-aa44-f17533163085" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6db-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05546d1b7dcd85e928c80616a8596747", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eaccb26e-90ed-4726-819e-09536dc468ec", + "x-ms-client-request-id": "05546d1b7dcd85e928c80616a8596747", + "x-ms-correlation-request-id": "d5950f32-0514-4434-9767-a42eec7f7a09", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "f6d3b465-9447-4ea8-a0aa-687ecd0c05c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080439Z:d5950f32-0514-4434-9767-a42eec7f7a09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6dc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41c537af7e2dac5abcfb1bfb92d9d64a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7fc5b2fa-ab62-4a1e-b793-d8ca8a07e52a", + "x-ms-client-request-id": "41c537af7e2dac5abcfb1bfb92d9d64a", + "x-ms-correlation-request-id": "fa6a81a9-1191-41ab-8ef8-68cc01d1214a", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "585abdd1-b7d3-411a-8bde-3e8ef4e68b2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080441Z:fa6a81a9-1191-41ab-8ef8-68cc01d1214a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6dd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bebe8a8e0297be7af0d5a089522734b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e30aea0b-cb7a-4a3f-90a3-7d936e263e6b", + "x-ms-client-request-id": "bebe8a8e0297be7af0d5a089522734b1", + "x-ms-correlation-request-id": "6dfb6bc7-af62-42d4-856e-855a309ebaa3", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "6c0bd5f1-f49a-485d-82d2-4927fdfcf3e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080442Z:6dfb6bc7-af62-42d4-856e-855a309ebaa3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6de-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "220eb8c4ccde9c3912a748d262edf24f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b54e0ff-f991-4fc8-83bd-542241944dce", + "x-ms-client-request-id": "220eb8c4ccde9c3912a748d262edf24f", + "x-ms-correlation-request-id": "2a8652f3-88e4-4fad-952b-2bf7c9c69a34", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "aba265cb-29e9-408e-adc8-75191b90df80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080443Z:2a8652f3-88e4-4fad-952b-2bf7c9c69a34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6df-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e88bbf2a99bacafbc075057ddd15a94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7a2b437-9be0-4773-8d2b-032867a411df", + "x-ms-client-request-id": "1e88bbf2a99bacafbc075057ddd15a94", + "x-ms-correlation-request-id": "065adcaf-5c65-42db-a5a0-0dda41d94911", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "2c6bf3de-8268-4b67-a9cb-737066f4781e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080444Z:065adcaf-5c65-42db-a5a0-0dda41d94911" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6e0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da376ac6b3cbc16c5021abefbaa75c02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0880ac8a-79a0-4e50-b30d-086b10062575", + "x-ms-client-request-id": "da376ac6b3cbc16c5021abefbaa75c02", + "x-ms-correlation-request-id": "06c2c9d5-d7ad-4c66-b62d-820b02854d61", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "59cccea4-3154-41eb-bf73-ea9631392ea1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080446Z:06c2c9d5-d7ad-4c66-b62d-820b02854d61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6e1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "979651e3169e1a15086165d67be1be41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7fa5a13-65b4-40dd-9010-a697777bee5b", + "x-ms-client-request-id": "979651e3169e1a15086165d67be1be41", + "x-ms-correlation-request-id": "8b0c4a4a-8992-4be3-b103-d3a92b381bb8", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "94fc152d-d7a9-4f3e-9b86-c6735f3c02a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080447Z:8b0c4a4a-8992-4be3-b103-d3a92b381bb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6e2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f70cb34d18b63f834ec7cd79fec0f214", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55215778-0d40-46ad-9ef0-bc609755f86b", + "x-ms-client-request-id": "f70cb34d18b63f834ec7cd79fec0f214", + "x-ms-correlation-request-id": "da9e7064-844a-4d0f-a07f-cebf4f47a27a", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "f3bc71d1-34f9-463e-a008-16b82ecae15f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080448Z:da9e7064-844a-4d0f-a07f-cebf4f47a27a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6e3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c744eabc23ab0f6541dd1694d95456f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "82dc9096-c2fc-4d02-bf33-ef312abcf81b", + "x-ms-client-request-id": "8c744eabc23ab0f6541dd1694d95456f", + "x-ms-correlation-request-id": "ffa417a8-de16-4a3d-828d-93c91b30209d", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "f657c8ae-2e20-4888-858f-84ae75d5e00a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080449Z:ffa417a8-de16-4a3d-828d-93c91b30209d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6e4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06a26963649bca4cce5748d7489c1b48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "03f9a7a5-e519-46a0-8b5f-8a53bd8b8a87", + "x-ms-client-request-id": "06a26963649bca4cce5748d7489c1b48", + "x-ms-correlation-request-id": "8d153d6e-5b2f-4da2-b946-c463cd2650c4", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "189766ed-f567-4afe-b683-f1eca747fa15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080451Z:8d153d6e-5b2f-4da2-b946-c463cd2650c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6e5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d2b516f326c8b07bd5ca3984619f1b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a74d9a1-20bf-4ca3-94df-db7beab7b07b", + "x-ms-client-request-id": "2d2b516f326c8b07bd5ca3984619f1b9", + "x-ms-correlation-request-id": "cc15fb6c-b16c-4d21-b23a-7c19754f53be", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "150346a5-22b9-4606-9d23-ca0e3743efa9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080452Z:cc15fb6c-b16c-4d21-b23a-7c19754f53be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6e6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94155d81ec1e467902a9bde2791e67b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60ad529e-6ec9-4886-9533-79b8cfdd29cf", + "x-ms-client-request-id": "94155d81ec1e467902a9bde2791e67b7", + "x-ms-correlation-request-id": "058bdb98-c529-48c7-8956-fa5777328665", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "87b73166-c738-4777-b507-7bfb1c9edcb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080453Z:058bdb98-c529-48c7-8956-fa5777328665" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6e7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcfa8901186931026216483fc0b384b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ba10cfe-c527-4494-bed6-9d5549de1c2d", + "x-ms-client-request-id": "fcfa8901186931026216483fc0b384b4", + "x-ms-correlation-request-id": "a00137a6-0a05-4fac-a017-f4119d45dda6", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "5f7c731c-ac19-428e-a850-34766f2b8e29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080455Z:a00137a6-0a05-4fac-a017-f4119d45dda6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6e8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea558f6687868329d7e52ac27424119f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71ed6018-055f-4e47-a608-e58513ea6c96", + "x-ms-client-request-id": "ea558f6687868329d7e52ac27424119f", + "x-ms-correlation-request-id": "80f51f75-2ae0-4de4-a4e5-288671ca7111", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "fb84feec-67b8-47f1-8dff-e7a8176fa359", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080456Z:80f51f75-2ae0-4de4-a4e5-288671ca7111" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6e9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd96ecf4f51f69505ae43107a339864e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83177357-9bdb-4bcb-a455-214d435bb78b", + "x-ms-client-request-id": "bd96ecf4f51f69505ae43107a339864e", + "x-ms-correlation-request-id": "8faf1f90-770e-42dc-b477-5edd5e97fe2e", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "7cbd2a9c-d261-46c6-b4d2-be09711d66f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080457Z:8faf1f90-770e-42dc-b477-5edd5e97fe2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ea-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea7c09257cc879305f772484ed40bc3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:04:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b3801767-4e9d-4c48-a70f-d4dea81579a9", + "x-ms-client-request-id": "ea7c09257cc879305f772484ed40bc3e", + "x-ms-correlation-request-id": "9415270c-8a0e-4376-865a-7aca12e5ab28", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "fd6c2cd4-a82a-46b9-aca8-1c12d0f9131a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080458Z:9415270c-8a0e-4376-865a-7aca12e5ab28" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6eb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d44ba905c71d70943feb8fa25622df9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "848af598-82a6-4e3b-8af0-772bc33be95c", + "x-ms-client-request-id": "d44ba905c71d70943feb8fa25622df9e", + "x-ms-correlation-request-id": "872ab39b-59a7-401b-9dea-6cd4a9b9afad", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "adf7a797-3b56-49e5-9de2-659b1fe00a3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080500Z:872ab39b-59a7-401b-9dea-6cd4a9b9afad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ec-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a9ddb5e26a877d6bb1c5da7d0cb7c1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "551c4cb2-1f9c-4338-9bba-52f74075f0db", + "x-ms-client-request-id": "6a9ddb5e26a877d6bb1c5da7d0cb7c1a", + "x-ms-correlation-request-id": "d527e7a5-99f1-43d4-8d8e-065a8e81da5e", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "f53cdc95-4fdf-42da-900b-25e1bbf489fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080501Z:d527e7a5-99f1-43d4-8d8e-065a8e81da5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ed-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa01f328b1ee5d31740babdded8e233c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "febdf3da-7773-4a2c-993f-878260690c17", + "x-ms-client-request-id": "fa01f328b1ee5d31740babdded8e233c", + "x-ms-correlation-request-id": "fb18b311-8c9d-44d9-93c8-ae6cb71e2546", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "ebbe6fb1-8ab6-4b78-8bb5-93a5d69d9ed2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080502Z:fb18b311-8c9d-44d9-93c8-ae6cb71e2546" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ee-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1125869851a2df96d2d3180069ed9f73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b612bd2-dee0-4ddc-8a04-1d0ebb017396", + "x-ms-client-request-id": "1125869851a2df96d2d3180069ed9f73", + "x-ms-correlation-request-id": "7a2ca63f-ab69-4167-a629-5723393d9301", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "a1996b2c-674f-4ff7-8507-9c3808c8a23b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080504Z:7a2ca63f-ab69-4167-a629-5723393d9301" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ef-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6279746fe420adafaa3ff59c7af98a2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e821838-2c99-4dc6-ae9b-d8c030b9d849", + "x-ms-client-request-id": "6279746fe420adafaa3ff59c7af98a2d", + "x-ms-correlation-request-id": "83cbe45f-e227-43e3-8e77-036732bc79f2", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "4761f3b4-9ca0-4013-8be5-df809587e38c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080505Z:83cbe45f-e227-43e3-8e77-036732bc79f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6f0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a0f21f86aa5d6785c22271b9931f487", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7162d314-e4fa-4ab5-92c8-b5c31c8c2072", + "x-ms-client-request-id": "4a0f21f86aa5d6785c22271b9931f487", + "x-ms-correlation-request-id": "3d2d3e58-7dcd-4e1f-8d78-3120ba871486", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "676232c1-d2d9-4e6f-a908-2549d284623a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080506Z:3d2d3e58-7dcd-4e1f-8d78-3120ba871486" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6f1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "786d386cc014b41bd67867625bfa64d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3171a3e0-e2c7-4f6a-9623-b556dfb29602", + "x-ms-client-request-id": "786d386cc014b41bd67867625bfa64d9", + "x-ms-correlation-request-id": "1147ebec-161e-4d6f-938c-3b3f508baa63", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "f9606247-59b2-4fbb-8a25-2ec368a063cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080507Z:1147ebec-161e-4d6f-938c-3b3f508baa63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6f2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4807eb4854dd05cdfca306febc941479", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fd0a934-26c6-492b-bbcb-80156c1072c3", + "x-ms-client-request-id": "4807eb4854dd05cdfca306febc941479", + "x-ms-correlation-request-id": "b4b22331-b042-411c-aca3-4d506ff05786", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "569ea4cf-d3a4-4bf4-a7c0-63c537f1bd07", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080509Z:b4b22331-b042-411c-aca3-4d506ff05786" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6f3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "422f6e4b128b3818055b742d03157a62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cfad0d34-98ef-46a5-a4db-9f603672c0a1", + "x-ms-client-request-id": "422f6e4b128b3818055b742d03157a62", + "x-ms-correlation-request-id": "ebd1ecb1-e087-40f6-80f9-50b5f39e6082", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "bd14ad49-0c8a-4651-8a23-c933ac1bcf93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080510Z:ebd1ecb1-e087-40f6-80f9-50b5f39e6082" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6f4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "add24ebdab2917aa6a687b70ba1df741", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61b3765c-e43d-408c-8fd4-a5240273bdf8", + "x-ms-client-request-id": "add24ebdab2917aa6a687b70ba1df741", + "x-ms-correlation-request-id": "d76db380-ec20-484c-b155-e09881d5c519", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "20294835-14ac-407e-9242-c47cd6e2969f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080511Z:d76db380-ec20-484c-b155-e09881d5c519" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6f5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed17ee6422ca354ed3cf4382dfa001e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ec4b2ad-140c-4ac8-ab05-519a78097256", + "x-ms-client-request-id": "ed17ee6422ca354ed3cf4382dfa001e6", + "x-ms-correlation-request-id": "5dac453d-0613-4e84-8ec1-69c2f04df52c", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "646ae9f6-5b1c-4d4e-8cb8-bcc1ba7cf23f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080513Z:5dac453d-0613-4e84-8ec1-69c2f04df52c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6f6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e40a32966c29f4fc318d72296a77de7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3b3f6f6-5ce9-4958-ab55-b3737eede174", + "x-ms-client-request-id": "6e40a32966c29f4fc318d72296a77de7", + "x-ms-correlation-request-id": "d26e2c81-0149-4d28-a521-dba198c6c8a4", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "11de547e-c332-4584-98b1-717641eee3a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080514Z:d26e2c81-0149-4d28-a521-dba198c6c8a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6f7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15c833638cfd9b98ff9cd95a682737ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33ff7fa1-3c03-4af7-9e44-aebc98dcd126", + "x-ms-client-request-id": "15c833638cfd9b98ff9cd95a682737ca", + "x-ms-correlation-request-id": "e4e37235-488a-43e0-bf85-c7ae74160f15", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "8fca1577-17c5-4367-acab-b8b304fe701c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080515Z:e4e37235-488a-43e0-bf85-c7ae74160f15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6f8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1747946689ddfd7f9e7829b24a2b9e2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b408d17-d3a5-448d-b47f-c832eeaeac90", + "x-ms-client-request-id": "1747946689ddfd7f9e7829b24a2b9e2b", + "x-ms-correlation-request-id": "e4809549-110c-4bb4-bc24-0823c80e6f31", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "0d05228a-41ae-4cdc-9a5b-790124850c83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080517Z:e4809549-110c-4bb4-bc24-0823c80e6f31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6f9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac1e5b51ecd79ce80ba46e258cf4369c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4dc86a0c-7be5-4200-b13a-01e1dbeede77", + "x-ms-client-request-id": "ac1e5b51ecd79ce80ba46e258cf4369c", + "x-ms-correlation-request-id": "a139c723-7af6-4bba-b1ae-e10b93db99e4", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "076fcf08-2cd3-4980-aab5-e70df9789bbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080518Z:a139c723-7af6-4bba-b1ae-e10b93db99e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6fa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02bb0de0655fda0ab4cb768562e651d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e500a3e-fb52-4159-b5a0-02a019779a4e", + "x-ms-client-request-id": "02bb0de0655fda0ab4cb768562e651d4", + "x-ms-correlation-request-id": "861c2f63-d726-481f-9f48-d86af73f9539", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "59887d3d-3a33-40be-a9ae-3a7e4269ef1b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080519Z:861c2f63-d726-481f-9f48-d86af73f9539" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6fb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c08aefd8b097af3abaa0c381a5970aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f99cf343-16af-4a2e-b130-0e73cc3085e0", + "x-ms-client-request-id": "0c08aefd8b097af3abaa0c381a5970aa", + "x-ms-correlation-request-id": "855ec647-cafe-43c8-89ac-c4eb7507c0a2", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "06cdbb96-ca8e-40d6-9f21-2acd06c2c520", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080520Z:855ec647-cafe-43c8-89ac-c4eb7507c0a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6fc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3dd18d419c6feccb5144f70b76633924", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e28cbcc4-2a04-4ccc-a79c-86c6f2945c8f", + "x-ms-client-request-id": "3dd18d419c6feccb5144f70b76633924", + "x-ms-correlation-request-id": "765f369a-779c-48df-b81e-d95bf29d32d5", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "c1943f9f-f502-42d6-a036-878b32467db5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080522Z:765f369a-779c-48df-b81e-d95bf29d32d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6fd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de279a522aeb5592194156b559d1bf5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2872b62b-02e4-4bf3-826f-5e86357f63b2", + "x-ms-client-request-id": "de279a522aeb5592194156b559d1bf5a", + "x-ms-correlation-request-id": "ac86e5f0-219e-44e4-9863-54f9b70d96e0", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "524a7ce8-52c4-450e-898c-ae558a176a56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080523Z:ac86e5f0-219e-44e4-9863-54f9b70d96e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6fe-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d544cb5a14146064e21cbac593e80348", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32218ad5-fb1c-432c-8a68-d636dd9d35fc", + "x-ms-client-request-id": "d544cb5a14146064e21cbac593e80348", + "x-ms-correlation-request-id": "83a8f642-4b0c-4657-845a-24027e150dd5", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "24e96c2d-1485-4571-9252-81de3f414dae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080524Z:83a8f642-4b0c-4657-845a-24027e150dd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f6ff-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80e6e770913217befa7b232e46169280", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d930a47-2cfb-4181-aef6-c8864b2b91f6", + "x-ms-client-request-id": "80e6e770913217befa7b232e46169280", + "x-ms-correlation-request-id": "afe265dc-c14d-428d-99aa-832d695f5d4d", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "f0fcdc58-c13c-404e-a12b-d960de93d99b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080526Z:afe265dc-c14d-428d-99aa-832d695f5d4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f700-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aab19c84641f3e1036c6fccf6fcdc231", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0eecd9c-9ca5-4c9b-b0ca-ca21b21da51f", + "x-ms-client-request-id": "aab19c84641f3e1036c6fccf6fcdc231", + "x-ms-correlation-request-id": "151dc798-b553-4721-8f5c-2b788093cc95", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "1546b77f-c44a-4001-8a97-887e461f6fff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080527Z:151dc798-b553-4721-8f5c-2b788093cc95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f701-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71440d3e3febc8280d2cda98f0361acb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5539c7a-7d90-425f-a486-ddf3f897e00a", + "x-ms-client-request-id": "71440d3e3febc8280d2cda98f0361acb", + "x-ms-correlation-request-id": "35fee9df-d841-420b-bfaa-a06469a19f4e", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "03421a38-02d3-4385-8047-54d3f3926e5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080528Z:35fee9df-d841-420b-bfaa-a06469a19f4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f702-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6403a8958370c29d6a74a6b95efa72c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1931683c-5433-47da-9613-b59a80eec54b", + "x-ms-client-request-id": "f6403a8958370c29d6a74a6b95efa72c", + "x-ms-correlation-request-id": "e0888b66-27ad-416c-aefe-cf93a864ff20", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "fb93743c-7a06-4dd8-b6cd-937df08b0d45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080529Z:e0888b66-27ad-416c-aefe-cf93a864ff20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f703-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39f0f2b920d2459474e89df28a774d00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dca9dbee-64bf-4317-945f-d146ece73d86", + "x-ms-client-request-id": "39f0f2b920d2459474e89df28a774d00", + "x-ms-correlation-request-id": "2b2129de-885d-4275-a70b-7f1a986284f3", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "cc53ed98-9fcf-44ff-9068-e8d61a341995", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080531Z:2b2129de-885d-4275-a70b-7f1a986284f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f704-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "344531accc8de5fae3379a43f5bd331e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a06ede5-d8b3-4560-a3e8-68c81cf8cc6b", + "x-ms-client-request-id": "344531accc8de5fae3379a43f5bd331e", + "x-ms-correlation-request-id": "3b98b477-1ef5-415c-b2d4-761408a88472", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "c76ee25d-69a3-4814-b4f5-17c261e51097", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080532Z:3b98b477-1ef5-415c-b2d4-761408a88472" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f705-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fedfad85e04669f8a6fb824ebb37815f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f41aa9e9-f739-4fb0-bd3c-8c13d83f2601", + "x-ms-client-request-id": "fedfad85e04669f8a6fb824ebb37815f", + "x-ms-correlation-request-id": "70d68c81-0129-459c-ac2b-0fc9e4762e4d", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "4dbf64fb-117c-464a-8cde-ee54604fdac0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080533Z:70d68c81-0129-459c-ac2b-0fc9e4762e4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f706-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63bf495a73a9ed9ff80a559a86504fb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9aa59ef1-46c9-4095-a1fd-be697736ff04", + "x-ms-client-request-id": "63bf495a73a9ed9ff80a559a86504fb6", + "x-ms-correlation-request-id": "a3734aaa-bd9c-4293-8af0-07f4a7805048", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "5b8dd6c6-d5d7-4cdc-a8b6-e41fd3e7a9a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080535Z:a3734aaa-bd9c-4293-8af0-07f4a7805048" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f707-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc6c7eb44f98cbba38dc8e924aab29ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30593cff-f171-4549-9c62-7849407e0c40", + "x-ms-client-request-id": "dc6c7eb44f98cbba38dc8e924aab29ac", + "x-ms-correlation-request-id": "e046e0c2-1689-4c2b-b81d-57035ffefe2a", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "eec73786-6033-48b7-a154-f65e0cd8d1ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080536Z:e046e0c2-1689-4c2b-b81d-57035ffefe2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f708-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abe93bb6d0fe12740ef1053b8a5de255", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "710947f6-7f9d-4da1-a709-46e10a625361", + "x-ms-client-request-id": "abe93bb6d0fe12740ef1053b8a5de255", + "x-ms-correlation-request-id": "c7c4278e-8d36-4f8d-8648-58c0d32b074f", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "ddc0b788-ba0f-4338-ac05-97497b18e96c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080537Z:c7c4278e-8d36-4f8d-8648-58c0d32b074f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f709-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c9acbaba5ca0ac68ff32acde40da34c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab371412-2869-46e6-b7ff-d653f8c46778", + "x-ms-client-request-id": "3c9acbaba5ca0ac68ff32acde40da34c", + "x-ms-correlation-request-id": "a99b2fcb-6f98-4d02-a17a-91e76af85f8e", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "40350fe2-5100-4f0b-bba8-d96fe76d8373", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080539Z:a99b2fcb-6f98-4d02-a17a-91e76af85f8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f70a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ae4a9e1a467e4b80a5acea7497e40db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9832931d-b442-4924-be55-7abc1e2a9aeb", + "x-ms-client-request-id": "4ae4a9e1a467e4b80a5acea7497e40db", + "x-ms-correlation-request-id": "7a1ef32d-8b50-415c-9d8a-e6e2b7101b39", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "ce027594-8636-4c7e-b050-2a39b445299a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080540Z:7a1ef32d-8b50-415c-9d8a-e6e2b7101b39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f70b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ee639f9ec1011e175de1b0ba5a72d00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f1694e8-35b7-445e-8222-69efae237d89", + "x-ms-client-request-id": "7ee639f9ec1011e175de1b0ba5a72d00", + "x-ms-correlation-request-id": "3daf7692-4308-4b4f-b06b-9ec38ac9d707", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "977e1669-1da9-44b2-9947-13a9edc50ee9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080541Z:3daf7692-4308-4b4f-b06b-9ec38ac9d707" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f70c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e15ab94e987807ed13b6326fd61fc111", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f06ffe9d-a667-41bb-8312-a4040fead90f", + "x-ms-client-request-id": "e15ab94e987807ed13b6326fd61fc111", + "x-ms-correlation-request-id": "fe731cc7-4cd5-43a9-8f44-6a65ca375025", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "f347526f-1f56-4d24-8a16-c7a591dac68d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080542Z:fe731cc7-4cd5-43a9-8f44-6a65ca375025" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f70d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abd34fb22426f43bc8d3d48988ac3f62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fce0935b-ad2c-49d2-98c1-c64e29db413a", + "x-ms-client-request-id": "abd34fb22426f43bc8d3d48988ac3f62", + "x-ms-correlation-request-id": "1ca347e8-3b87-4e14-a160-5491f2a14a8a", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "cbb3808e-1333-4777-9160-9ead3aab370c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080544Z:1ca347e8-3b87-4e14-a160-5491f2a14a8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f70e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9058cd2d5f2460624bdf6a5aba713a56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a02685d2-5eb8-47ea-807d-c6ace9b0fd3c", + "x-ms-client-request-id": "9058cd2d5f2460624bdf6a5aba713a56", + "x-ms-correlation-request-id": "e6c5458f-87c3-46d6-8c3d-c6d6d5af5156", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "8bf41208-8bb5-4df7-b24b-41da4a59b93e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080545Z:e6c5458f-87c3-46d6-8c3d-c6d6d5af5156" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f70f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55580a1c81d32ada7d6618a5c4647e66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "313cb8ce-d9a1-4255-bcda-4d0288672604", + "x-ms-client-request-id": "55580a1c81d32ada7d6618a5c4647e66", + "x-ms-correlation-request-id": "31c02e80-28d4-49a9-be24-11026b518255", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "23649a68-b8a2-46d1-96e0-764a9a866136", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080547Z:31c02e80-28d4-49a9-be24-11026b518255" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f710-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0942d07731c652eced736047b9e03956", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b77083f-c410-4c3c-b61e-3d478a6a4e0b", + "x-ms-client-request-id": "0942d07731c652eced736047b9e03956", + "x-ms-correlation-request-id": "32973340-6754-49ca-823b-639254a6d4e6", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "1487ee53-fde8-4d1e-add7-739f4221f945", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080548Z:32973340-6754-49ca-823b-639254a6d4e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f711-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d6c7d98e954ab8ff32e12be46bc9ce6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39d5d58f-5c8e-4855-916c-52a5e581b93e", + "x-ms-client-request-id": "7d6c7d98e954ab8ff32e12be46bc9ce6", + "x-ms-correlation-request-id": "ae1ae3ae-9f2d-4093-ae3f-477795ab537d", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "734bf2f9-1a17-4beb-8bbb-66b829d2f7d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080549Z:ae1ae3ae-9f2d-4093-ae3f-477795ab537d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f712-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eae30460312feb8f1e0568602192709c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da0a4665-9517-4514-bbec-bc85e4b14219", + "x-ms-client-request-id": "eae30460312feb8f1e0568602192709c", + "x-ms-correlation-request-id": "fc317a21-3d22-408e-9c7c-174f1f9d1ff4", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "30fcd9b8-d665-4e01-a781-2343187fbde2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080551Z:fc317a21-3d22-408e-9c7c-174f1f9d1ff4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f713-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "460cc22c00f88d12419715981e2e0c30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f66ed93-9265-430d-8079-c5b4c4810160", + "x-ms-client-request-id": "460cc22c00f88d12419715981e2e0c30", + "x-ms-correlation-request-id": "ac38da71-bf96-4b93-98d2-74dfb4357a94", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "8f1e6403-743f-4ea7-b20c-6ff299eb4425", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080552Z:ac38da71-bf96-4b93-98d2-74dfb4357a94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f714-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5e679d64ffd6727ee805f4e802e8961", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf07666d-99d1-4731-88b7-29a53744a3b8", + "x-ms-client-request-id": "b5e679d64ffd6727ee805f4e802e8961", + "x-ms-correlation-request-id": "a09c5c83-5243-4c62-87ad-c011246e2621", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "5284c3a5-d68f-4911-9f2c-98158da39c5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080553Z:a09c5c83-5243-4c62-87ad-c011246e2621" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f715-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "849176be56b05feef156a9981bf7cdef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d1623fff-fd50-4cfc-af54-a28bcd349bdd", + "x-ms-client-request-id": "849176be56b05feef156a9981bf7cdef", + "x-ms-correlation-request-id": "30f4e866-bd02-4be5-9dbc-7a9e3102af8c", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "e946a446-89c7-4fec-81e6-a1bb88db5f51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080554Z:30f4e866-bd02-4be5-9dbc-7a9e3102af8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f716-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a88938f9baabdc9f9aa55878a1c30c12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a7fdc4f-4924-4912-a1df-c1408b0f709a", + "x-ms-client-request-id": "a88938f9baabdc9f9aa55878a1c30c12", + "x-ms-correlation-request-id": "a39b1c6a-87ac-4075-940b-ea941d4709b2", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "2e7440f4-d738-431c-b37c-68e9c0cbbc41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080556Z:a39b1c6a-87ac-4075-940b-ea941d4709b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f717-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8dab40d879c807f8a87c4a6a68f4bf6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8071ccc9-ffef-4d19-a93a-c23f09138ea2", + "x-ms-client-request-id": "a8dab40d879c807f8a87c4a6a68f4bf6", + "x-ms-correlation-request-id": "2abe43cf-11b2-4124-bb58-23a05bf13c4c", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "1a9103ef-0612-4b85-a303-b69bbd896e6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080557Z:2abe43cf-11b2-4124-bb58-23a05bf13c4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f718-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48546fb3e0a503b5d6b4ea0bfd76be2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08c44264-5dcf-47d5-8072-0676b7b93a22", + "x-ms-client-request-id": "48546fb3e0a503b5d6b4ea0bfd76be2d", + "x-ms-correlation-request-id": "35305604-35a1-45c0-8696-687d22b424fd", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "4cabc3f5-ec3c-47e1-9839-ee858d4e0716", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080558Z:35305604-35a1-45c0-8696-687d22b424fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f719-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "678a9749241c7253b8081d24f6f8360a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:05:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "450f5c4f-92c7-4e89-9fd0-33c7decc8f74", + "x-ms-client-request-id": "678a9749241c7253b8081d24f6f8360a", + "x-ms-correlation-request-id": "105faefd-79e0-4392-871e-86e3a99debc8", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "fe1db308-18cb-4079-9543-dd8827a4fd48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080600Z:105faefd-79e0-4392-871e-86e3a99debc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f71a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31c46159c46e2c6cffd6d1e79c748214", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9383f1a9-d940-409b-9b2f-44cdd820c462", + "x-ms-client-request-id": "31c46159c46e2c6cffd6d1e79c748214", + "x-ms-correlation-request-id": "f9d37e20-6d52-4d61-8b63-d454f6cf2b20", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "aad55546-0c0b-4903-8a21-bde82e46689c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080601Z:f9d37e20-6d52-4d61-8b63-d454f6cf2b20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f71b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f5d96c8e4058ed91ce2909dc3900dde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7385fa2b-862f-4ea6-9fe3-15e270a81345", + "x-ms-client-request-id": "0f5d96c8e4058ed91ce2909dc3900dde", + "x-ms-correlation-request-id": "8e44ea77-d43e-4c73-b8e3-3f58887dfe14", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "95754ca7-71f3-421f-ab38-5369ee1fb266", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080602Z:8e44ea77-d43e-4c73-b8e3-3f58887dfe14" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f71c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cb1df7e8db185bf2a5d6846526bd544", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f0a2728-9042-4d4c-8907-9cf960c3f28f", + "x-ms-client-request-id": "9cb1df7e8db185bf2a5d6846526bd544", + "x-ms-correlation-request-id": "d8d6d3d9-2461-4c4d-aa2c-efb2f57f77a9", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "be882264-bf46-4409-8ee6-f88fe9b2d30b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080604Z:d8d6d3d9-2461-4c4d-aa2c-efb2f57f77a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f71d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "605c0885269b75058735148c33cf696e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04b9511a-17ec-4936-83a5-6d3b8c251b6f", + "x-ms-client-request-id": "605c0885269b75058735148c33cf696e", + "x-ms-correlation-request-id": "dd824498-06b2-49ef-b02f-b463c964400f", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "3a81d7f9-4ad5-448c-8497-386c1ffbadbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080605Z:dd824498-06b2-49ef-b02f-b463c964400f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f71e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd68f3c9e6c23a63d7d8e4a77b933bb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df1d6d04-d3b6-42d1-9646-735f982d08f3", + "x-ms-client-request-id": "bd68f3c9e6c23a63d7d8e4a77b933bb1", + "x-ms-correlation-request-id": "7b754396-40c2-4166-ac89-a440be8a9ed4", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "4db56b5a-146c-495a-8dd2-f6e503dc8207", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080606Z:7b754396-40c2-4166-ac89-a440be8a9ed4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f71f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba174b0dad345843da3c147b7832515b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2cc0d0c-a7d8-4271-9395-c6875bfa8951", + "x-ms-client-request-id": "ba174b0dad345843da3c147b7832515b", + "x-ms-correlation-request-id": "9d68b892-1a62-47fc-b391-8a5ff8ea681a", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "eecdacd2-5e20-40a5-9f5e-7bdfa2f9948a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080608Z:9d68b892-1a62-47fc-b391-8a5ff8ea681a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f720-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f7dfaf418029f81a52189c3415df9f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f7012b6-a25e-41b8-b741-b2495797472e", + "x-ms-client-request-id": "5f7dfaf418029f81a52189c3415df9f4", + "x-ms-correlation-request-id": "b93286c5-af0a-4333-9d01-d09eaaaf81b9", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "a998234a-eec3-4a20-a034-f7882ee05496", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080609Z:b93286c5-af0a-4333-9d01-d09eaaaf81b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f721-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e77f63f9afb71c39b010e286d1e8c2a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50072933-f944-4148-9d11-cf25071816d8", + "x-ms-client-request-id": "e77f63f9afb71c39b010e286d1e8c2a4", + "x-ms-correlation-request-id": "596b689c-6620-4cc0-b4f1-93993bcb9c73", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "230f0dcf-7955-43f3-8dd4-f4a8c3eed305", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080610Z:596b689c-6620-4cc0-b4f1-93993bcb9c73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f722-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81b38986dc16f4aeca7714132380167c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "609142f8-73e2-4b19-a26d-da745bc026e9", + "x-ms-client-request-id": "81b38986dc16f4aeca7714132380167c", + "x-ms-correlation-request-id": "ec2781b0-9e28-474e-8e2d-fc1e73da4179", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "e2f303d0-c26d-4377-8997-570bc5a365b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080611Z:ec2781b0-9e28-474e-8e2d-fc1e73da4179" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f723-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1581204269b344a3c060aef235fbcebc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10d0984d-5902-42d7-9ff2-3a1440b47138", + "x-ms-client-request-id": "1581204269b344a3c060aef235fbcebc", + "x-ms-correlation-request-id": "ab8ae43e-7e38-4bd6-994d-a611972bdd51", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "16f136e0-50b0-4769-99a9-bfa81c1a7f7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080613Z:ab8ae43e-7e38-4bd6-994d-a611972bdd51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f724-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b83ce45f78aa1dddb48a1d3f9a25f830", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b819d980-666b-4a32-95e9-3ba86f104a98", + "x-ms-client-request-id": "b83ce45f78aa1dddb48a1d3f9a25f830", + "x-ms-correlation-request-id": "b50bba91-9458-4cc8-835c-81c5a4b85f46", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "ce46014f-126a-4bd6-b8e7-f21056b8eeee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080614Z:b50bba91-9458-4cc8-835c-81c5a4b85f46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f725-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b04366f9ac661df0e56ec0b52dbcbfce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "edd33499-63a7-40b7-8c8e-0ef9edfd8cc7", + "x-ms-client-request-id": "b04366f9ac661df0e56ec0b52dbcbfce", + "x-ms-correlation-request-id": "ba89e9d4-b6bf-40ff-b9e1-b5c6795bf66f", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "3f6f31e1-dc46-43f6-9d85-bfe82f6fa611", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080615Z:ba89e9d4-b6bf-40ff-b9e1-b5c6795bf66f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f726-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3eb457a95e43cad1426460294b64a99b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fff20ae8-aaf0-4a4c-b199-3be0b1eabd6a", + "x-ms-client-request-id": "3eb457a95e43cad1426460294b64a99b", + "x-ms-correlation-request-id": "b5b81fb9-9480-4e6a-adf4-41784112d20f", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "d0b4f7e0-80af-43ab-9ad2-324179e2ec42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080617Z:b5b81fb9-9480-4e6a-adf4-41784112d20f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f727-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cff87e681db8b256f41fd23bb728eff8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52ca6159-e970-4dfe-b7da-911c9cbed812", + "x-ms-client-request-id": "cff87e681db8b256f41fd23bb728eff8", + "x-ms-correlation-request-id": "b7b095c7-d1a9-4099-a436-375ddad3542a", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "297623fc-4a4b-463e-9d69-2f038cd8873a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080618Z:b7b095c7-d1a9-4099-a436-375ddad3542a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f728-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42954fcbb9719bec94796e024bc7d181", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1a57811-1682-4796-812a-da0bac3f74f0", + "x-ms-client-request-id": "42954fcbb9719bec94796e024bc7d181", + "x-ms-correlation-request-id": "c96d408d-0bbc-4cd9-8250-54df4129cf36", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "c0830d10-87b3-4a6f-9b21-2632fd7cecfa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080619Z:c96d408d-0bbc-4cd9-8250-54df4129cf36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f729-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af4c25c4efc48c1601024a248b96121a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f30e495c-41e4-4904-8ded-d9a2fcdc3a0f", + "x-ms-client-request-id": "af4c25c4efc48c1601024a248b96121a", + "x-ms-correlation-request-id": "c3d1af24-25fd-4f8d-b524-08ac04d0cebe", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "3fe176f7-a3c6-4fc7-af57-9702bab6e5a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080621Z:c3d1af24-25fd-4f8d-b524-08ac04d0cebe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f72a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc5e687467ceaf2a915c3b3eae53662c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd1fb38a-1442-42f2-8a70-d749096b51bb", + "x-ms-client-request-id": "fc5e687467ceaf2a915c3b3eae53662c", + "x-ms-correlation-request-id": "0a050c95-f77c-49fd-806c-22f9d2775b1b", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "51ccc478-b6b5-4872-8497-968b202c7369", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080622Z:0a050c95-f77c-49fd-806c-22f9d2775b1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f72b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9276514d3fdbdb343809406f6ec80ffd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e02fb8c8-3ab3-47fa-a3ce-a6954313df66", + "x-ms-client-request-id": "9276514d3fdbdb343809406f6ec80ffd", + "x-ms-correlation-request-id": "1faadb87-2b9e-4ba2-8400-c2431688a0c3", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "4047c7b1-c5df-4280-a6a3-9b70dbffa1d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080623Z:1faadb87-2b9e-4ba2-8400-c2431688a0c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f72c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e38e5467d5695db3fb9d1d67b4d7deae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54673dd7-a965-41bc-a5ff-e9c2bffc5cd3", + "x-ms-client-request-id": "e38e5467d5695db3fb9d1d67b4d7deae", + "x-ms-correlation-request-id": "9d2b521c-7d58-4071-8659-14f726e99ec7", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "cdc0cbba-68ef-49e1-8ce6-cc036a7995d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080625Z:9d2b521c-7d58-4071-8659-14f726e99ec7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f72d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ad71e9b801f343e3482c3c526bb40c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "019d2dc2-f25f-4f69-90ce-24fad5f4c010", + "x-ms-client-request-id": "3ad71e9b801f343e3482c3c526bb40c9", + "x-ms-correlation-request-id": "21dd0c9e-1690-4777-b580-2f24f9f28aa0", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "c35319be-7465-4eae-ad0a-74bb670956da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080626Z:21dd0c9e-1690-4777-b580-2f24f9f28aa0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f72e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ad73d4c83c578c39d19963d22cc2661", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7f79f67-fbb3-42a5-8d70-cb278d5c6edc", + "x-ms-client-request-id": "5ad73d4c83c578c39d19963d22cc2661", + "x-ms-correlation-request-id": "3b97a517-3296-431a-b1d5-0c835c5c6393", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "f41b8f3c-3625-44de-84e8-1599ec9e8aea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080627Z:3b97a517-3296-431a-b1d5-0c835c5c6393" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f72f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50d3922ad5f1e6de1559afe611ed3740", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e32d8287-cce7-4e1f-bb4f-015d09949f73", + "x-ms-client-request-id": "50d3922ad5f1e6de1559afe611ed3740", + "x-ms-correlation-request-id": "8d6f95d1-cd10-479f-84c5-131c287942a0", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "ebe54adf-8b63-4e3c-98bb-26bd2c0b765b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080628Z:8d6f95d1-cd10-479f-84c5-131c287942a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f730-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "761a545d83ff17e95b5e9c05e9001267", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d28dfe8-bdb8-447e-b0bf-db12ce5b280c", + "x-ms-client-request-id": "761a545d83ff17e95b5e9c05e9001267", + "x-ms-correlation-request-id": "fb35d4a8-2429-4c82-88e2-c763431c3b24", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "d57d0c91-b968-4030-acca-a8cde21f2b57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080630Z:fb35d4a8-2429-4c82-88e2-c763431c3b24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f731-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "939a625bf0e777d85ef0446bd3dd66af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da84b639-e400-49cd-8732-ee609ec46b92", + "x-ms-client-request-id": "939a625bf0e777d85ef0446bd3dd66af", + "x-ms-correlation-request-id": "64597ff8-a898-4d87-acb5-4051a2dff5d4", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "5a9e68d4-fc00-4c45-bffa-197dd4e3e090", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080631Z:64597ff8-a898-4d87-acb5-4051a2dff5d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f732-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cde056e2b0b2a761a9bbf59238d8fd15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0880ac39-fe0b-4dc2-a7be-5542e5b8c095", + "x-ms-client-request-id": "cde056e2b0b2a761a9bbf59238d8fd15", + "x-ms-correlation-request-id": "a4d16d45-803f-4556-b334-08cfebf0d01f", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "94088d63-dd9f-4752-8af8-5684b92f04d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080632Z:a4d16d45-803f-4556-b334-08cfebf0d01f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f733-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af8a4847a3536c597ca2180f3f7d447d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7cb46b7f-a474-4e51-b9ea-5026d6386530", + "x-ms-client-request-id": "af8a4847a3536c597ca2180f3f7d447d", + "x-ms-correlation-request-id": "f8e7f79c-614d-478d-971f-019a3dc270da", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "b3ea709f-4b57-4dfd-9244-729aa678d069", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080634Z:f8e7f79c-614d-478d-971f-019a3dc270da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f734-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9323ecf74420abb400f3ea2bfb453f85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5eef770e-09ef-400e-b95f-b49b302c17c1", + "x-ms-client-request-id": "9323ecf74420abb400f3ea2bfb453f85", + "x-ms-correlation-request-id": "20d4f2b8-8640-4ba9-a1d2-80d11f79c08c", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "49fce79e-928b-4ea9-a22a-5433a230e81a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080635Z:20d4f2b8-8640-4ba9-a1d2-80d11f79c08c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f735-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b242ff3b7523f5cfd73510f9852672b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a667462-3c0c-4d20-8d8f-bc6bfd43a2b1", + "x-ms-client-request-id": "8b242ff3b7523f5cfd73510f9852672b", + "x-ms-correlation-request-id": "9c2d7b9e-d712-423a-aa55-d0db081b36a0", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "081f3c3d-d184-4a12-9bf0-d638f0cbfccd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080636Z:9c2d7b9e-d712-423a-aa55-d0db081b36a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f736-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b9a777769b502f493deae60b82d7136", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe9f0a61-d47a-406f-8c93-cf3e9c89c332", + "x-ms-client-request-id": "4b9a777769b502f493deae60b82d7136", + "x-ms-correlation-request-id": "33ee19b1-1f37-499e-8f7a-4dedf55a198c", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "7d062f0d-ae70-4d52-b72c-6d29f39f7965", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080638Z:33ee19b1-1f37-499e-8f7a-4dedf55a198c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f737-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "101b9263b859402b90e496adf3a513ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d6fed9f-dc17-48f1-aa6c-4da5d6d38468", + "x-ms-client-request-id": "101b9263b859402b90e496adf3a513ae", + "x-ms-correlation-request-id": "c734323a-74d6-4a53-93e0-b9e901bd3b58", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "ee96dbbc-8dd0-44d1-8b4a-134e23d9fc1b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080639Z:c734323a-74d6-4a53-93e0-b9e901bd3b58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f738-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84b3bf8bf3aa89d03a22f87408fb86cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d88f06c-3e02-4fcc-9936-18a8673f4b1f", + "x-ms-client-request-id": "84b3bf8bf3aa89d03a22f87408fb86cf", + "x-ms-correlation-request-id": "c3dd7d50-5702-4d6c-89ba-f984b8813673", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "29b00467-0f7d-43a5-9bbb-8596b277ccdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080640Z:c3dd7d50-5702-4d6c-89ba-f984b8813673" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f739-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05ab1a015736bfd24b5abbd0d3470eed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cb691fb-ecdb-4a06-8f9d-42ddcd94c298", + "x-ms-client-request-id": "05ab1a015736bfd24b5abbd0d3470eed", + "x-ms-correlation-request-id": "8750c39c-c660-432d-aedb-d48b981826f7", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "3bb555a6-489a-4c87-b356-1f831703e38b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080642Z:8750c39c-c660-432d-aedb-d48b981826f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f73a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8d5ffcaed79708bc191d537bfb63795", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "535fc969-9ec6-4bbf-a6ec-aeeac5268afd", + "x-ms-client-request-id": "f8d5ffcaed79708bc191d537bfb63795", + "x-ms-correlation-request-id": "11d92130-db29-40ce-bc64-399d3d24c751", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "1dd49228-aed3-4740-9e66-c32afd807fc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080643Z:11d92130-db29-40ce-bc64-399d3d24c751" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f73b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8abc65d0df93377edf4385037ffb6f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e621ae9c-8429-4fd9-87ea-cd8a89244ace", + "x-ms-client-request-id": "d8abc65d0df93377edf4385037ffb6f2", + "x-ms-correlation-request-id": "3d5ee833-c309-4bb8-8279-c32cb813062a", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "b2dfd531-9ceb-43df-a4f3-4cf3f0c9ce3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080644Z:3d5ee833-c309-4bb8-8279-c32cb813062a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f73c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09a90a138e2514558e3a44a5829bff94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10d921a3-de27-457f-9070-421a941006c9", + "x-ms-client-request-id": "09a90a138e2514558e3a44a5829bff94", + "x-ms-correlation-request-id": "44d00e26-a33b-4eab-9424-35c7eb1c0310", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "e1695d66-0678-4522-a3c0-eacb20eb9705", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080646Z:44d00e26-a33b-4eab-9424-35c7eb1c0310" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f73d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c732623369cbcf487a20b85b53b39c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3340ce7-eac6-4604-8966-d91b54d9b649", + "x-ms-client-request-id": "0c732623369cbcf487a20b85b53b39c2", + "x-ms-correlation-request-id": "1209ec23-86b5-44af-baaf-f5f1613b01ec", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "8b6c459f-f27b-4988-ae79-950e0f82e84e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080647Z:1209ec23-86b5-44af-baaf-f5f1613b01ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f73e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b423e2da2e0dcf6f709749bec9d2b152", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57510c25-593f-409b-88e1-517f64c121ee", + "x-ms-client-request-id": "b423e2da2e0dcf6f709749bec9d2b152", + "x-ms-correlation-request-id": "10081c04-b7ef-40fe-94b6-74c47ad004d3", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "01d2efc4-5ab5-4875-b98e-38e13293999b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080648Z:10081c04-b7ef-40fe-94b6-74c47ad004d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f73f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "112da3f4a98cdd5616ec818382d05e53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0955144c-f4f4-402e-94b3-86005252aa3b", + "x-ms-client-request-id": "112da3f4a98cdd5616ec818382d05e53", + "x-ms-correlation-request-id": "e2042ea2-93bb-406b-99e9-250ef7f65aed", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "732ef92c-3d7a-4795-95f7-3891e7790008", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080649Z:e2042ea2-93bb-406b-99e9-250ef7f65aed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f740-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fca82014a77f587b7a39b05ec35f3b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec24965f-3fa8-47a5-89e6-bd409f8feab3", + "x-ms-client-request-id": "9fca82014a77f587b7a39b05ec35f3b5", + "x-ms-correlation-request-id": "6adecd56-fc1f-48cc-84ef-76a4ee7948c4", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "cb2ca6d3-50e7-444f-b6c8-5ffc301a3b4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080651Z:6adecd56-fc1f-48cc-84ef-76a4ee7948c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f741-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1290b8f0270e30358c469e20aceb4c9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9db6d99-3610-479b-846e-16ad80ed1302", + "x-ms-client-request-id": "1290b8f0270e30358c469e20aceb4c9f", + "x-ms-correlation-request-id": "138367f1-c9d1-4984-a6a8-2a7171397ce6", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "d7dd4edb-e4ca-4a6b-9bd5-f0b7e83747a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080652Z:138367f1-c9d1-4984-a6a8-2a7171397ce6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f742-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47bdf6381208a9da1b375ae80d51f0e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc74145f-0c14-41b4-85db-e139b83b2072", + "x-ms-client-request-id": "47bdf6381208a9da1b375ae80d51f0e1", + "x-ms-correlation-request-id": "8df932d9-6b03-4004-897a-bbb3c417fab6", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "e5d8679a-c85a-4521-8054-e7c5560a467f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080653Z:8df932d9-6b03-4004-897a-bbb3c417fab6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f743-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c992ccf94c40d9444c991230ac6648cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "62fc7e7d-ca5b-4a89-abf5-8ee1848b1f60", + "x-ms-client-request-id": "c992ccf94c40d9444c991230ac6648cb", + "x-ms-correlation-request-id": "eea267fc-0cd0-4229-88ca-dbba15959bf9", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "4ba905a6-d2ac-4a64-a512-bffb6c3d1f4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080655Z:eea267fc-0cd0-4229-88ca-dbba15959bf9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f744-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6ccfb57ab77deacdde6f6d6cd4d223b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddc2c039-c388-41b4-a25c-30e9c466dc76", + "x-ms-client-request-id": "f6ccfb57ab77deacdde6f6d6cd4d223b", + "x-ms-correlation-request-id": "da0106fc-c5ea-4cf2-acf0-5cd9be30739d", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "3b623c5e-d392-4d4b-8b1e-e61d00cad6a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080656Z:da0106fc-c5ea-4cf2-acf0-5cd9be30739d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f745-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df27bc568258ec5fb1e3fa6effa9fdb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "040c7a28-416b-4a4d-97cd-11889be6fd96", + "x-ms-client-request-id": "df27bc568258ec5fb1e3fa6effa9fdb4", + "x-ms-correlation-request-id": "6c951e79-f29b-44e3-bdde-f2d067369e9d", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "965a870a-5388-4633-ae86-f808f0cd1969", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080657Z:6c951e79-f29b-44e3-bdde-f2d067369e9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f746-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11918eeffa844d691fb4ec59556e0cff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1368759-82bf-4efb-8503-5a0d48fce418", + "x-ms-client-request-id": "11918eeffa844d691fb4ec59556e0cff", + "x-ms-correlation-request-id": "dd184497-b10f-4ad7-a1e5-462fc7d1fc5f", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "fb44c936-d99c-4bca-8e5b-294353fd8b2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080659Z:dd184497-b10f-4ad7-a1e5-462fc7d1fc5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f747-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0dad776683fd4739ce04494b13edf33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:06:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7bcb049f-67ed-40d0-8aff-517721c62200", + "x-ms-client-request-id": "f0dad776683fd4739ce04494b13edf33", + "x-ms-correlation-request-id": "e66a3d77-d5a7-48c2-a83f-b9c9772781b7", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "528ede2c-ef81-4821-8c08-7ce9ae017848", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080700Z:e66a3d77-d5a7-48c2-a83f-b9c9772781b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f748-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3fe742e910bc5bb652d9c0a496069643", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d2d5df4-3d9d-4545-9d51-964f6509ffaa", + "x-ms-client-request-id": "3fe742e910bc5bb652d9c0a496069643", + "x-ms-correlation-request-id": "4fc04e8e-5726-48cb-9ea6-67eb5ad8804c", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "0a8a5443-4e76-4ea7-a934-04f0881ea995", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080701Z:4fc04e8e-5726-48cb-9ea6-67eb5ad8804c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f749-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28f8fbd70ccf86741bbc75a4b5d59ce1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac41b847-1c0b-4307-b3a1-ed5f3378a947", + "x-ms-client-request-id": "28f8fbd70ccf86741bbc75a4b5d59ce1", + "x-ms-correlation-request-id": "19a25fe5-f712-4218-a1eb-4164705e4fa7", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "f74ff1f3-799d-49d0-bdfa-5716da698e7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080703Z:19a25fe5-f712-4218-a1eb-4164705e4fa7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f74a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "126fb8d5cc866542207e9d65a8ce3d95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b4574da-2a43-42df-8018-707e0d3b0f89", + "x-ms-client-request-id": "126fb8d5cc866542207e9d65a8ce3d95", + "x-ms-correlation-request-id": "d16a513c-3641-4481-b915-f211df5efde7", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "c4bfa832-9b53-4b05-819d-5873863d5783", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080704Z:d16a513c-3641-4481-b915-f211df5efde7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f74b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5bd0149b646dc64cd6124ff9b12a67d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa5fde43-6a31-469e-8ec0-25959db667b2", + "x-ms-client-request-id": "b5bd0149b646dc64cd6124ff9b12a67d", + "x-ms-correlation-request-id": "58dd8c01-0715-4a9c-93c5-122a4e33b4b3", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "f35de175-d16f-43a6-95ce-d882dfedc0e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080705Z:58dd8c01-0715-4a9c-93c5-122a4e33b4b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f74c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "decfde3d84960abdb99207506f0edd4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "951ac0ad-62ac-4b47-9d89-c5b15f8649b8", + "x-ms-client-request-id": "decfde3d84960abdb99207506f0edd4c", + "x-ms-correlation-request-id": "9ae9d877-3b66-40b1-835e-650aaf186f69", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "7f2c4553-9cb7-45fa-b1ba-5ab5da4570c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080707Z:9ae9d877-3b66-40b1-835e-650aaf186f69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f74d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b35ae07fe7181e9b53924524a743ca0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9fb89c20-88b0-4d82-8d31-701b662acd54", + "x-ms-client-request-id": "b35ae07fe7181e9b53924524a743ca0d", + "x-ms-correlation-request-id": "a4098c1f-b5d1-4f50-a293-f8572ac1d5e8", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "7a86b917-33bb-463c-bc7a-f027d7764b7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080708Z:a4098c1f-b5d1-4f50-a293-f8572ac1d5e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f74e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c92820d85fffc5fe44b2fcb3af146dbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff4a0658-629f-48e2-abbb-04ddf06e6d3a", + "x-ms-client-request-id": "c92820d85fffc5fe44b2fcb3af146dbe", + "x-ms-correlation-request-id": "455a64b7-e246-4978-aa12-8ebe0ac946e6", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "6806dc4e-6ead-420d-bfe0-3501e858f317", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080709Z:455a64b7-e246-4978-aa12-8ebe0ac946e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f74f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb80d883f3b8566543b08b043e986275", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff565406-65c4-46a1-933e-efc1b6017bc6", + "x-ms-client-request-id": "bb80d883f3b8566543b08b043e986275", + "x-ms-correlation-request-id": "90e12820-7bea-4aef-9749-45504a4bb927", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "1b474b28-1934-4aef-9e9e-d0f9cbc212cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080711Z:90e12820-7bea-4aef-9749-45504a4bb927" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f750-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f77fac713e6204ce1956f65ebe76f3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d858698d-60fe-4135-941c-cdc9d58b8e33", + "x-ms-client-request-id": "4f77fac713e6204ce1956f65ebe76f3e", + "x-ms-correlation-request-id": "62120963-ad4d-4227-ae98-d0dc49a651fb", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "0133d540-1ab9-48fc-ba70-6ed15853b919", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080712Z:62120963-ad4d-4227-ae98-d0dc49a651fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f751-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfa186250fc3e555bad2864fd3fa86ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6eee7431-57ec-463f-89a3-a797cc8960c7", + "x-ms-client-request-id": "cfa186250fc3e555bad2864fd3fa86ac", + "x-ms-correlation-request-id": "138adca2-9ce5-4263-9144-0d0460e35b16", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "2616c7ad-e419-466c-a382-dff1c9a2072c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080713Z:138adca2-9ce5-4263-9144-0d0460e35b16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f752-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4eb86501d9c6fd88c60d92283ff6b5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b445792-b91e-4e5c-bb88-e73392106cbe", + "x-ms-client-request-id": "b4eb86501d9c6fd88c60d92283ff6b5b", + "x-ms-correlation-request-id": "f1cebc19-ae6c-4180-a53f-4e5b99bf8016", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "fdd11c96-db05-4bd0-b587-2ca3d143d72e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080715Z:f1cebc19-ae6c-4180-a53f-4e5b99bf8016" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f753-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7de4d4193f7b8b2a59294148dfc4ce6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f243e75a-5554-4850-ae23-3a15bc6f8bed", + "x-ms-client-request-id": "b7de4d4193f7b8b2a59294148dfc4ce6", + "x-ms-correlation-request-id": "ce3ebb00-09ee-4a4b-8026-967bea5272d6", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "69dd8585-8b67-4b8d-85c8-f360e19d9bf8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080716Z:ce3ebb00-09ee-4a4b-8026-967bea5272d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f754-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6415c30ebafc07a1ae314363353261ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60e72e23-c24a-4aa8-9c1b-baf605ee4bb8", + "x-ms-client-request-id": "6415c30ebafc07a1ae314363353261ba", + "x-ms-correlation-request-id": "6b733153-a98f-4f86-ad12-88ee98756bc3", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "7b32c384-9b8a-421b-a837-6b31bc955362", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080717Z:6b733153-a98f-4f86-ad12-88ee98756bc3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f755-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "860e2b67cf1cbcb4d4330f0a89c4e28f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f38c473-ec10-49ca-85b3-e2762d3be741", + "x-ms-client-request-id": "860e2b67cf1cbcb4d4330f0a89c4e28f", + "x-ms-correlation-request-id": "82c8e968-f960-4014-b325-da2c859e9d91", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "3394e3f4-4aa7-452e-9638-ca20ceb13665", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080719Z:82c8e968-f960-4014-b325-da2c859e9d91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f756-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c014f31306ea865fabd609c64f4f8272", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "44815717-2476-4abf-8cac-99b629a1e8b5", + "x-ms-client-request-id": "c014f31306ea865fabd609c64f4f8272", + "x-ms-correlation-request-id": "30bf7d72-a06e-4c6b-bf71-def223fa97c8", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "13f95bcf-4395-4dbb-b0f7-27f776892459", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080720Z:30bf7d72-a06e-4c6b-bf71-def223fa97c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f757-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62acd931c6ee3fca0e588fc8ab977eea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b20d323-9fe1-4f89-88e2-1a76f27e34dc", + "x-ms-client-request-id": "62acd931c6ee3fca0e588fc8ab977eea", + "x-ms-correlation-request-id": "f75c4fca-cc62-4a5d-a17b-eb2d30c4f7e7", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "5769562c-738a-4e70-971b-57db642b9f5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080721Z:f75c4fca-cc62-4a5d-a17b-eb2d30c4f7e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f758-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "424fb44ea11d60d0cb87da45c5ee6d85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b6d7329-60c5-4cc7-8cd5-ed733010ecde", + "x-ms-client-request-id": "424fb44ea11d60d0cb87da45c5ee6d85", + "x-ms-correlation-request-id": "f29aaeab-414e-4f83-a85e-76c08602a2ee", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "3dfaadd7-f10b-4911-8a1c-6d55e4aa8c9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080722Z:f29aaeab-414e-4f83-a85e-76c08602a2ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f759-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afd99cb07f174da029d5b1927696db14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cbd5fc58-a237-44c4-a99a-8dbcf191bdd4", + "x-ms-client-request-id": "afd99cb07f174da029d5b1927696db14", + "x-ms-correlation-request-id": "0ac13397-9a72-4e82-bfe1-a83b431bc776", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "ed9289d7-8644-4211-90ef-34d06a654240", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080724Z:0ac13397-9a72-4e82-bfe1-a83b431bc776" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f75a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b771f5840ff8f55094c9667eb84791f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f38ed7d-05c0-4f3c-9808-c73c45bc0445", + "x-ms-client-request-id": "9b771f5840ff8f55094c9667eb84791f", + "x-ms-correlation-request-id": "23289a9e-f7b7-4206-9985-67867df25876", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "4f5e036b-a730-4840-8bb6-a0c4c6cd455b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080725Z:23289a9e-f7b7-4206-9985-67867df25876" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f75b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e180aebcebdcfd213011848ef3de935", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ded4ad39-b369-46bb-9842-b109b5540c87", + "x-ms-client-request-id": "0e180aebcebdcfd213011848ef3de935", + "x-ms-correlation-request-id": "998c31f2-095d-4ea7-b4cf-f61cd860b209", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "2979861f-ab10-441f-bae4-a4679ad2df6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080726Z:998c31f2-095d-4ea7-b4cf-f61cd860b209" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f75c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6edc6abd1776f854749a6cae93862a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9fb7cce8-69c4-4c5b-b92d-c0edab9e0d71", + "x-ms-client-request-id": "a6edc6abd1776f854749a6cae93862a4", + "x-ms-correlation-request-id": "29278ae7-7ed2-4626-999c-071104753111", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "5ce0594e-f92a-4f55-8b17-65e964fc789d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080728Z:29278ae7-7ed2-4626-999c-071104753111" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f75d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ca6925bcd7d8a564ca887fd270ca0cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "691dee2f-93be-4121-aa36-918e8389bc8e", + "x-ms-client-request-id": "6ca6925bcd7d8a564ca887fd270ca0cb", + "x-ms-correlation-request-id": "b4526f41-f28b-4d2a-ad3c-345732c55e11", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "d0d5b564-8ff6-4fc1-b3d3-41da4b9b36ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080729Z:b4526f41-f28b-4d2a-ad3c-345732c55e11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f75e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24bb6163d29719a884a8c6742707e6db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b56526d5-a956-45b4-a182-33e2d64ad6d7", + "x-ms-client-request-id": "24bb6163d29719a884a8c6742707e6db", + "x-ms-correlation-request-id": "4f046058-6020-4c56-8ede-41a05eefff6d", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "b021bb18-6eb4-4c90-8fd1-c13904f1b168", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080731Z:4f046058-6020-4c56-8ede-41a05eefff6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f75f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5dec749f7c96deb770625acf4987473b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0de53c74-d98e-4b97-a760-b5b4a43c049a", + "x-ms-client-request-id": "5dec749f7c96deb770625acf4987473b", + "x-ms-correlation-request-id": "b22bb220-1707-468f-8924-d50eccd4512f", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "fca6f6f5-3247-4879-8620-5bb9baa68d41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080732Z:b22bb220-1707-468f-8924-d50eccd4512f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f760-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8767dba83d7d880de98de7d407e16244", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55a2844a-0463-4bdf-9097-078e91bb63b8", + "x-ms-client-request-id": "8767dba83d7d880de98de7d407e16244", + "x-ms-correlation-request-id": "0f238012-d49d-43bb-ae83-182b5fe03aa9", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "b78bfd5d-a23f-47c5-b828-cb7ccfaee7a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080734Z:0f238012-d49d-43bb-ae83-182b5fe03aa9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f761-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b35eacc2431fe634aadcb43478d9d0fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21fc0528-d83f-4560-a8e2-8706c18a5b2b", + "x-ms-client-request-id": "b35eacc2431fe634aadcb43478d9d0fc", + "x-ms-correlation-request-id": "02ba69b7-7de2-49f5-afef-a3bb5b080274", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "e040bc66-a2f8-4435-98a1-4bfa8f36b295", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080735Z:02ba69b7-7de2-49f5-afef-a3bb5b080274" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f762-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ccc8a615ea0615d6663730995e2d78e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b54e3988-3b64-4f29-aa6c-1654e61cc4ac", + "x-ms-client-request-id": "4ccc8a615ea0615d6663730995e2d78e", + "x-ms-correlation-request-id": "1b6d1a09-9b81-4e6a-8bbf-5b8d1800891f", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "ea896fe9-d2bc-4a43-962b-25c539e696e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080736Z:1b6d1a09-9b81-4e6a-8bbf-5b8d1800891f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f763-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c0d16009429641ba681dca089d81010", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e043105-948a-448e-b8b2-0b1e7ec1e176", + "x-ms-client-request-id": "9c0d16009429641ba681dca089d81010", + "x-ms-correlation-request-id": "88c70c7a-0fab-494f-bf5a-023bbb311a67", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "b7a2ccd1-70a6-4502-9ca5-2b575c89fa08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080737Z:88c70c7a-0fab-494f-bf5a-023bbb311a67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f764-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c73eabc151563a44efd4cbbd02a51c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f81bc87b-0a8f-4f12-a662-73225ff2d4cd", + "x-ms-client-request-id": "7c73eabc151563a44efd4cbbd02a51c8", + "x-ms-correlation-request-id": "b3629a6d-48c1-44bc-bbef-f446325c28e1", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "ca399864-4f9c-47b3-9277-c257b9fc6303", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080739Z:b3629a6d-48c1-44bc-bbef-f446325c28e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f765-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6133260533cbccd36f67a51e81bdd78e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2788a59a-5ab1-4166-85de-3e060d979ada", + "x-ms-client-request-id": "6133260533cbccd36f67a51e81bdd78e", + "x-ms-correlation-request-id": "7318e6a7-149f-411c-8ec5-d3ced93b1391", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "989da514-8f45-47a5-b663-66f4c6aa94dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080740Z:7318e6a7-149f-411c-8ec5-d3ced93b1391" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f766-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa4d62535a6eea7872a94e2b475f947c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2240b64f-bfcc-4f5d-8a9a-775de2dba83d", + "x-ms-client-request-id": "aa4d62535a6eea7872a94e2b475f947c", + "x-ms-correlation-request-id": "b0b33505-ab88-4c05-a5e6-88b23b6fb400", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "8aa96d0a-75c2-4653-a28a-f0ab9c3226a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080741Z:b0b33505-ab88-4c05-a5e6-88b23b6fb400" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f767-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "639a1430aea4894417a70dae7085e191", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55e9b514-480f-47d7-9779-2cbb5c487f47", + "x-ms-client-request-id": "639a1430aea4894417a70dae7085e191", + "x-ms-correlation-request-id": "80d099bb-36de-4332-9c76-fec4d9703973", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "74ed177d-3054-488a-b824-489de37079af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080743Z:80d099bb-36de-4332-9c76-fec4d9703973" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f768-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d68be25a6ddab59ae49ef22e5a8840f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5722a30-70ff-48a8-99ab-88b755baeed4", + "x-ms-client-request-id": "6d68be25a6ddab59ae49ef22e5a8840f", + "x-ms-correlation-request-id": "7b598256-4d67-47c6-bc26-bd8f510c35d4", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "774dfdc3-cdf5-4ba7-8c48-83bcfb0fc0f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080744Z:7b598256-4d67-47c6-bc26-bd8f510c35d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f769-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6dee29d27423a4e91dc393c64cc97aed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc2bafe3-00ab-401c-b5ef-e11ad810f118", + "x-ms-client-request-id": "6dee29d27423a4e91dc393c64cc97aed", + "x-ms-correlation-request-id": "ef2a871b-e2da-41c5-b055-445cc051e63c", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "3e9ac077-24a9-4f99-834a-842e6806d8ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080745Z:ef2a871b-e2da-41c5-b055-445cc051e63c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f76a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8905bcc827f7899ebaefb45bbe22a46e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2c4bcf8-f4dc-4308-9f53-d6a83b706ec4", + "x-ms-client-request-id": "8905bcc827f7899ebaefb45bbe22a46e", + "x-ms-correlation-request-id": "30fcad44-e240-45d6-b500-b9473440f1f9", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "101310ec-76cd-4f01-8b1f-6809bd9a1f58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080747Z:30fcad44-e240-45d6-b500-b9473440f1f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f76b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47dcfe227496b06ed4c44f1913925ee4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8bf9f7ea-18ec-440c-bf91-b8ed65f871e7", + "x-ms-client-request-id": "47dcfe227496b06ed4c44f1913925ee4", + "x-ms-correlation-request-id": "7556bddc-9ad5-45f9-841d-517f54fa64a1", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "8c8458ab-7be6-44c6-9a04-9f25892616d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080748Z:7556bddc-9ad5-45f9-841d-517f54fa64a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f76c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "285a02cffba2aa188a64b233bf8ee5fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9609ff1-0c8e-4ba9-9512-3f4460e422e7", + "x-ms-client-request-id": "285a02cffba2aa188a64b233bf8ee5fb", + "x-ms-correlation-request-id": "292183f2-830d-450b-8182-dba111e5b2b4", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "2e37833e-4f22-425f-be55-26841f5ddec4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080749Z:292183f2-830d-450b-8182-dba111e5b2b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f76d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ea4241f32ec53564e55b433d7857627", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4df1a015-0938-430a-89fe-fa3b9ed9200d", + "x-ms-client-request-id": "4ea4241f32ec53564e55b433d7857627", + "x-ms-correlation-request-id": "c5be057f-c34e-407b-af35-752f8b5d67ff", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "3ebcb670-8281-46c4-9b77-93d604f540d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080750Z:c5be057f-c34e-407b-af35-752f8b5d67ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f76e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc8cd0907bc827cce631bd31c23af146", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9cb60aa3-d5da-457c-be00-67667c0a712f", + "x-ms-client-request-id": "bc8cd0907bc827cce631bd31c23af146", + "x-ms-correlation-request-id": "b979873c-d0d1-4a60-a371-d56ddae5ab66", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "8e271ac9-e688-415d-b61c-5ff1e822b4cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080752Z:b979873c-d0d1-4a60-a371-d56ddae5ab66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f76f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eefa54de0fee9cf7ac06da4d46e4d204", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba91a408-959a-4276-8f33-2da8ebfee420", + "x-ms-client-request-id": "eefa54de0fee9cf7ac06da4d46e4d204", + "x-ms-correlation-request-id": "e63f1c8b-8b41-478b-8368-fbbe01b90194", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "8463c6b4-a39f-4d1d-a4d8-03371788d937", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080753Z:e63f1c8b-8b41-478b-8368-fbbe01b90194" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f770-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efa28aee2901a332577c68bb75249114", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60e17a7e-00c3-4350-9d47-98e7546aedfa", + "x-ms-client-request-id": "efa28aee2901a332577c68bb75249114", + "x-ms-correlation-request-id": "85afd524-f286-428d-b8be-8fb3c1724839", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "54e4016a-3706-41d0-a8ff-ae4a4f1e855f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080754Z:85afd524-f286-428d-b8be-8fb3c1724839" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f771-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83546d63878a8139d8ef0fc2a17fe101", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2feb3e1d-9928-4de7-a59b-66e2cf099600", + "x-ms-client-request-id": "83546d63878a8139d8ef0fc2a17fe101", + "x-ms-correlation-request-id": "4e877a49-5bd6-442a-bce3-f1a762addc6a", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "591c3407-2b3f-441a-b95a-6b4299c97215", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080756Z:4e877a49-5bd6-442a-bce3-f1a762addc6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f772-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3743b85e0197b44421569772a73c2788", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d075eef-6d38-43ea-b753-1b5b84559ecf", + "x-ms-client-request-id": "3743b85e0197b44421569772a73c2788", + "x-ms-correlation-request-id": "4a43eb88-2f64-4b56-9b8f-42d7ef083c98", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "6f4f0a6a-1e2f-435a-bf82-a392f816777e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080757Z:4a43eb88-2f64-4b56-9b8f-42d7ef083c98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f773-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8e9c5754f90677951211612197002d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0272c504-05cd-49af-a965-e82bd94531bd", + "x-ms-client-request-id": "d8e9c5754f90677951211612197002d7", + "x-ms-correlation-request-id": "dc71ae22-fa03-4166-bad8-6beb3ff8034a", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "ef2d8b5d-82d6-42e3-8e5a-513acaa22f9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080758Z:dc71ae22-fa03-4166-bad8-6beb3ff8034a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f774-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc5c669b59e0627c299f6234f0c7d99c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:07:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fbfa5962-e013-4bae-a8c0-9ca9a49186f0", + "x-ms-client-request-id": "bc5c669b59e0627c299f6234f0c7d99c", + "x-ms-correlation-request-id": "56f5b696-8df5-48d3-baaa-b2907e87091b", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "3f122db7-b387-43f7-a623-3e50d463b54c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080800Z:56f5b696-8df5-48d3-baaa-b2907e87091b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f775-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db4d87c709960f713edce675ea329bb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b804d605-9b35-4eac-b4a5-71a03adc8818", + "x-ms-client-request-id": "db4d87c709960f713edce675ea329bb1", + "x-ms-correlation-request-id": "ba3b7bc0-a538-469a-ac3e-b698a2d17f43", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "0901468f-d372-4f15-8877-64dc8a3bd330", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080801Z:ba3b7bc0-a538-469a-ac3e-b698a2d17f43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f776-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40d6bf536bdf1ba74987aff0ec45778a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ecb3d25-a642-4621-a01d-22b9d60729e1", + "x-ms-client-request-id": "40d6bf536bdf1ba74987aff0ec45778a", + "x-ms-correlation-request-id": "526fbb4d-856a-469e-9ce2-dcad17c52109", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "d5dcccd9-e5d1-45ca-85a8-aca129e5cf38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080802Z:526fbb4d-856a-469e-9ce2-dcad17c52109" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f777-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "924b7a4826239141f54c7d04730677f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64c3526b-c2bc-49a5-909a-6618521b53a7", + "x-ms-client-request-id": "924b7a4826239141f54c7d04730677f6", + "x-ms-correlation-request-id": "c4aaa6f2-31b0-4b6e-884a-f2523bad1a93", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "c956bd1f-ed6d-4801-a7f5-064efeb91134", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080804Z:c4aaa6f2-31b0-4b6e-884a-f2523bad1a93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f778-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30e0b10498f05bbce031920f5a8123f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b52bab1d-41d0-476f-8b65-d3080f48f354", + "x-ms-client-request-id": "30e0b10498f05bbce031920f5a8123f9", + "x-ms-correlation-request-id": "b663a033-d975-41e8-9bb3-ac6db5aa8b71", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "2850d04b-7dfe-4dcd-8d18-26a5491f270f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080805Z:b663a033-d975-41e8-9bb3-ac6db5aa8b71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f779-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "702d5c6508e62c8e7d454b93eda2a842", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5d9cdae-0b47-4207-b167-9c8d76e71d38", + "x-ms-client-request-id": "702d5c6508e62c8e7d454b93eda2a842", + "x-ms-correlation-request-id": "0991925b-c7e5-484c-875f-123e0a3d0b21", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "afa50e86-5dc2-48b5-85a8-c562134779e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080807Z:0991925b-c7e5-484c-875f-123e0a3d0b21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f77a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bebb80f4664af99beefb2f194323774", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5cd4c111-4fe9-4c37-97d3-4064acdad795", + "x-ms-client-request-id": "3bebb80f4664af99beefb2f194323774", + "x-ms-correlation-request-id": "ed05d7a4-dea2-4ec4-933c-5b4082aa6ec5", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "223638b9-06ab-4688-a118-cf2a880f796c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080808Z:ed05d7a4-dea2-4ec4-933c-5b4082aa6ec5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f77b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "169f842907d9fb0f22b3b2ab4c296e3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88edd60a-ba73-4686-84ea-04410201d6ae", + "x-ms-client-request-id": "169f842907d9fb0f22b3b2ab4c296e3d", + "x-ms-correlation-request-id": "780e4d36-02b3-4e15-bcd9-da8ee0bf8267", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "93d7d4e2-7908-4d02-9448-ce972f177412", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080810Z:780e4d36-02b3-4e15-bcd9-da8ee0bf8267" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f77c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1ff4f89e7951e95c27db2f7569d984b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a86deb9e-43b6-4d2a-b6a3-8d88932148c1", + "x-ms-client-request-id": "a1ff4f89e7951e95c27db2f7569d984b", + "x-ms-correlation-request-id": "3142c0eb-1ae9-45fd-a202-3ec7c2dfaa2e", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "44336ff2-6ebb-4369-b7dc-ac25f63ccefd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080811Z:3142c0eb-1ae9-45fd-a202-3ec7c2dfaa2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f77d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6969d70d91030868a8ef18b093ee6394", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86c3ff92-d501-4e65-9d5b-3f6f1ba1dcbd", + "x-ms-client-request-id": "6969d70d91030868a8ef18b093ee6394", + "x-ms-correlation-request-id": "329792e0-653b-48f7-bdc5-3a3a02b538b1", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "4efb69cb-08a5-4059-9273-65db6b278ca7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080812Z:329792e0-653b-48f7-bdc5-3a3a02b538b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f77e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44677581963242deee80545c5418a585", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e82f448-ef3f-4623-a63e-3d6ba638318a", + "x-ms-client-request-id": "44677581963242deee80545c5418a585", + "x-ms-correlation-request-id": "ae704174-20e2-4e04-9478-34273f46e9c5", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "07f512e9-255d-437b-bbb9-c0fa44c9fab4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080814Z:ae704174-20e2-4e04-9478-34273f46e9c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f77f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "759e671b04c0f739e6f7f9a5cee48bd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53026c52-b17b-417d-9d2b-f246cf85e399", + "x-ms-client-request-id": "759e671b04c0f739e6f7f9a5cee48bd3", + "x-ms-correlation-request-id": "e06d7699-f397-4eb9-8e7d-cff4e1b0fc8e", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "3d09d22c-2458-4f64-8767-c7d99b336d9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080815Z:e06d7699-f397-4eb9-8e7d-cff4e1b0fc8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f780-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1761d1a53357619f8267a833d0cb390", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95b3b8ec-7560-4248-9546-164a408381f5", + "x-ms-client-request-id": "e1761d1a53357619f8267a833d0cb390", + "x-ms-correlation-request-id": "4d2d9f79-9bac-4b5f-8c8f-fa270706e17c", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "a7d9cac2-6d0a-4f51-b13e-59424ed800aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080816Z:4d2d9f79-9bac-4b5f-8c8f-fa270706e17c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f781-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c94924aed507cd43b6f5d3b9c38730a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36d8e27d-2270-4ffa-9dfa-27b5539d2ef9", + "x-ms-client-request-id": "2c94924aed507cd43b6f5d3b9c38730a", + "x-ms-correlation-request-id": "8f14fa3a-8738-4177-81d1-bee48137089c", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "aa76af81-d6e4-4f57-85b8-0bd45e540cb6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080817Z:8f14fa3a-8738-4177-81d1-bee48137089c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f782-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "374280f4c3a1c8504d277c9989b5bada", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b9f425e-2728-46a1-87fa-a38ffb141584", + "x-ms-client-request-id": "374280f4c3a1c8504d277c9989b5bada", + "x-ms-correlation-request-id": "224f691e-0d04-4a21-a08e-f643bb6410f9", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "4217b484-7429-4a46-adae-6220a3ccbc81", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080819Z:224f691e-0d04-4a21-a08e-f643bb6410f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f783-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b5b69435f4f2c8349f9a5c5f5dedac0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1982d32-77f6-4b61-b7ff-0dc7a2d8caef", + "x-ms-client-request-id": "3b5b69435f4f2c8349f9a5c5f5dedac0", + "x-ms-correlation-request-id": "d092a8d4-6836-4151-82da-776534e19784", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "9a4e4c1d-c194-4881-b3d3-b318376d04b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080820Z:d092a8d4-6836-4151-82da-776534e19784" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f784-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd8e70b37cca86ee42ccde29713af285", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "612b1e3d-4d7a-45fe-a6f9-1b1b5a74f570", + "x-ms-client-request-id": "bd8e70b37cca86ee42ccde29713af285", + "x-ms-correlation-request-id": "35c5a28e-46c8-4ce6-a3f9-da20b070aeee", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "3b86364c-92e3-497a-9fe7-e613c19595ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080821Z:35c5a28e-46c8-4ce6-a3f9-da20b070aeee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f785-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33f783b537dd95bafd15eda71e8ad26f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e615a70-0591-45b8-bbb8-350870a15089", + "x-ms-client-request-id": "33f783b537dd95bafd15eda71e8ad26f", + "x-ms-correlation-request-id": "bb29a8e6-53f6-45cd-8adc-d97e36c3bed5", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "9127b943-1a81-4ac6-9ade-72dc2e14c38a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080823Z:bb29a8e6-53f6-45cd-8adc-d97e36c3bed5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f786-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19e6bc4cfd27c7107ad4f9838059bb0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32892807-0b3e-4623-b38f-186d86bb83c9", + "x-ms-client-request-id": "19e6bc4cfd27c7107ad4f9838059bb0e", + "x-ms-correlation-request-id": "aca9356c-b3ac-4600-8ac8-c56a26bdfd11", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "4d36c90e-4349-4a5b-bcc9-e768255aead1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080824Z:aca9356c-b3ac-4600-8ac8-c56a26bdfd11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/26006cc9-3b4e-4edc-93ff-6ff66580830b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f787-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72101f06a6e67be2b5f8bfb48e4668b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a8c9fff-5f4d-48e8-8a88-7eb673da4652", + "x-ms-client-request-id": "72101f06a6e67be2b5f8bfb48e4668b7", + "x-ms-correlation-request-id": "c64fac0d-ce3f-49b3-a0af-e33d2db20251", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "fa23b198-3f8a-4e77-9a28-46bba964fab1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080826Z:c64fac0d-ce3f-49b3-a0af-e33d2db20251" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f788-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4dc6efad954b75e732fb9083e3714a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2413", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da70fc4a-e8c5-4924-8cd3-2bef0150addc", + "x-ms-client-request-id": "b4dc6efad954b75e732fb9083e3714a4", + "x-ms-correlation-request-id": "7b5f7d7e-bb13-4c07-b8b7-417bc28f4de1", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "57777212-2297-433b-b15e-01aed296a0cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080826Z:7b5f7d7e-bb13-4c07-b8b7-417bc28f4de1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6443\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002286cd8a60-3310-468d-8680-54315b65c610\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cb40306f-180f-4e56-a1b5-467dce4eebde\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet6614\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443/ipConfigurations/azsmnet6614\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002286cd8a60-3310-468d-8680-54315b65c610\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Basic\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443/ipConfigurations/azsmnet6614\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.148.170.39\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|2c28f789-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fea0df5a6079a688da6b632e3d5b3933", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2413", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c65e6ba5-2dd6-4f88-bac9-0883197cb6a6", + "x-ms-client-request-id": "fea0df5a6079a688da6b632e3d5b3933", + "x-ms-correlation-request-id": "a9a399b3-a968-4772-b79c-6ddb1635346d", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "704a67e0-bb1d-4c57-af9e-13beb1f4f6ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080826Z:a9a399b3-a968-4772-b79c-6ddb1635346d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6443\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002286cd8a60-3310-468d-8680-54315b65c610\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cb40306f-180f-4e56-a1b5-467dce4eebde\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet6614\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443/ipConfigurations/azsmnet6614\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002286cd8a60-3310-468d-8680-54315b65c610\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Basic\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443/ipConfigurations/azsmnet6614\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.148.170.39\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "640", + "Content-Type": "application/json", + "Request-Id": "|2c28f78a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1288416c077c2db9c058feb7edd93c7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value", + "tag2": "value", + "tag3": "value" + }, + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet6614", + "id": null, + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "enableBgp": false, + "sku": { + "name": "Basic", + "tier": "Basic" + } + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2576", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:08:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be4537c3-01e7-4006-9248-e55a67046047", + "x-ms-client-request-id": "1288416c077c2db9c058feb7edd93c7e", + "x-ms-correlation-request-id": "eaad82b7-a6f3-48b6-9bf1-4560012a27c8", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "814c73be-60a2-48d6-b2f9-7f83fab731ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080858Z:eaad82b7-a6f3-48b6-9bf1-4560012a27c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6443\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00227ca60c44-cf12-4f1e-b24c-8f27ad903656\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022,\r\n", + " \u0022tag2\u0022: \u0022value\u0022,\r\n", + " \u0022tag3\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cb40306f-180f-4e56-a1b5-467dce4eebde\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet6614\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443/ipConfigurations/azsmnet6614\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00227ca60c44-cf12-4f1e-b24c-8f27ad903656\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Basic\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022SSTP\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 0,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443/ipConfigurations/azsmnet6614\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [],\r\n", + " \u0022customBgpIpAddresses\u0022: []\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f78b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc9c85f602ae532725733d2161d1b900", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed297652-e1b4-482a-a285-c85fb57d7bdf", + "x-ms-client-request-id": "fc9c85f602ae532725733d2161d1b900", + "x-ms-correlation-request-id": "c12a837c-63d4-415b-965a-7fb194ae3f48", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "02d91941-67bf-4f3a-bcfe-e0af79ebe7f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080903Z:c12a837c-63d4-415b-965a-7fb194ae3f48" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f78c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "214ae52e8a00028d03ef2c462cd0b790", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05b16c75-b6c5-4a92-9acd-efb7a600e38a", + "x-ms-client-request-id": "214ae52e8a00028d03ef2c462cd0b790", + "x-ms-correlation-request-id": "43a41ca4-1a4c-4041-ae1b-1f138c5fa5ae", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "18f8a809-c120-4699-938e-225840732baf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080905Z:43a41ca4-1a4c-4041-ae1b-1f138c5fa5ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f78d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67c1e7de403de1cff40789332b1c3814", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c3e24c8-0eaf-4a39-ac9d-a68d88e75b59", + "x-ms-client-request-id": "67c1e7de403de1cff40789332b1c3814", + "x-ms-correlation-request-id": "e2984e0d-e691-4670-8354-e7b2701ee373", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "22cab089-179c-4727-a899-0e643292482c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080906Z:e2984e0d-e691-4670-8354-e7b2701ee373" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f78e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90bbda7d58e56b16f899f8bfd5e12654", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e031145-6fd4-4d6b-8c43-32f6dac983de", + "x-ms-client-request-id": "90bbda7d58e56b16f899f8bfd5e12654", + "x-ms-correlation-request-id": "9c30b959-616c-4cbc-a3db-3a967593844a", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "243a0224-78cf-4186-9bda-6d5093b2fc36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080907Z:9c30b959-616c-4cbc-a3db-3a967593844a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f78f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a42acbc5110eec215682df9005ad7e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b767affd-daa8-4987-8b38-fc426bc3303e", + "x-ms-client-request-id": "7a42acbc5110eec215682df9005ad7e7", + "x-ms-correlation-request-id": "855292bd-0940-400c-a543-dd42e367810f", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "126d4e40-89d6-44d9-bdc4-70424a796540", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080908Z:855292bd-0940-400c-a543-dd42e367810f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f790-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52c918b7261585abd0556fa447100c13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21973768-c9c7-4c4e-8b85-4bc5ae18f518", + "x-ms-client-request-id": "52c918b7261585abd0556fa447100c13", + "x-ms-correlation-request-id": "641d3127-1c75-490f-9c34-26fa12bbd389", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "b7f2ca49-2ca2-45e3-95cc-9da39c2bfc56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080910Z:641d3127-1c75-490f-9c34-26fa12bbd389" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f791-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e7634e0bdd92b0318cd7b7c2b1d6b9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59483fdb-6d7f-41ef-bd85-30d695be2276", + "x-ms-client-request-id": "7e7634e0bdd92b0318cd7b7c2b1d6b9e", + "x-ms-correlation-request-id": "3d42ecc5-a66f-45f9-94ba-d367eb5511b1", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "a3e1e627-9ab0-45ba-924a-747f97aee3ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080911Z:3d42ecc5-a66f-45f9-94ba-d367eb5511b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f792-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc0811c2d418953f01bdaabae21ea605", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37bad741-7f04-400a-802c-609d77577d52", + "x-ms-client-request-id": "bc0811c2d418953f01bdaabae21ea605", + "x-ms-correlation-request-id": "b97c48d1-0117-4cf2-b7fe-fa3bbc56a55a", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "cc157839-1497-4662-b1b8-b1921193afbd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080912Z:b97c48d1-0117-4cf2-b7fe-fa3bbc56a55a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f793-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc181a5c58e3f90d159d3a47ab2e5ab2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "955d4743-9197-4db9-897d-2835b7a455b2", + "x-ms-client-request-id": "cc181a5c58e3f90d159d3a47ab2e5ab2", + "x-ms-correlation-request-id": "7878995e-be0c-433c-82f1-36afb1a20125", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "16c6b483-a12a-46be-9b89-c1368c2dd64a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080914Z:7878995e-be0c-433c-82f1-36afb1a20125" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f794-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35e1d0ea50080cfaf4e17d1c134849f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f732f57-45c8-40f3-8f3a-ea920572beed", + "x-ms-client-request-id": "35e1d0ea50080cfaf4e17d1c134849f9", + "x-ms-correlation-request-id": "982d4c15-d717-4f8f-bff3-f9855a0deeea", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "a2de9b5c-67d1-45f9-9226-f7402ee2de47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080915Z:982d4c15-d717-4f8f-bff3-f9855a0deeea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f795-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "102076269e046aba040ea77a9af8ead3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d35977a-ebe6-4a70-8f94-2542c903d38f", + "x-ms-client-request-id": "102076269e046aba040ea77a9af8ead3", + "x-ms-correlation-request-id": "8198e19e-240a-42ea-bea6-f63062942dd1", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "29dc3b55-69a1-4514-93cc-efeea0668302", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080916Z:8198e19e-240a-42ea-bea6-f63062942dd1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f796-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11d0f762703c0cfc1f0cd701daf0e5cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc0e57d2-9a07-43f5-9314-8eaa87cdddeb", + "x-ms-client-request-id": "11d0f762703c0cfc1f0cd701daf0e5cc", + "x-ms-correlation-request-id": "67f76825-429d-45e4-86be-53c2922be8e3", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "d7afdc8b-0574-4d25-835c-53bac9fd03b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080917Z:67f76825-429d-45e4-86be-53c2922be8e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f797-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35214054490d4bae157731f9a87f72fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a73eb8f5-f2dd-4d5b-81ba-8729e3082791", + "x-ms-client-request-id": "35214054490d4bae157731f9a87f72fc", + "x-ms-correlation-request-id": "ef6dd356-7ee9-40d0-a82b-d9b4e56cb577", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "d6d6828a-53b4-4043-b1d7-96d502316bdd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080919Z:ef6dd356-7ee9-40d0-a82b-d9b4e56cb577" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f798-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bb9aaf63778b5bd7914f1f7c7b98f13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fafbe4a9-5daa-433e-a382-732bff7132d6", + "x-ms-client-request-id": "1bb9aaf63778b5bd7914f1f7c7b98f13", + "x-ms-correlation-request-id": "8f80b896-7cfe-4a15-998b-f5a939fc9695", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "8816aa5e-450e-4ba8-8c62-dfdd080aef47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080920Z:8f80b896-7cfe-4a15-998b-f5a939fc9695" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f799-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5926db28b5d619c54985fbc43f03639f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bbcb01e-3dae-4f55-bac0-bcbbc424fa3d", + "x-ms-client-request-id": "5926db28b5d619c54985fbc43f03639f", + "x-ms-correlation-request-id": "23fb6f22-1ebc-45da-a984-12a00cf2bfb4", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "6346844b-1d89-409e-abb2-0b39426a03dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080921Z:23fb6f22-1ebc-45da-a984-12a00cf2bfb4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f79a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "300bda9aca361c53826bbbf858b6835c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3be0c0f4-a53e-407a-882e-649251206682", + "x-ms-client-request-id": "300bda9aca361c53826bbbf858b6835c", + "x-ms-correlation-request-id": "5f82621c-f0e5-4bf6-8fe0-6e3d6d51cece", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "7bc47de4-0106-44cf-b98f-7a64469ddf4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080922Z:5f82621c-f0e5-4bf6-8fe0-6e3d6d51cece" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f79b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdd01de818594125e4a0d2f33cf87675", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38d02458-735e-4213-842e-7542a35aa9c4", + "x-ms-client-request-id": "cdd01de818594125e4a0d2f33cf87675", + "x-ms-correlation-request-id": "52b78a40-a312-4cf7-9bae-568747b50069", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "90b93d2e-ff13-4b2b-94c0-2ec364ac8b05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080924Z:52b78a40-a312-4cf7-9bae-568747b50069" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f79c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed5d51b15ead5edc870ad76bf9ccc093", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0872297e-c875-4314-b150-2f95f80a4afc", + "x-ms-client-request-id": "ed5d51b15ead5edc870ad76bf9ccc093", + "x-ms-correlation-request-id": "bc99eb46-25b8-4ef5-ae9d-67084d168efc", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "04d8ff52-5763-421f-8ac3-d24f1cf0bcfd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080925Z:bc99eb46-25b8-4ef5-ae9d-67084d168efc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f79d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21dc9e0196338146b4c94b95f860df89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4be847f8-338f-4348-ad7a-6586a3625c31", + "x-ms-client-request-id": "21dc9e0196338146b4c94b95f860df89", + "x-ms-correlation-request-id": "5bf7b0cb-ee7d-4500-aca5-02b2e1704c4d", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "d7b74272-287e-47a3-ab8d-0df76c8d27f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080926Z:5bf7b0cb-ee7d-4500-aca5-02b2e1704c4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f79e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "074746f5965889ae4071454f41ba4718", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5abc21c7-93da-4489-8b5b-0d0a5cb0d8cc", + "x-ms-client-request-id": "074746f5965889ae4071454f41ba4718", + "x-ms-correlation-request-id": "4e6af543-85ea-4db5-a247-50c26d871b53", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "557b7c8e-9e2d-48cc-828f-d03bb5c90e58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080928Z:4e6af543-85ea-4db5-a247-50c26d871b53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f79f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9df13ee0541c1a420bdb39e412466627", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f97a2731-0bac-437e-b7a9-833a2145f08e", + "x-ms-client-request-id": "9df13ee0541c1a420bdb39e412466627", + "x-ms-correlation-request-id": "7d1cae2c-1b61-466f-b5c8-31f858bc6981", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "2ca7bd1e-b8bb-449b-8f26-cc7784509a51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080929Z:7d1cae2c-1b61-466f-b5c8-31f858bc6981" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7a0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3764d2ab8846b3aef53e1c151f740fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "406b7c56-4e9c-4750-a9c0-b162efa8bce7", + "x-ms-client-request-id": "b3764d2ab8846b3aef53e1c151f740fa", + "x-ms-correlation-request-id": "029c17e5-03ad-40e1-a75c-0c26e8c7344a", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "fdf4ffea-590e-4b45-8c09-a450aa93a619", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080930Z:029c17e5-03ad-40e1-a75c-0c26e8c7344a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7a1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9b53382416ea16d042dfc7c5cca76fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bae9145-a172-42b1-a29f-f83b827c811c", + "x-ms-client-request-id": "b9b53382416ea16d042dfc7c5cca76fa", + "x-ms-correlation-request-id": "f38f95f9-18f0-4e66-a2cf-b0548349fe1f", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "59b748ea-4d58-4af4-a1f5-8f8d26cd8806", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080931Z:f38f95f9-18f0-4e66-a2cf-b0548349fe1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7a2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4241d0b944327930486aec87380c913", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "debbada7-95ad-4143-ac77-b1a3b0dd796c", + "x-ms-client-request-id": "f4241d0b944327930486aec87380c913", + "x-ms-correlation-request-id": "a7d06cf9-a889-47fe-9655-9a3a67b825cd", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "fb636c7f-8a82-4119-ab9d-da119c68d5c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080933Z:a7d06cf9-a889-47fe-9655-9a3a67b825cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7a3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de613e9bad91e8b9dfd5ae57bcbd0e24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e900a3fa-5290-484d-b79c-92ff45d209ad", + "x-ms-client-request-id": "de613e9bad91e8b9dfd5ae57bcbd0e24", + "x-ms-correlation-request-id": "accf5087-e008-4421-96dc-8a9627de2493", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "e826e9e0-38fd-48cf-a998-67dbac320954", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080934Z:accf5087-e008-4421-96dc-8a9627de2493" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7a4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33b6e6dc4cd2edb6a08db4e793a52e84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f80a839-1e8e-4a4c-9b8f-a13f1f1d9f98", + "x-ms-client-request-id": "33b6e6dc4cd2edb6a08db4e793a52e84", + "x-ms-correlation-request-id": "439f87aa-2b9e-4359-ad56-2101c6878950", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "c1272cb5-ab31-4cf9-99d2-de2e9ce616ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080935Z:439f87aa-2b9e-4359-ad56-2101c6878950" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7a5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ee1e86397685d68643c146ee53c6a46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "967b6974-57b9-40f4-8ace-cffc9d661941", + "x-ms-client-request-id": "1ee1e86397685d68643c146ee53c6a46", + "x-ms-correlation-request-id": "f4c1ea36-3852-47ed-9f59-ee512644dd53", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "fc49577f-bcf3-4cbf-b274-2d552f91c825", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080937Z:f4c1ea36-3852-47ed-9f59-ee512644dd53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7a6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ceb897796c94e4188743e03f8d1543a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d5b5496-37c2-4892-b372-4a35881108b6", + "x-ms-client-request-id": "8ceb897796c94e4188743e03f8d1543a", + "x-ms-correlation-request-id": "0151c021-03e0-4d7b-afdc-35c2053ae3e5", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "b4b0f0eb-5b3c-4acd-9d90-222bea23de4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080938Z:0151c021-03e0-4d7b-afdc-35c2053ae3e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7a7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4f32aa6f0dc45bb7e59ce9637470863", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b951a597-fb70-467a-b9c9-81d27fb37470", + "x-ms-client-request-id": "d4f32aa6f0dc45bb7e59ce9637470863", + "x-ms-correlation-request-id": "07a54448-3187-4215-bfb9-2799d546e77e", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "c7aa446a-6768-420b-9081-a089457001f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080939Z:07a54448-3187-4215-bfb9-2799d546e77e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7a8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09706e23a1b9cdbaa79295f458656493", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58190819-4d02-4acf-8bf5-de65a863bd24", + "x-ms-client-request-id": "09706e23a1b9cdbaa79295f458656493", + "x-ms-correlation-request-id": "e4acf212-2776-49dc-8a9d-e3f64a857323", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "a2d44c6b-5523-482e-a746-ddf212a2b1b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080941Z:e4acf212-2776-49dc-8a9d-e3f64a857323" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7a9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbc7dae796498769cea60d70c7aa1641", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73316867-dd1c-40df-80e5-fa2dc44ab5c9", + "x-ms-client-request-id": "bbc7dae796498769cea60d70c7aa1641", + "x-ms-correlation-request-id": "9fe4e8f4-8ca9-4293-958c-46e755397c6f", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "1397a1c1-7a0c-4306-9829-e3e8aa425378", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080942Z:9fe4e8f4-8ca9-4293-958c-46e755397c6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7aa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89e0db6c4b61058070252c495bc6ec18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59ff4b51-bd54-4e39-bbb4-c8c092525171", + "x-ms-client-request-id": "89e0db6c4b61058070252c495bc6ec18", + "x-ms-correlation-request-id": "fc87b2ce-8f29-4dd7-8484-75d5a43c4dae", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "97348255-2965-41b9-9637-5b1ae00eff05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080943Z:fc87b2ce-8f29-4dd7-8484-75d5a43c4dae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ab-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5daf3bf44c7f8c1a04e83b12944906fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1d26bab-eff7-4f9a-8413-e6aa01324a0c", + "x-ms-client-request-id": "5daf3bf44c7f8c1a04e83b12944906fc", + "x-ms-correlation-request-id": "d0bdcbcc-a5e7-43a7-b24c-772f86980bfa", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "c7ce159b-07b3-4107-896f-4026db615cf9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080944Z:d0bdcbcc-a5e7-43a7-b24c-772f86980bfa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ac-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d88537cdb859c3259c24a236a202c07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0bf6e6d-2304-46f7-879a-e2ccd000db63", + "x-ms-client-request-id": "7d88537cdb859c3259c24a236a202c07", + "x-ms-correlation-request-id": "225105a2-e179-4d6c-9d04-3c8242e985fa", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "e8ab49c0-262a-4457-86ac-edf5748af42b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080946Z:225105a2-e179-4d6c-9d04-3c8242e985fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ad-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c7cf5bab9fb1fc1c05485780f6e7026", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "902920aa-c04b-4257-a2e5-8f76164d985f", + "x-ms-client-request-id": "8c7cf5bab9fb1fc1c05485780f6e7026", + "x-ms-correlation-request-id": "cf7730b7-206b-44c6-b900-ef7ac00efeca", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "c2422fdd-238d-4dd6-bacb-9007ce0d901e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080947Z:cf7730b7-206b-44c6-b900-ef7ac00efeca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ae-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07cd301f6e3e1993081303bc02f722e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29f2f452-7450-45bc-a75a-41fc9904156f", + "x-ms-client-request-id": "07cd301f6e3e1993081303bc02f722e4", + "x-ms-correlation-request-id": "9d94613a-2d3a-4536-9183-e61d532fd615", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "19e79110-313d-4e37-81ac-f73fb87084da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080948Z:9d94613a-2d3a-4536-9183-e61d532fd615" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7af-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e5834bc79cdc2009169bd3156ba8ceb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee655694-21ad-4ce4-964d-f36ffd6fcea2", + "x-ms-client-request-id": "9e5834bc79cdc2009169bd3156ba8ceb", + "x-ms-correlation-request-id": "7c7a7260-9cb6-482e-bb5a-7aa41735af8b", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "806c379e-6e71-4266-920b-996ebdab5a39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080949Z:7c7a7260-9cb6-482e-bb5a-7aa41735af8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7b0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3903245124534bc8616383e8b5051dc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09f94160-e12e-40b4-97b7-7e8a5ef23c96", + "x-ms-client-request-id": "3903245124534bc8616383e8b5051dc8", + "x-ms-correlation-request-id": "c1f8e525-ece4-41d0-a7f8-53d0af3d2e6a", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "1be3b397-a7fc-4729-b2f1-500197ea0b7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080951Z:c1f8e525-ece4-41d0-a7f8-53d0af3d2e6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7b1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbbba031d215a5582f0a75d5b162c24e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0265d645-f605-4fe2-ad16-fadd56097186", + "x-ms-client-request-id": "dbbba031d215a5582f0a75d5b162c24e", + "x-ms-correlation-request-id": "720ab757-206c-4339-8050-0133d4eba006", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "582d6292-c649-43cd-9944-08ad1bbc93dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080952Z:720ab757-206c-4339-8050-0133d4eba006" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7b2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd6a1886e8f398906b0d3d6af5180c8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4691edbf-df53-431e-9369-a5b76b2ef640", + "x-ms-client-request-id": "dd6a1886e8f398906b0d3d6af5180c8c", + "x-ms-correlation-request-id": "c03cd76c-8f1b-445a-aa29-e39f4fce2fbb", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "b0448c51-157e-4acb-8929-e623246d8475", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080953Z:c03cd76c-8f1b-445a-aa29-e39f4fce2fbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7b3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5fff44cb1ff7fd6cb5d0a48aff39aff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "697c3625-356f-4ca2-9479-2fe50a192c8d", + "x-ms-client-request-id": "b5fff44cb1ff7fd6cb5d0a48aff39aff", + "x-ms-correlation-request-id": "7b8e8104-d3f1-4fe1-a604-f12e950b9820", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "56b86c51-5bed-4bf7-a1ab-4634a7daa66a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080955Z:7b8e8104-d3f1-4fe1-a604-f12e950b9820" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7b4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d6135a03f9b49d510226f0794eeb017", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1102474f-748d-416f-a9a2-fe93d015cdbe", + "x-ms-client-request-id": "9d6135a03f9b49d510226f0794eeb017", + "x-ms-correlation-request-id": "4a9aaed4-dc4d-49cd-abc2-a26805bcb6da", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "76a2de47-dfcb-4e45-9d80-57c4efffb814", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080956Z:4a9aaed4-dc4d-49cd-abc2-a26805bcb6da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7b5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc88e8fe0d63d54f41ea1195dd48e877", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0d9f583-b13e-410e-b2bd-6448900b4722", + "x-ms-client-request-id": "bc88e8fe0d63d54f41ea1195dd48e877", + "x-ms-correlation-request-id": "2123b4a2-4c44-4712-80fe-0d9d9f5336b1", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "c2e132aa-c480-4ccf-8077-9b07a1232ce0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080957Z:2123b4a2-4c44-4712-80fe-0d9d9f5336b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7b6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0c93e736eb60cf11fb5a4dc41ceebdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccc629a7-9213-48f0-a1d9-996c3e8155cd", + "x-ms-client-request-id": "c0c93e736eb60cf11fb5a4dc41ceebdd", + "x-ms-correlation-request-id": "19b4bbb9-1cb8-4e4c-8b93-506cbda45eaa", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "d4de5823-b166-49f5-907c-323f2a7700bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T080958Z:19b4bbb9-1cb8-4e4c-8b93-506cbda45eaa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7b7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c64af3addd6a929be68c5cb02e3f6cc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:09:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa4faf05-0c20-4a45-aefe-e041557c1434", + "x-ms-client-request-id": "c64af3addd6a929be68c5cb02e3f6cc8", + "x-ms-correlation-request-id": "de5286aa-f24d-45a5-b380-42022882f6f7", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "e2f314e4-197c-4dbb-9bf6-e6ff5197aa52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081000Z:de5286aa-f24d-45a5-b380-42022882f6f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7b8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5694f73aef248f60f77c9dad68729372", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d098a31e-3f84-45f8-a164-965dd460b42b", + "x-ms-client-request-id": "5694f73aef248f60f77c9dad68729372", + "x-ms-correlation-request-id": "84154aa5-b72f-4766-a797-a324e2064f12", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "3a30b6ec-5884-4f0d-8b76-72d6ba961ed4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081001Z:84154aa5-b72f-4766-a797-a324e2064f12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7b9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eae833ff22fd950ca237da291241dedf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fad3a25a-8d11-48d4-a827-11d7fe190cbc", + "x-ms-client-request-id": "eae833ff22fd950ca237da291241dedf", + "x-ms-correlation-request-id": "fa5685a7-7878-4f5d-bdd6-76f3cb429c33", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "5b6440f4-02f6-4fea-8c12-2cd5f7a683c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081002Z:fa5685a7-7878-4f5d-bdd6-76f3cb429c33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ba-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4aa2dc49943abeb992bacfee40ed2973", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "101a8dcf-6106-47c1-93f5-1cc92009e4b0", + "x-ms-client-request-id": "4aa2dc49943abeb992bacfee40ed2973", + "x-ms-correlation-request-id": "23ffbc8d-3fd4-46b0-8f81-0523df2cb053", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "9ee9a1df-9487-44d3-96d9-93af332a9605", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081004Z:23ffbc8d-3fd4-46b0-8f81-0523df2cb053" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7bb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fab0e9f8815717caeafeb4ec15367db6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "723d731d-dc96-42a6-a4ab-ba117b445013", + "x-ms-client-request-id": "fab0e9f8815717caeafeb4ec15367db6", + "x-ms-correlation-request-id": "c95ebe01-9549-4bb0-a2a7-fe2fcdf70dee", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "69dd0dcc-5043-4a6b-9e32-566768548f7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081005Z:c95ebe01-9549-4bb0-a2a7-fe2fcdf70dee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7bc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b64bd9e49d06b387a295843531e55b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bbc11e78-647f-40f6-83a3-18cb72cee66d", + "x-ms-client-request-id": "8b64bd9e49d06b387a295843531e55b4", + "x-ms-correlation-request-id": "a29014e4-c0db-427b-af0b-6edc1e60ec31", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "906e2c3f-1fe1-4840-b823-b81d9748fa2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081007Z:a29014e4-c0db-427b-af0b-6edc1e60ec31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7bd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2931660de490c788128a5f3ce0cca85b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ead5d69b-360a-4fd2-b6f6-73c0a9c96b03", + "x-ms-client-request-id": "2931660de490c788128a5f3ce0cca85b", + "x-ms-correlation-request-id": "65f40524-6e53-47df-9b32-2f00a8709e93", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "9e5d359f-9677-42ad-ab47-35fa16351727", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081008Z:65f40524-6e53-47df-9b32-2f00a8709e93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7be-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8350183d9d89aea3b0457f2d2986c4cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54ceee61-248d-4f2e-a335-c238e362152f", + "x-ms-client-request-id": "8350183d9d89aea3b0457f2d2986c4cc", + "x-ms-correlation-request-id": "ee418d4e-a32b-4648-b480-46b30d01fe27", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "5396a813-2832-45f3-9d13-2035690c40ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081010Z:ee418d4e-a32b-4648-b480-46b30d01fe27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7bf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afdfffa95305b926349c7945eafc8aae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "44394a51-eea8-487b-91ab-fc691a478fbf", + "x-ms-client-request-id": "afdfffa95305b926349c7945eafc8aae", + "x-ms-correlation-request-id": "3017072a-7b9b-4b59-8c08-fe3c0acfdfb6", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "3820efbb-07af-42f1-907c-eed692022b39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081012Z:3017072a-7b9b-4b59-8c08-fe3c0acfdfb6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7c0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a05fc81d1cd6f2bc382784a645b9e8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4c0260b-d21c-4225-9a88-8b0306c6074f", + "x-ms-client-request-id": "3a05fc81d1cd6f2bc382784a645b9e8b", + "x-ms-correlation-request-id": "94c864ad-7218-4877-b7af-d642f2d9051f", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "b0ff270a-507c-45c9-96e3-d9907a79ee9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081013Z:94c864ad-7218-4877-b7af-d642f2d9051f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7c1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e09292c5f9ede955f2964eec245dc4b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a16176d2-0fa9-493d-a448-9b751c40a9d1", + "x-ms-client-request-id": "e09292c5f9ede955f2964eec245dc4b4", + "x-ms-correlation-request-id": "7396443b-9038-4407-adac-832f4d26ada5", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "5da1a84e-0cfe-4521-a0db-3087c61d34d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081014Z:7396443b-9038-4407-adac-832f4d26ada5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7c2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cacd1ba8981d7fed46feb82dbdb55d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e43ed84e-d0a4-45f0-bf92-03cebe2c629e", + "x-ms-client-request-id": "2cacd1ba8981d7fed46feb82dbdb55d9", + "x-ms-correlation-request-id": "8017bba0-7a98-4ae3-91d4-3a968e86a196", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "25e2d0a5-f4c7-4a21-b429-7ea8139d17e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081015Z:8017bba0-7a98-4ae3-91d4-3a968e86a196" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7c3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "577fedfeaa6987c1a61b4837833e4b65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f815e0a-5a33-49b0-968c-c4963b1a39b0", + "x-ms-client-request-id": "577fedfeaa6987c1a61b4837833e4b65", + "x-ms-correlation-request-id": "dadaea84-aa2f-4f81-acf7-7af9b2aa9d6d", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "6bc767c6-19a4-4e20-b1b1-444971a9409b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081017Z:dadaea84-aa2f-4f81-acf7-7af9b2aa9d6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7c4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9390c3be71af3c0a94bb0c7d0dd30e16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d1cc563-6ee7-417c-baa4-d3ab38245209", + "x-ms-client-request-id": "9390c3be71af3c0a94bb0c7d0dd30e16", + "x-ms-correlation-request-id": "838047c9-1103-4548-aa64-9344161ff80d", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "a875f083-fd11-4e57-a83b-d48b8fcdc319", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081018Z:838047c9-1103-4548-aa64-9344161ff80d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7c5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37ed75416cdd104b1024866641c75495", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea29a69e-fe0e-42a6-849d-81ec71e939ff", + "x-ms-client-request-id": "37ed75416cdd104b1024866641c75495", + "x-ms-correlation-request-id": "dccb9fd6-169d-4dc8-bf72-7a52aef2b2a1", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "6541c5e6-3a34-4fe4-88ef-4d2806af27f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081019Z:dccb9fd6-169d-4dc8-bf72-7a52aef2b2a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7c6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17c38624c14b8d2ae243c3ae9d4379d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64f68567-23d4-4e51-83b3-a05363b7db95", + "x-ms-client-request-id": "17c38624c14b8d2ae243c3ae9d4379d3", + "x-ms-correlation-request-id": "73fe04dd-07f2-4b9a-8a80-5a451760eb8c", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "fd1f5ec2-cb0f-4d57-ba2f-584b30ddac64", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081021Z:73fe04dd-07f2-4b9a-8a80-5a451760eb8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7c7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0df5310d13505288787f838aeba4facd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae997548-8b3a-4a53-9c00-302ae78ab05d", + "x-ms-client-request-id": "0df5310d13505288787f838aeba4facd", + "x-ms-correlation-request-id": "45506cfd-2c2e-4665-a3c6-9e8f54de4892", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "a48fd888-d2eb-48f7-b071-11367162f37f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081022Z:45506cfd-2c2e-4665-a3c6-9e8f54de4892" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7c8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87597667f60f7fcb4b605499a89c72cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32681bae-fda1-4c02-a2ab-6153c013a357", + "x-ms-client-request-id": "87597667f60f7fcb4b605499a89c72cc", + "x-ms-correlation-request-id": "18db3aee-46fa-4403-ba62-2df35e968ad5", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "944f14ac-3e85-49a8-8e00-6419adf51e41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081023Z:18db3aee-46fa-4403-ba62-2df35e968ad5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7c9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f58b2aa46d11044fd719fcb3e9fa23e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1064b84b-f5c8-4ecc-9723-a8d7f45872b2", + "x-ms-client-request-id": "0f58b2aa46d11044fd719fcb3e9fa23e", + "x-ms-correlation-request-id": "869a9096-4255-49d5-8b42-8206d07af4b3", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "6711869f-ce96-428a-bc5f-d9b46e7fabf1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081025Z:869a9096-4255-49d5-8b42-8206d07af4b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ca-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2647f649f2e916c46676c2f0bfeea9db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bac94c87-e5d9-4ac8-ba16-e54cde8a0914", + "x-ms-client-request-id": "2647f649f2e916c46676c2f0bfeea9db", + "x-ms-correlation-request-id": "24f71061-fe3a-4371-85c7-e3e851736fa1", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "fb528d32-f8ab-44c2-b73a-d6aad85677ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081026Z:24f71061-fe3a-4371-85c7-e3e851736fa1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7cb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38dfb60dea4b20fb3248899d57ff40ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53344cbc-b8f2-4d80-bbb6-a1b8c671f689", + "x-ms-client-request-id": "38dfb60dea4b20fb3248899d57ff40ab", + "x-ms-correlation-request-id": "1c569d12-90ad-4d42-b26e-c277026888f0", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "b318bef3-8d3e-4758-bd26-ddc8624438a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081027Z:1c569d12-90ad-4d42-b26e-c277026888f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7cc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b25015be4b55b8e3ee42a95a8454510e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23cffed9-1bf0-4166-89e2-9f700d5a375e", + "x-ms-client-request-id": "b25015be4b55b8e3ee42a95a8454510e", + "x-ms-correlation-request-id": "d96763ae-d04b-4414-98c6-16f73252018b", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "a959bdbc-d673-44e7-802e-3ab587c5d025", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081029Z:d96763ae-d04b-4414-98c6-16f73252018b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7cd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88bec3c769bf5ef3fa26f4a16826bf67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3283a671-6810-4460-bdf6-70952a3e1e02", + "x-ms-client-request-id": "88bec3c769bf5ef3fa26f4a16826bf67", + "x-ms-correlation-request-id": "e92a9e08-4432-4ce9-ab4c-07a4b4e60e30", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "5a3ed855-781b-4283-82dd-4cfe8a4a2495", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081030Z:e92a9e08-4432-4ce9-ab4c-07a4b4e60e30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ce-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9311635f79ec186d327490841a19cdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6eb957e7-2819-4036-b683-c3cf1835c6c6", + "x-ms-client-request-id": "a9311635f79ec186d327490841a19cdd", + "x-ms-correlation-request-id": "6ec1096f-d95a-4fa8-b141-bcbab26f85eb", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "f9186d03-ca87-4b35-994a-d52d51dcf97b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081031Z:6ec1096f-d95a-4fa8-b141-bcbab26f85eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7cf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93d67af6b74055eb22f1b72f564150c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8592fcf1-e433-44ee-8fc9-8f5e8e8451fd", + "x-ms-client-request-id": "93d67af6b74055eb22f1b72f564150c8", + "x-ms-correlation-request-id": "253c43c0-40c2-4190-b456-5ad09f9e5499", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "13b5ff78-51af-483f-8bf2-c2d2d3b529ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081032Z:253c43c0-40c2-4190-b456-5ad09f9e5499" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7d0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d244282a823cf703dfcb5981fea1d59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec2ee2da-0f16-47db-be47-ef9d9b7b6011", + "x-ms-client-request-id": "6d244282a823cf703dfcb5981fea1d59", + "x-ms-correlation-request-id": "1371704d-38ff-4d29-99bf-14289d050585", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "8e04d34d-aff8-4d5f-8c5e-2cd09f07f537", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081034Z:1371704d-38ff-4d29-99bf-14289d050585" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7d1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edaa168a2b507e262bdc87ad40566a91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be6aad17-dc14-49d7-b365-24d252270d83", + "x-ms-client-request-id": "edaa168a2b507e262bdc87ad40566a91", + "x-ms-correlation-request-id": "6a9a864a-9fd0-4456-a407-d7543a03ab58", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "489a1995-b9f6-4d16-a975-19041ff9a6ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081035Z:6a9a864a-9fd0-4456-a407-d7543a03ab58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7d2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff8581d72f7c4eba0a06564302533537", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b87df8a-2ad8-4c28-b6b6-5ecb9923b0aa", + "x-ms-client-request-id": "ff8581d72f7c4eba0a06564302533537", + "x-ms-correlation-request-id": "8d542f3c-79c0-40e7-9d98-a3b175a23e2f", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "7a0b39ee-011b-48da-a6ea-a5a838f435e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081036Z:8d542f3c-79c0-40e7-9d98-a3b175a23e2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7d3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40a45dd4629757781ba6414621c28fe6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d9b4b7c-c01d-4ecf-bf2c-2912e0c75399", + "x-ms-client-request-id": "40a45dd4629757781ba6414621c28fe6", + "x-ms-correlation-request-id": "3d201bcd-a4f3-4329-b818-6bb27db8194f", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "136f0cc1-738b-46ba-ac8d-2253e334f21e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081038Z:3d201bcd-a4f3-4329-b818-6bb27db8194f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7d4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dc124921e645bdd5c5ce249d5e27bd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d96f577-fbe6-4c8d-93f6-8faa4d471815", + "x-ms-client-request-id": "9dc124921e645bdd5c5ce249d5e27bd7", + "x-ms-correlation-request-id": "c9ba248b-b38e-4282-998b-b400e3fe7b9e", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "3b5865a1-f3ff-4bf6-a103-120609ddeac0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081039Z:c9ba248b-b38e-4282-998b-b400e3fe7b9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7d5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3d94fa62ab174fa092ee3d5ed732d47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96973710-4229-4b93-b832-1bbe6dd0b954", + "x-ms-client-request-id": "e3d94fa62ab174fa092ee3d5ed732d47", + "x-ms-correlation-request-id": "4f0b5a54-b57f-4b13-97b6-b711a051dcea", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "196017af-c2f8-4e5a-ab65-7ab2c98eff2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081040Z:4f0b5a54-b57f-4b13-97b6-b711a051dcea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7d6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "deb16f779792b5d28049e43a7f2e8139", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5d86d76-792c-4c5f-9ed0-98a269bb655a", + "x-ms-client-request-id": "deb16f779792b5d28049e43a7f2e8139", + "x-ms-correlation-request-id": "7378c29a-848f-4025-bd46-b6a23a2a711d", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "7481ca5c-0864-46fb-8887-0d99c124f7e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081041Z:7378c29a-848f-4025-bd46-b6a23a2a711d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7d7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1a06a2aabe96734294c94363a076de8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46c6ece2-d7fd-41c3-95f2-b97b7926d536", + "x-ms-client-request-id": "d1a06a2aabe96734294c94363a076de8", + "x-ms-correlation-request-id": "5f52d223-0981-4559-8243-8a447d83f94c", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "e00558ac-92ad-4b4f-bd4b-1e0f4584b69e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081043Z:5f52d223-0981-4559-8243-8a447d83f94c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7d8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66d29b2f9d300e457d23626846bff4da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8794b054-2aeb-440c-a773-c44b50092fbf", + "x-ms-client-request-id": "66d29b2f9d300e457d23626846bff4da", + "x-ms-correlation-request-id": "bde04e9a-aa0c-415e-b11d-55fe4c5bb65d", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "883913ff-b13b-4fee-972a-e072578323d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081044Z:bde04e9a-aa0c-415e-b11d-55fe4c5bb65d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7d9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83aaaaad5bd3cb5d3a4ab445039c7b78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64ce424f-4eaa-4816-9839-f6dcc2e058e1", + "x-ms-client-request-id": "83aaaaad5bd3cb5d3a4ab445039c7b78", + "x-ms-correlation-request-id": "ab50150e-3d79-402d-90b0-6865942a4348", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "c67ea985-3b44-4cd0-9e33-fe3c0986f145", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081046Z:ab50150e-3d79-402d-90b0-6865942a4348" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/814c73be-60a2-48d6-b2f9-7f83fab731ac?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7da-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e40bfbdc1a5c8d08249153c649cc216a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dfd5f9f3-305d-41db-a112-2f2d2637e4d5", + "x-ms-client-request-id": "e40bfbdc1a5c8d08249153c649cc216a", + "x-ms-correlation-request-id": "41e204aa-a804-4b81-916b-a761399a945f", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "9f3571ec-d506-4685-a005-487ff4dd2392", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081047Z:41e204aa-a804-4b81-916b-a761399a945f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7db-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9088b957ea5cd3153d062be6e9ff0be1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2457", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83fee4dc-2607-4f3e-8a21-eed98bc25e29", + "x-ms-client-request-id": "9088b957ea5cd3153d062be6e9ff0be1", + "x-ms-correlation-request-id": "fa1e7585-3776-429c-8d2e-4dfd5cc0de1b", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "eb9f994f-bb4c-44a7-8763-6c0cc6338ac0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081047Z:fa1e7585-3776-429c-8d2e-4dfd5cc0de1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6443\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00220a5473ce-08cb-4607-9ab4-3cba90c8fd61\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022,\r\n", + " \u0022tag2\u0022: \u0022value\u0022,\r\n", + " \u0022tag3\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022cb40306f-180f-4e56-a1b5-467dce4eebde\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet6614\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443/ipConfigurations/azsmnet6614\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00220a5473ce-08cb-4607-9ab4-3cba90c8fd61\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/publicIPAddresses/azsmnet1653\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworks/azsmnet829/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Basic\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443/ipConfigurations/azsmnet6614\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.148.170.39\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5667/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6443?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|2c28f7dc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a8ce9a710b4927ea11d5e410797826e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Mon, 23 Aug 2021 08:10:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de09e720-956f-44dc-b86a-3f566cc1ccb3", + "x-ms-client-request-id": "4a8ce9a710b4927ea11d5e410797826e", + "x-ms-correlation-request-id": "2e6dc2d5-5767-47d1-9404-009d9d4b4608", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "1a2346b5-a10f-4cd1-8e99-f470054daa19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081059Z:2e6dc2d5-5767-47d1-9404-009d9d4b4608" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7dd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f1e7285d64047b53bf5ef3e8bd3cba6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:10:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f54ed69-a2b6-4b9e-8dd2-352bd15aaa87", + "x-ms-client-request-id": "5f1e7285d64047b53bf5ef3e8bd3cba6", + "x-ms-correlation-request-id": "eb292f3c-ae05-43a5-90c9-584fe3de34b4", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "7deca774-0e7f-4593-9b64-f09fbe4a3229", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081100Z:eb292f3c-ae05-43a5-90c9-584fe3de34b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7de-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fbdbd84c211bdcecd9a647c6828a47f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d7cd898-f2ab-4028-8a13-afd146d6b2bd", + "x-ms-client-request-id": "9fbdbd84c211bdcecd9a647c6828a47f", + "x-ms-correlation-request-id": "0c5abf05-6bcf-40c2-9cfa-41830554a7d1", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "c09504df-4171-4bd5-ae86-c0c3d54d80d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081101Z:0c5abf05-6bcf-40c2-9cfa-41830554a7d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7df-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95bb397a2278522d94a60e1dfbdd6513", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "158a20c6-535e-4023-9366-bbe3561009e9", + "x-ms-client-request-id": "95bb397a2278522d94a60e1dfbdd6513", + "x-ms-correlation-request-id": "1cd85e52-7a84-4558-be0c-8cfb96af048e", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "1138707d-2d79-49cf-ab75-6e191f0b9bc0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081102Z:1cd85e52-7a84-4558-be0c-8cfb96af048e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7e0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30d1006b0464c313a46192a67239de12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea9c6a8c-85ba-4751-873d-e196d8a55b92", + "x-ms-client-request-id": "30d1006b0464c313a46192a67239de12", + "x-ms-correlation-request-id": "a8604376-edc8-4499-80fe-b5e485efb59d", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "f10213c0-ac2a-443d-8a30-f2bcc8ec6a41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081103Z:a8604376-edc8-4499-80fe-b5e485efb59d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7e1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52c46f513617612e906a0b6bb3b0c2ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ea4259e-d70e-4013-a283-16a371592cd4", + "x-ms-client-request-id": "52c46f513617612e906a0b6bb3b0c2ef", + "x-ms-correlation-request-id": "7d17c0c0-c2d6-4c5c-812f-94036dc2f0ac", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "62be4e5b-6b09-44fa-bfc9-010c3ca8b396", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081105Z:7d17c0c0-c2d6-4c5c-812f-94036dc2f0ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7e2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "681051347357751b25f8f0179087e05a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b953cd35-df10-49de-9fb3-38b3ba1528cc", + "x-ms-client-request-id": "681051347357751b25f8f0179087e05a", + "x-ms-correlation-request-id": "b0615831-b9b5-4f60-a46f-d890735910e6", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "2adcdaf2-7141-46e8-b68b-9b66eeb64d6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081106Z:b0615831-b9b5-4f60-a46f-d890735910e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7e3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bcbfbc7131835fbd270a0f9f9a810f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b79eac7b-43ce-4532-ac13-59f72a522893", + "x-ms-client-request-id": "8bcbfbc7131835fbd270a0f9f9a810f3", + "x-ms-correlation-request-id": "7d27eb9c-6291-4d07-9eea-bc4621c7020f", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "becdcdbc-29a0-4ad4-bf9d-59f1a68d1d86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081107Z:7d27eb9c-6291-4d07-9eea-bc4621c7020f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7e4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2071a29f7628debb544f2c1f4516d009", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17c36299-df7d-49a1-878a-00070857d8ea", + "x-ms-client-request-id": "2071a29f7628debb544f2c1f4516d009", + "x-ms-correlation-request-id": "2a2e4d11-f578-4973-9183-2d5b0fc4a1d5", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "216eb217-4fcc-47b2-974a-dc679ef838dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081109Z:2a2e4d11-f578-4973-9183-2d5b0fc4a1d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7e5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7a3b08a36e421d655db95e7d2217c7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3e9afc9-352c-4544-b6ec-e1749c2b0918", + "x-ms-client-request-id": "b7a3b08a36e421d655db95e7d2217c7d", + "x-ms-correlation-request-id": "36ce8627-2c77-4159-b1b6-7cd1caf69416", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "d85f7156-1f77-4ae3-8445-a62d0a612551", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081110Z:36ce8627-2c77-4159-b1b6-7cd1caf69416" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7e6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee77fde8bf15513240ec37c9e6dcefbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4490203a-7526-43d4-98e1-22dc2a9008a0", + "x-ms-client-request-id": "ee77fde8bf15513240ec37c9e6dcefbb", + "x-ms-correlation-request-id": "6ce51163-1bf4-494b-938d-1fb84942a286", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "d419b0ae-1e9b-4e32-a3c8-4e1ce9670541", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081111Z:6ce51163-1bf4-494b-938d-1fb84942a286" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7e7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "486f979f5805690ecb4fcb4ce1d40c33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12772f5a-ffd5-4209-89a3-4203e5eb5dea", + "x-ms-client-request-id": "486f979f5805690ecb4fcb4ce1d40c33", + "x-ms-correlation-request-id": "9740c39d-f678-44f3-9484-dd9c318ed999", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "fd572283-fb29-41ae-9755-23d9b671998f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081113Z:9740c39d-f678-44f3-9484-dd9c318ed999" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7e8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4837afd2e29fcaf37e5277f8ff0d3a79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8f07c65-f2d6-4050-98ce-5a770538a351", + "x-ms-client-request-id": "4837afd2e29fcaf37e5277f8ff0d3a79", + "x-ms-correlation-request-id": "e31950ca-a28c-4561-a2b8-f5ad05e7ffd8", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "26990dfb-6378-48e9-9b01-448b1f7c0b62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081114Z:e31950ca-a28c-4561-a2b8-f5ad05e7ffd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7e9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b47d9ec33b18f78ee0e22c5f4e5706b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d3da6a4-bec7-4bde-9906-7d372c9949ef", + "x-ms-client-request-id": "3b47d9ec33b18f78ee0e22c5f4e5706b", + "x-ms-correlation-request-id": "c7c856e4-7576-437b-8505-f8c5be315290", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "e21cd87b-6a87-45a8-b4c7-eb206c4bfcdf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081115Z:c7c856e4-7576-437b-8505-f8c5be315290" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ea-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37f603e0a6a5bc1ca4a5cab2e11669be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c69fe494-930a-42fa-9247-e63c2e08222b", + "x-ms-client-request-id": "37f603e0a6a5bc1ca4a5cab2e11669be", + "x-ms-correlation-request-id": "d60a51bb-634c-4303-940a-f0f3d404385d", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "65785dc9-fd0e-40ab-8170-1db11aa5b130", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081117Z:d60a51bb-634c-4303-940a-f0f3d404385d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7eb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07605115d08c9e8136a75a90c02dd598", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7cf1e3a0-7c54-4519-b0ad-91105801eeb0", + "x-ms-client-request-id": "07605115d08c9e8136a75a90c02dd598", + "x-ms-correlation-request-id": "0fae891e-c1d0-4b88-883f-658e0298d26b", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "81abc18d-796e-4084-b1c4-a6f48a6085df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081118Z:0fae891e-c1d0-4b88-883f-658e0298d26b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ec-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb170be2021645d4bd8b960c69c5aed7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f558a6da-e683-4f54-af98-fea925c56fef", + "x-ms-client-request-id": "fb170be2021645d4bd8b960c69c5aed7", + "x-ms-correlation-request-id": "379d3939-d88a-4f82-8151-281bd013c555", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "cad22463-92ca-4f45-b7fd-71a1daca1381", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081119Z:379d3939-d88a-4f82-8151-281bd013c555" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ed-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2b064a4688410df825700fd4c8bfc77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a5152ff-1b44-4c04-84b4-738736ea8322", + "x-ms-client-request-id": "a2b064a4688410df825700fd4c8bfc77", + "x-ms-correlation-request-id": "ada4660f-5c8d-4023-889f-bf8cec12d909", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "e73ce76d-de32-45da-b510-149bf15e7a68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081121Z:ada4660f-5c8d-4023-889f-bf8cec12d909" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ee-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6d031cf6eff12a77d1a4a013a753571", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02fc75c6-8554-4c20-b1b1-e6ca30543a7f", + "x-ms-client-request-id": "d6d031cf6eff12a77d1a4a013a753571", + "x-ms-correlation-request-id": "da8a68d1-bcd4-4d9f-ac6e-a938759471f5", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "40f99328-95b6-40bc-ae55-13625402b6bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081122Z:da8a68d1-bcd4-4d9f-ac6e-a938759471f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ef-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5beb82f9327c79132b0778be02d7f831", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4cff0b46-3e31-44f6-a7a4-531d19aac763", + "x-ms-client-request-id": "5beb82f9327c79132b0778be02d7f831", + "x-ms-correlation-request-id": "82136285-a5f2-4db0-ba50-0c8e53a4d330", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "2f63eb18-bdcc-46f5-a16b-d8c2b0851439", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081123Z:82136285-a5f2-4db0-ba50-0c8e53a4d330" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7f0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "373c1f8fd7f435d8bc9e256a1eded50c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "574121f5-e1a4-409d-8229-b27a6e085c4f", + "x-ms-client-request-id": "373c1f8fd7f435d8bc9e256a1eded50c", + "x-ms-correlation-request-id": "0340353b-eb89-4b78-a04f-6bb1c9f07ee8", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "a9ce7e7c-96eb-4527-9f85-847dac1727b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081124Z:0340353b-eb89-4b78-a04f-6bb1c9f07ee8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7f1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca038f22a0a09dfa1e57aaf8f5e910a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1050feb9-e4c7-499f-860b-0881ffa2d667", + "x-ms-client-request-id": "ca038f22a0a09dfa1e57aaf8f5e910a6", + "x-ms-correlation-request-id": "8435c37a-148b-4717-aaca-a5f2230e7b4a", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "6237a689-03d6-4cde-97fd-b0f0c6649037", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081126Z:8435c37a-148b-4717-aaca-a5f2230e7b4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7f2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a711921fe39217caab59fde0ca95b4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8e50d28-3ffc-4d29-b4df-b2cd0b643c65", + "x-ms-client-request-id": "1a711921fe39217caab59fde0ca95b4d", + "x-ms-correlation-request-id": "cf5ef2d2-d25a-48f2-82b3-e4c80c719cd8", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "29f9bba6-bd70-4135-a800-2b50460d0516", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081127Z:cf5ef2d2-d25a-48f2-82b3-e4c80c719cd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7f3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "729c6b312ed3ee91249e199d2ddf40d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "24300de6-5144-447e-8394-79c6b13a3dd8", + "x-ms-client-request-id": "729c6b312ed3ee91249e199d2ddf40d3", + "x-ms-correlation-request-id": "2b83cc10-07a7-4c9b-8525-109ef6c0f594", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "3029ddec-69b0-4586-9aa9-729ed19ac239", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081128Z:2b83cc10-07a7-4c9b-8525-109ef6c0f594" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7f4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05487f8ebb6c23d312e11fea011c9074", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "904aa16c-2635-4f41-826f-8d4e637d87ae", + "x-ms-client-request-id": "05487f8ebb6c23d312e11fea011c9074", + "x-ms-correlation-request-id": "fe22f53f-4e47-4d84-a5a3-8f0f8206992a", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "f3385078-b144-4142-9de6-3dc20d338f81", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081130Z:fe22f53f-4e47-4d84-a5a3-8f0f8206992a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7f5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89c75dfb9d4df3d28883f69ae5dff4ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47147437-d7b7-485c-9aee-b89a12afc71e", + "x-ms-client-request-id": "89c75dfb9d4df3d28883f69ae5dff4ca", + "x-ms-correlation-request-id": "10f5e26c-40c2-4119-8f14-8cf309e8ee21", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "f2868d3b-43ec-496c-8737-3c7ccff4d8b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081131Z:10f5e26c-40c2-4119-8f14-8cf309e8ee21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7f6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d4fcc75566175e0987960f10ea6ed07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4fac26c-5c59-464a-a1e4-6206b72eea17", + "x-ms-client-request-id": "8d4fcc75566175e0987960f10ea6ed07", + "x-ms-correlation-request-id": "9cad19c6-80ab-44f3-82fc-4aebda4b526c", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "596259bb-ae2e-435c-b627-f9d49ac3d7a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081132Z:9cad19c6-80ab-44f3-82fc-4aebda4b526c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7f7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0a1a40eb617f085ac557de9c4393d32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f521c597-9d49-492c-a720-ee644abccb0d", + "x-ms-client-request-id": "d0a1a40eb617f085ac557de9c4393d32", + "x-ms-correlation-request-id": "b55c11fb-27f4-4210-ae1f-b310cbbf51fc", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "ad3f9395-a5d1-4b05-a4fe-bd06536a66b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081133Z:b55c11fb-27f4-4210-ae1f-b310cbbf51fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7f8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "357454ed03cca5127c51f1d43ce1e4e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "edc73dbe-d6a3-4a92-be3a-ac14b886d725", + "x-ms-client-request-id": "357454ed03cca5127c51f1d43ce1e4e1", + "x-ms-correlation-request-id": "ed08bd6e-f9fb-4781-813e-e4d6f784395a", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "a01fe971-e2d5-4e84-a324-996181e4fd46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081135Z:ed08bd6e-f9fb-4781-813e-e4d6f784395a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7f9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "408bee96243dbfb3465fe00cd9f7b05e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4779e1ee-58c5-408b-846e-d77724c8c622", + "x-ms-client-request-id": "408bee96243dbfb3465fe00cd9f7b05e", + "x-ms-correlation-request-id": "56e6a64d-7ebf-48d3-a63c-6f6aa49d0394", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "c6f272f1-cbc1-4797-912f-2ffeeba7f7b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081136Z:56e6a64d-7ebf-48d3-a63c-6f6aa49d0394" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7fa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba042d3bb7320a3a92fc53c6c4b1b4cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f897ed0b-335b-4112-a82b-eaa9b535414e", + "x-ms-client-request-id": "ba042d3bb7320a3a92fc53c6c4b1b4cb", + "x-ms-correlation-request-id": "213bc1b0-3540-4d96-9a85-908c3383e268", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "0f617e2c-412f-4bc9-8477-f875b5846fbe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081137Z:213bc1b0-3540-4d96-9a85-908c3383e268" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7fb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6539b70fcadc8f5a1b4ef6d2206cc85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa42c2a4-db6b-4bca-8eed-76e28bc69765", + "x-ms-client-request-id": "d6539b70fcadc8f5a1b4ef6d2206cc85", + "x-ms-correlation-request-id": "a690c548-8540-4918-a99c-3eb7d06c8c65", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "253d3a66-4f3b-426e-97be-f8ab6d8e51ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081138Z:a690c548-8540-4918-a99c-3eb7d06c8c65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7fc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e9893a029dcdeaeb481ae41d0ecfb94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f92044e0-07e3-4161-82a2-965c98249a19", + "x-ms-client-request-id": "0e9893a029dcdeaeb481ae41d0ecfb94", + "x-ms-correlation-request-id": "d919ca84-091e-443d-8527-cc19412c0da0", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "04cdff68-0fac-4d9f-92da-983d13c9517d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081140Z:d919ca84-091e-443d-8527-cc19412c0da0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7fd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d9b15aadaa33eb0383b187ec8cce88c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e64d578a-ca9a-4a78-849d-713270ab95ad", + "x-ms-client-request-id": "3d9b15aadaa33eb0383b187ec8cce88c", + "x-ms-correlation-request-id": "374e76c2-9408-4a4c-ac03-e20c716cec0e", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "be3d362d-f90d-4637-8795-75b695ee7f40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081141Z:374e76c2-9408-4a4c-ac03-e20c716cec0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7fe-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3025ce2fa51946eeed74222c4db3f7b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "557477e0-625e-494e-ab92-b7bf15dfc101", + "x-ms-client-request-id": "3025ce2fa51946eeed74222c4db3f7b4", + "x-ms-correlation-request-id": "1578e507-587b-40d0-8666-28f24db36df9", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "fec94d30-baf1-4677-aab7-3caa1ac01627", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081142Z:1578e507-587b-40d0-8666-28f24db36df9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f7ff-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0dc35ab88f6ac5e1e259d6a0113016e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dde9ffbf-a656-47cc-8a66-992645b47a6d", + "x-ms-client-request-id": "0dc35ab88f6ac5e1e259d6a0113016e7", + "x-ms-correlation-request-id": "db1f0a44-93df-4cd3-b66e-807dc6778c46", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "0d629346-0c53-4459-bee9-98152fe9d6ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081144Z:db1f0a44-93df-4cd3-b66e-807dc6778c46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f800-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02112298cac7047b26544f2fb884f184", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48ef36ea-80f4-402d-ba21-17946661a53c", + "x-ms-client-request-id": "02112298cac7047b26544f2fb884f184", + "x-ms-correlation-request-id": "183082e1-53ad-4e5b-9452-4c7efa30bbea", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "ad6ee0f8-111d-495c-9823-396b415a802f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081145Z:183082e1-53ad-4e5b-9452-4c7efa30bbea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f801-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6dc56344db09a021ed5f4ebfcf4d35bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c3cf0093-f8d2-45dc-a29f-6b5bcfe7ceff", + "x-ms-client-request-id": "6dc56344db09a021ed5f4ebfcf4d35bc", + "x-ms-correlation-request-id": "ca73d3d4-3076-4061-870c-9d392bda2904", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "7602ee35-5897-4844-a707-4f841c0bee3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081146Z:ca73d3d4-3076-4061-870c-9d392bda2904" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f802-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b943a5ef5a2eeeddfbee6153fb10d5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c660dbc4-ccac-4a69-9f8a-9fcd7ee05584", + "x-ms-client-request-id": "2b943a5ef5a2eeeddfbee6153fb10d5e", + "x-ms-correlation-request-id": "c46a1d1b-7723-4afd-80a2-78608e5b58ea", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "fa9e0d8d-e0b8-4061-96a8-f163719d3ac9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081147Z:c46a1d1b-7723-4afd-80a2-78608e5b58ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f803-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad5c5168a86bbddd017115687cbb35d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f09ac52e-a8ee-49da-aad6-f4c3a364a59a", + "x-ms-client-request-id": "ad5c5168a86bbddd017115687cbb35d8", + "x-ms-correlation-request-id": "1d48910b-1a68-4c37-a8b7-95d2e6e4c448", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "93fe96e5-4445-4458-b27c-40d73ca82e09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081149Z:1d48910b-1a68-4c37-a8b7-95d2e6e4c448" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f804-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dd0931fc5ef4ee276d78e4bf40b603b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b929d70-3654-45dc-bc1e-27e8e0741d90", + "x-ms-client-request-id": "7dd0931fc5ef4ee276d78e4bf40b603b", + "x-ms-correlation-request-id": "37c84e78-4616-4d5d-8c93-f63d1f1b1a89", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "4c5b720d-06a5-4170-b2aa-d7491416bb77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081150Z:37c84e78-4616-4d5d-8c93-f63d1f1b1a89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f805-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e57ef5288f0b5515dd72930df847123", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "146dfa45-0537-4cfe-886e-b5b6edff607f", + "x-ms-client-request-id": "7e57ef5288f0b5515dd72930df847123", + "x-ms-correlation-request-id": "f439a77d-b50a-483b-b1ff-c5006432a928", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "5027c895-7aa4-4d93-b445-479f0fb1cdf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081151Z:f439a77d-b50a-483b-b1ff-c5006432a928" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f806-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acf60d898fe0a26e6e0e36931a92c8f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51279fbf-56f6-4576-81c8-6cca451d2bf1", + "x-ms-client-request-id": "acf60d898fe0a26e6e0e36931a92c8f5", + "x-ms-correlation-request-id": "526371d0-8cb5-4ad3-bc10-4f0e9acc6b65", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "7962c6e5-e082-4743-b52c-cfd61ca21fad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081153Z:526371d0-8cb5-4ad3-bc10-4f0e9acc6b65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f807-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c16da11b66497e7411b20189bb26ef2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae48c2e5-d802-41e2-8e15-bb99d59be0dd", + "x-ms-client-request-id": "8c16da11b66497e7411b20189bb26ef2", + "x-ms-correlation-request-id": "f4af1f07-4b9f-47af-867c-31600baabf27", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "2ae6cf48-b507-4f6c-bc5b-a2b7ec25c568", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081154Z:f4af1f07-4b9f-47af-867c-31600baabf27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f808-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6c16b65b414c25a81b40fe251bd9bca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17fd9f1e-fa77-45ea-8377-4e16239efb25", + "x-ms-client-request-id": "e6c16b65b414c25a81b40fe251bd9bca", + "x-ms-correlation-request-id": "a8506518-2b2f-4e6c-8f1b-8b999cdf3522", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "3f436293-5fbb-47a1-ad74-192787e78f9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081155Z:a8506518-2b2f-4e6c-8f1b-8b999cdf3522" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f809-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "051f340ee46ed2be255f6ac56e5506bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "495eb705-1499-47b1-93b0-7ee92d464a16", + "x-ms-client-request-id": "051f340ee46ed2be255f6ac56e5506bc", + "x-ms-correlation-request-id": "3088c185-d17e-402d-9863-f2306f6a7b26", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "34c9a46d-d41f-4a0b-addc-9ac013a84178", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081156Z:3088c185-d17e-402d-9863-f2306f6a7b26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f80a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae2e449fe1d15ce17f530bb0a7054583", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eeb6120f-ad86-44b8-aae1-fd5aaf5d6057", + "x-ms-client-request-id": "ae2e449fe1d15ce17f530bb0a7054583", + "x-ms-correlation-request-id": "885eefb6-e56a-4397-97dd-ff9c9cc9cf20", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "26794760-8a25-4fda-8d91-b51767463024", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081158Z:885eefb6-e56a-4397-97dd-ff9c9cc9cf20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f80b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "670a568069928083adefc0b44994532b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:11:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d875ad1-bf2d-4d48-aca8-d9d2e3a84628", + "x-ms-client-request-id": "670a568069928083adefc0b44994532b", + "x-ms-correlation-request-id": "da766cdf-3d18-4f66-add6-b31348effee6", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "70c77e10-6963-4a70-9f8f-7170d39eca34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081159Z:da766cdf-3d18-4f66-add6-b31348effee6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f80c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c4352adec8f2df952c2861bd90d2a20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a2f1c20-f107-472f-a40c-dfb57b88bfac", + "x-ms-client-request-id": "0c4352adec8f2df952c2861bd90d2a20", + "x-ms-correlation-request-id": "c4a666c7-5207-4aab-9a14-d95376256425", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "33ff420c-5b6a-43d9-9409-6093039a318a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081200Z:c4a666c7-5207-4aab-9a14-d95376256425" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f80d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1845e71a9e4b3629c1ad01e1202c13ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc848779-5926-4f70-9f7d-598c81557c73", + "x-ms-client-request-id": "1845e71a9e4b3629c1ad01e1202c13ea", + "x-ms-correlation-request-id": "68eaa3db-625a-44e4-848a-a149ba34337d", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "c83b3e41-6930-428b-a942-6e49100e8aea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081202Z:68eaa3db-625a-44e4-848a-a149ba34337d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f80e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5502e0ff39c193f35cdd14d0e267a79f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4630baf-343b-4261-b9a3-b5ad0ef8821d", + "x-ms-client-request-id": "5502e0ff39c193f35cdd14d0e267a79f", + "x-ms-correlation-request-id": "72a17f7f-d038-4890-a5e6-68efa1e26581", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "31bb204f-c0a9-4587-966e-ac977e192990", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081203Z:72a17f7f-d038-4890-a5e6-68efa1e26581" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f80f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "629aa0c43b4f0fdf280d4be1ea170c26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25d80136-333b-4d65-be28-5d72abd69eed", + "x-ms-client-request-id": "629aa0c43b4f0fdf280d4be1ea170c26", + "x-ms-correlation-request-id": "d7b28df6-b497-48ca-bd21-5f85a7c8b5e8", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "143e929a-994b-4a10-907e-ac3983f44d91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081204Z:d7b28df6-b497-48ca-bd21-5f85a7c8b5e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f810-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f91c9bafd50be05ef3b1bb6e89595359", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e03e298-cb33-4c66-973b-5e91cc89a0f3", + "x-ms-client-request-id": "f91c9bafd50be05ef3b1bb6e89595359", + "x-ms-correlation-request-id": "2d8a99e8-54f6-43d7-959a-f2c0d41c0487", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "50704419-5632-4f05-b295-111ac680bcc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081205Z:2d8a99e8-54f6-43d7-959a-f2c0d41c0487" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f811-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "801d6206b191c49b00f32cb4ed12a944", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ba699d7-ab9c-4dc0-93f4-d0ba4bd77599", + "x-ms-client-request-id": "801d6206b191c49b00f32cb4ed12a944", + "x-ms-correlation-request-id": "5f4f1b55-e8a8-4369-b921-d222fbb1a89c", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "fc22a75e-5657-458c-9ce5-25dacde33e2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081207Z:5f4f1b55-e8a8-4369-b921-d222fbb1a89c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f812-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4720eed0ad4bee9341b96e9d7f7185ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a77bc456-6124-47e0-afce-353abd541704", + "x-ms-client-request-id": "4720eed0ad4bee9341b96e9d7f7185ce", + "x-ms-correlation-request-id": "26616701-37ae-4772-8022-b8db2a9c5bee", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "521f521b-edf7-4981-8f90-8cda90e20f98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081208Z:26616701-37ae-4772-8022-b8db2a9c5bee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f813-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87daf1ba8bfafd95ff58f818a9aaf3e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3bf4665e-f9c2-43e6-9563-a12d8c537894", + "x-ms-client-request-id": "87daf1ba8bfafd95ff58f818a9aaf3e1", + "x-ms-correlation-request-id": "878e94c2-aa13-49d8-af0f-01c4c87f56b6", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "1f9627c5-fdea-487f-b8fb-57ab3fe6e3e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081209Z:878e94c2-aa13-49d8-af0f-01c4c87f56b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f814-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b9d77080b38580ecf2e3fd742fd448e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60be0624-df73-46c7-b806-6bb495691219", + "x-ms-client-request-id": "9b9d77080b38580ecf2e3fd742fd448e", + "x-ms-correlation-request-id": "b10746d0-0093-410c-abc0-e0659618c774", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "1615cf28-a043-4251-8619-c4524001772f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081211Z:b10746d0-0093-410c-abc0-e0659618c774" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f815-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcfa5d6e2137454a582247f3b47b4596", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac3973e2-5ae0-4e27-b0ba-3547d585a83a", + "x-ms-client-request-id": "fcfa5d6e2137454a582247f3b47b4596", + "x-ms-correlation-request-id": "d68b2de2-07c2-4ddc-915d-451837b31ca8", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "6214f9ec-0b20-4385-be17-baacb3bf4d11", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081212Z:d68b2de2-07c2-4ddc-915d-451837b31ca8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f816-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08948dc6e9d4ae95e382b8cb4cbdbb01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31d4bb49-042c-42b5-9df2-82eae661eee6", + "x-ms-client-request-id": "08948dc6e9d4ae95e382b8cb4cbdbb01", + "x-ms-correlation-request-id": "0d74dbdb-6ff2-4479-b79b-9943df6163dc", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "54963783-a448-4cd8-b091-a8f858d94a70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081213Z:0d74dbdb-6ff2-4479-b79b-9943df6163dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f817-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ba96a13f6b0e7a92c584215c31ba353", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f531e3e-9a0e-49f2-88da-c28beb9fc741", + "x-ms-client-request-id": "4ba96a13f6b0e7a92c584215c31ba353", + "x-ms-correlation-request-id": "afefc358-654e-4bc2-aefd-21920b4b7803", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "63b4cc6d-fa61-4111-8703-e18f713fc30d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081214Z:afefc358-654e-4bc2-aefd-21920b4b7803" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f818-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b510a8e93c6985bac74b19b5687ef89b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8d1b28e-b021-499c-9784-6950da5451cd", + "x-ms-client-request-id": "b510a8e93c6985bac74b19b5687ef89b", + "x-ms-correlation-request-id": "80d4d523-1f98-433a-ad8f-0b68f3fc2d3b", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "3fe5982a-4c0c-41f9-aefe-fc2c6f117e0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081216Z:80d4d523-1f98-433a-ad8f-0b68f3fc2d3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f819-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4adf4667f9d1d0e5e3addb7ba680eac7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1ceb8ba-4627-4acf-ba13-5657bb9c3825", + "x-ms-client-request-id": "4adf4667f9d1d0e5e3addb7ba680eac7", + "x-ms-correlation-request-id": "428d72c9-2108-4335-b574-5a163fab92b2", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "c7ac930e-527a-48d8-bb74-39c5b77a8f71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081217Z:428d72c9-2108-4335-b574-5a163fab92b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f81a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3e264de06acd698af248365ddf47ead", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f26bb06-a6af-432b-aa69-9040a37dab94", + "x-ms-client-request-id": "a3e264de06acd698af248365ddf47ead", + "x-ms-correlation-request-id": "654a054f-c1b0-4f4d-b313-9dc2586f00cf", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "82f774d1-bd10-4b0c-96a8-23fd544a305e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081218Z:654a054f-c1b0-4f4d-b313-9dc2586f00cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f81b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7daea75f593bef81c340d1bb603ede47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd6a35e9-7750-4a8f-bdfe-a510f0b797c1", + "x-ms-client-request-id": "7daea75f593bef81c340d1bb603ede47", + "x-ms-correlation-request-id": "e73452ec-2e8f-4b01-86bb-16862e0e5c2c", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "e64fdd44-d982-4b5f-a6b6-bfce2cddc9b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081220Z:e73452ec-2e8f-4b01-86bb-16862e0e5c2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f81c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03d65160559c61eead099aad7680f3ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9eed0919-553a-4ae0-a9a6-1f7966b5e33b", + "x-ms-client-request-id": "03d65160559c61eead099aad7680f3ef", + "x-ms-correlation-request-id": "b5fb7856-236b-4c76-92cf-609e9c267db0", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "6063c2df-93bb-4cb8-b838-2fb36d99ec8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081221Z:b5fb7856-236b-4c76-92cf-609e9c267db0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f81d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe1c2e2f6dd1858ce3f3e06c34dd7670", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "310efd63-7b0b-4e15-86bc-7f42fa62825c", + "x-ms-client-request-id": "fe1c2e2f6dd1858ce3f3e06c34dd7670", + "x-ms-correlation-request-id": "ecbdbbe1-a7cf-4fe4-a401-2c554bc12469", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "14fbed84-b29f-47c6-9148-edda727d3514", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081222Z:ecbdbbe1-a7cf-4fe4-a401-2c554bc12469" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f81e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b043c457a1d0a11b94cd031bed47842", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dea21b74-37ad-4be7-a7bb-bb1722e94d02", + "x-ms-client-request-id": "8b043c457a1d0a11b94cd031bed47842", + "x-ms-correlation-request-id": "47234ca1-b930-470b-8b70-172be494703b", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "3ab12f65-8281-4a27-a0b8-26efa2051644", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081223Z:47234ca1-b930-470b-8b70-172be494703b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f81f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "328ce24de022f375c45120a875812ccf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e1b9b72-e377-46a7-a2fd-ddf965708eed", + "x-ms-client-request-id": "328ce24de022f375c45120a875812ccf", + "x-ms-correlation-request-id": "8c01b80b-53e4-432c-9e02-027a6aa9d2b1", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "82f03ac9-8459-4047-9f75-0a1b6504d6c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081225Z:8c01b80b-53e4-432c-9e02-027a6aa9d2b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f820-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a672993677cb4d11c1144859c5bc60e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0043a8f4-b0f3-4523-a9bd-cba53ba8ec25", + "x-ms-client-request-id": "3a672993677cb4d11c1144859c5bc60e", + "x-ms-correlation-request-id": "fdcb3d6c-8a06-46d2-8eb9-bdaae5cebef6", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "fa05c005-d622-4e43-a7f1-f3746b2c3e33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081226Z:fdcb3d6c-8a06-46d2-8eb9-bdaae5cebef6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f821-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "521f9e7a4351654ec611c7cb59689437", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f248247a-9fc1-432a-9119-50c0c52b4c58", + "x-ms-client-request-id": "521f9e7a4351654ec611c7cb59689437", + "x-ms-correlation-request-id": "d6f2eaaa-cede-4482-b697-7fa447a3825d", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "0af37858-1b99-446d-a503-f675c4558726", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081227Z:d6f2eaaa-cede-4482-b697-7fa447a3825d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f822-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "949e001f3e6ce6c510d715109bf05669", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e039b26-475d-43bf-80e6-9456788a067f", + "x-ms-client-request-id": "949e001f3e6ce6c510d715109bf05669", + "x-ms-correlation-request-id": "c43cabf6-c6fa-4d15-ae13-7f89f036865b", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "5a8d9c05-bb2f-4ce7-bcf9-38dc7cbd4664", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081229Z:c43cabf6-c6fa-4d15-ae13-7f89f036865b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f823-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d72d128bda624f7edb02736ba0065ab4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45679405-92be-44db-826b-83ac589f62b3", + "x-ms-client-request-id": "d72d128bda624f7edb02736ba0065ab4", + "x-ms-correlation-request-id": "0e8a3676-c61e-4c88-a3da-ec2479c13fb8", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "8cf217a1-bed7-476e-97ff-12ec3fa43e34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081230Z:0e8a3676-c61e-4c88-a3da-ec2479c13fb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f824-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c650d7d32bc3ba1d83942792e3dc9d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8bd7f5ca-eb9c-46fe-b1a0-22385dd77461", + "x-ms-client-request-id": "9c650d7d32bc3ba1d83942792e3dc9d5", + "x-ms-correlation-request-id": "fa21a2b1-12c2-406e-a298-7186590f95df", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "8602ba21-ad5d-47d9-8af4-f3cf37d119e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081231Z:fa21a2b1-12c2-406e-a298-7186590f95df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f825-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47405dbabd3a45d5814fb86aca5a450a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e0eaa6a-f2f0-4303-a4ed-464e912229ec", + "x-ms-client-request-id": "47405dbabd3a45d5814fb86aca5a450a", + "x-ms-correlation-request-id": "fbff746c-7fef-4f27-b6dd-80eb76abb2af", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "efb15636-c673-42df-8e91-6ad28120adf8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081232Z:fbff746c-7fef-4f27-b6dd-80eb76abb2af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f826-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e93617cb98b59ad70f2ff299805219e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5faf899-933b-46e0-893d-87c0c60c0664", + "x-ms-client-request-id": "8e93617cb98b59ad70f2ff299805219e", + "x-ms-correlation-request-id": "88665a83-cea3-4e95-8987-22f309fee651", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "9d0c3241-0c62-4ce2-85dd-e9281d0157a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081234Z:88665a83-cea3-4e95-8987-22f309fee651" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f827-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42b09e3813c5bf79371f1a6d7937707d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4c8d341-ce2b-4ed2-a858-6169017ed03e", + "x-ms-client-request-id": "42b09e3813c5bf79371f1a6d7937707d", + "x-ms-correlation-request-id": "141fcd4b-a69b-4120-bdc4-0eda3c0916e3", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "4f2863bc-84a3-499d-bb82-5dc6a1c0a270", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081235Z:141fcd4b-a69b-4120-bdc4-0eda3c0916e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f828-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccfd37f33ba9004ab0e7d748beabad7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7345bb20-4c6c-436c-8421-6ee4ff11c3d5", + "x-ms-client-request-id": "ccfd37f33ba9004ab0e7d748beabad7c", + "x-ms-correlation-request-id": "327a4da6-9333-414f-82fd-45884505becb", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "920f8530-18eb-4f23-bcaa-8fe65d5c4d99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081236Z:327a4da6-9333-414f-82fd-45884505becb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f829-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c311a2d02aa6944e8d4566b9f3fdf38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50d69cd8-4a79-4e0f-85e8-8041ceb64ed4", + "x-ms-client-request-id": "2c311a2d02aa6944e8d4566b9f3fdf38", + "x-ms-correlation-request-id": "1216329a-3835-4dbd-917b-4f54e98d1fd4", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "83d0bc11-5a7b-46ee-8643-01878a262146", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081238Z:1216329a-3835-4dbd-917b-4f54e98d1fd4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f82a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "603682815408fdf453af92de3b30018c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69e306c4-294b-43ca-9220-79c49b39b4e9", + "x-ms-client-request-id": "603682815408fdf453af92de3b30018c", + "x-ms-correlation-request-id": "9d43eecb-fc35-4b3b-bd13-325fd538452f", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "8096437a-4eae-483d-a12b-c7920e7bae4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081239Z:9d43eecb-fc35-4b3b-bd13-325fd538452f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f82b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e3f9e724406f0d2f293e4d5e4df6170", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "03031224-e731-41b4-a58b-9ae821c68d19", + "x-ms-client-request-id": "5e3f9e724406f0d2f293e4d5e4df6170", + "x-ms-correlation-request-id": "432a8677-be6d-4ef3-ac68-ca1d28189a57", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "1840eff0-4dc9-4825-8857-7ab08aa0fc5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081240Z:432a8677-be6d-4ef3-ac68-ca1d28189a57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f82c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cc79f074c75d9742633d8fb6f662db7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "510d9616-2410-483c-8538-86dbeff957e6", + "x-ms-client-request-id": "3cc79f074c75d9742633d8fb6f662db7", + "x-ms-correlation-request-id": "e90804cf-f519-4481-b847-2710eb880f1d", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "ccdd13dc-16be-46b6-bf59-61110811fb14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081242Z:e90804cf-f519-4481-b847-2710eb880f1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f82d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00f8cad381ff3d31af456d746f1e1974", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0dddd95c-c254-47fd-9ecd-8aaf3045e9b6", + "x-ms-client-request-id": "00f8cad381ff3d31af456d746f1e1974", + "x-ms-correlation-request-id": "affadd10-ebe6-4177-9b2c-293aed0bf57a", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "1cffdac5-d3c2-4a03-a187-a207033abe70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081243Z:affadd10-ebe6-4177-9b2c-293aed0bf57a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f82e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cd7224dc4692517296638d36bd6808c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa6e1ad4-8846-4fc1-aa13-184e32637abc", + "x-ms-client-request-id": "9cd7224dc4692517296638d36bd6808c", + "x-ms-correlation-request-id": "bb860595-7393-4945-a677-3ba2df15a582", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "3d16fda1-eaa8-4938-89dd-6ec281ee8e4c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081244Z:bb860595-7393-4945-a677-3ba2df15a582" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f82f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a022d6560e686706d898c2fdf006907", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c05d7d6c-82fb-49e3-a291-d76a70cc4f65", + "x-ms-client-request-id": "1a022d6560e686706d898c2fdf006907", + "x-ms-correlation-request-id": "1af094b2-41f8-49a8-8c4e-c922656af400", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "a878adf0-2361-4c13-988d-086e87b083cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081245Z:1af094b2-41f8-49a8-8c4e-c922656af400" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f830-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dae641a918f0e4eb3d3d799485ed1d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2bc283d7-eb45-4b3c-8fec-8959b281efbc", + "x-ms-client-request-id": "4dae641a918f0e4eb3d3d799485ed1d8", + "x-ms-correlation-request-id": "cf414a84-38c7-4dfa-8409-644b011121b6", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "6405f4e0-94cd-43fb-86f9-d0955992c8f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081247Z:cf414a84-38c7-4dfa-8409-644b011121b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f831-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "420ee1c4fe1cec8eb1502edf37e74629", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e1b0966d-41dd-4471-a53d-9e52d88b5adb", + "x-ms-client-request-id": "420ee1c4fe1cec8eb1502edf37e74629", + "x-ms-correlation-request-id": "351ebfba-17be-4bd7-9fd0-a3fc16fe5cf0", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "88aea2b5-bc16-4584-9efb-e2f83b446c41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081248Z:351ebfba-17be-4bd7-9fd0-a3fc16fe5cf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f832-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07b930fd3328d3fddef4671389d73d0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8a52939-278b-45d2-b50a-5d43fcaaabd5", + "x-ms-client-request-id": "07b930fd3328d3fddef4671389d73d0f", + "x-ms-correlation-request-id": "4a8d42c7-fb49-4698-8d59-7b10af6eca36", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "0897414f-a7e3-435b-a584-388b312b52d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081249Z:4a8d42c7-fb49-4698-8d59-7b10af6eca36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f833-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe6bb4b726f11bebd5c19c3e636ed6cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e9d10c3-9796-4aa5-95d0-b14e776c981a", + "x-ms-client-request-id": "fe6bb4b726f11bebd5c19c3e636ed6cc", + "x-ms-correlation-request-id": "d3da00e2-232e-4688-8740-93edf36c373d", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "69bd48b2-fd31-4dd4-b9cb-a90949b8980a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081250Z:d3da00e2-232e-4688-8740-93edf36c373d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f834-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "189bad8ccaa491afe33b6328977a63da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5208ea2-2882-476e-bed7-276b5aec51d2", + "x-ms-client-request-id": "189bad8ccaa491afe33b6328977a63da", + "x-ms-correlation-request-id": "5e2bdac2-cea7-46d7-9a19-b8d554b5d755", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "66addad2-95b8-43d6-966c-b544f6549855", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081252Z:5e2bdac2-cea7-46d7-9a19-b8d554b5d755" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f835-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83271f13487bd738459e316797be706f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34217a78-f7c5-4cfe-b56e-d20b573f3f22", + "x-ms-client-request-id": "83271f13487bd738459e316797be706f", + "x-ms-correlation-request-id": "ecff448b-de2d-4819-b13f-fc7fb0e1c0a9", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "81f817c9-c13d-4861-b84f-c7fb806e3f3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081253Z:ecff448b-de2d-4819-b13f-fc7fb0e1c0a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f836-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db869b1d253bed6a04da1ab5c2c3835b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3de5946-245b-4c5a-a0ae-287ddecd8462", + "x-ms-client-request-id": "db869b1d253bed6a04da1ab5c2c3835b", + "x-ms-correlation-request-id": "01f6ecdf-eaea-4eb6-821b-bf48ac7b5e7f", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "963bce03-510a-4e7c-8430-5e033c017d04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081254Z:01f6ecdf-eaea-4eb6-821b-bf48ac7b5e7f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f837-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "442bc15e5247445075c4d2069948f925", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "092ab01a-f046-47b7-a75b-d64fbba7361b", + "x-ms-client-request-id": "442bc15e5247445075c4d2069948f925", + "x-ms-correlation-request-id": "a9bd89e2-ca4e-4f32-ac21-e9aa48de6a32", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "e9778894-674b-4f3d-a200-4e88aaba50f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081256Z:a9bd89e2-ca4e-4f32-ac21-e9aa48de6a32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f838-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc0af3ca87f4ee9eb43a7fa12e821482", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74eb6bd5-75bc-45e2-968d-f04227251b78", + "x-ms-client-request-id": "fc0af3ca87f4ee9eb43a7fa12e821482", + "x-ms-correlation-request-id": "a613b06b-9e56-4980-aaed-0a23127863aa", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "3e0ce961-0866-4e6e-ab09-76ce503758cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081257Z:a613b06b-9e56-4980-aaed-0a23127863aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f839-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d509d61a2c93ca284a426677526454bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c166a0b4-5c62-4cc1-a6e6-1c6736a530ff", + "x-ms-client-request-id": "d509d61a2c93ca284a426677526454bc", + "x-ms-correlation-request-id": "c96031ae-a931-4d8e-a4b6-b30ec187eb04", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "cba394fb-6ea7-466c-b499-7f1f3d839dbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081258Z:c96031ae-a931-4d8e-a4b6-b30ec187eb04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f83a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ceebf5e086b8d767233d8f0dd3ae16f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:12:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80b5f070-f7b8-40bf-9f12-ab731f09a88b", + "x-ms-client-request-id": "ceebf5e086b8d767233d8f0dd3ae16f2", + "x-ms-correlation-request-id": "56505e94-3ae3-4333-a158-b06a86c72911", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "76e3540c-58ef-4d39-a228-f81349c3ee64", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081259Z:56505e94-3ae3-4333-a158-b06a86c72911" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f83b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2eb50b0243f9e91cb3fb1b120269b50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "352c04c9-bbfd-4743-ac86-ca505c96b83e", + "x-ms-client-request-id": "c2eb50b0243f9e91cb3fb1b120269b50", + "x-ms-correlation-request-id": "0c570730-4a5d-4829-b9df-665da06a45b4", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "1e80159d-2254-4a07-8137-67f3fcfc728e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081301Z:0c570730-4a5d-4829-b9df-665da06a45b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f83c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39c1c2e5459794c96f32b1569c1bf79b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98107d74-bcb4-471c-b583-d9b11b2bf73d", + "x-ms-client-request-id": "39c1c2e5459794c96f32b1569c1bf79b", + "x-ms-correlation-request-id": "efd2ba60-9d3c-4a61-9118-62bffc423760", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "16af3e2f-d2b4-46e2-a911-fa379d188224", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081302Z:efd2ba60-9d3c-4a61-9118-62bffc423760" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f83d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01c7742c9178bb7d634c0379d5b5b6fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "01972938-6cf9-4296-affd-bee59a45372c", + "x-ms-client-request-id": "01c7742c9178bb7d634c0379d5b5b6fc", + "x-ms-correlation-request-id": "ddedcace-6491-4376-84ef-b8d1a1e5038b", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "822d7352-e065-4c64-bbf0-53944017d420", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081303Z:ddedcace-6491-4376-84ef-b8d1a1e5038b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f83e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10273fa1dded6a5a8757530c723a02af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "256af81e-f01e-484c-8d30-8e95406c5bd8", + "x-ms-client-request-id": "10273fa1dded6a5a8757530c723a02af", + "x-ms-correlation-request-id": "4f0a75ad-05f8-462b-82d2-f14a876ed380", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "2fabb0b3-98c0-431b-84f9-aa8e420dd672", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081305Z:4f0a75ad-05f8-462b-82d2-f14a876ed380" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f83f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac851548995f54d74505d54b4150beba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa35a02c-e4c7-4600-a71d-aa8962063167", + "x-ms-client-request-id": "ac851548995f54d74505d54b4150beba", + "x-ms-correlation-request-id": "2d14ba7e-64d0-4c86-b739-974b8ee25610", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "53b23267-1f33-468c-8c1a-c7ab7b983586", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081306Z:2d14ba7e-64d0-4c86-b739-974b8ee25610" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f840-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cb4b47be6f34fae195c7a203e704828", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35932f3a-b038-4435-8d76-4fefcaee7e60", + "x-ms-client-request-id": "5cb4b47be6f34fae195c7a203e704828", + "x-ms-correlation-request-id": "1d4fc28b-fae1-41eb-9dfd-eb448a3d6a9b", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "3ae0a633-bd87-4998-bf1c-e2cbba8de813", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081307Z:1d4fc28b-fae1-41eb-9dfd-eb448a3d6a9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f841-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf31534a0a30079c67d3cbe8070f2837", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa2d70f4-e629-45f9-989a-b347d2cb35d1", + "x-ms-client-request-id": "bf31534a0a30079c67d3cbe8070f2837", + "x-ms-correlation-request-id": "efd71931-7449-484b-8c2b-d71e00e227ed", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "b62995b8-3a18-41b6-adea-4ace0e6e792d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081308Z:efd71931-7449-484b-8c2b-d71e00e227ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f842-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be919998a58561bc673592031eb715d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ae9fe86-3d9e-41e3-8e4c-90d5d8a2bb0b", + "x-ms-client-request-id": "be919998a58561bc673592031eb715d5", + "x-ms-correlation-request-id": "68b50a6b-4c33-4198-915f-d665e37c2ab6", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "3f62565e-0d73-4017-afc2-5c934caca60c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081310Z:68b50a6b-4c33-4198-915f-d665e37c2ab6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f843-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee00acbcff1e718917acf5201bc6470a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99c9ef47-bffd-43f0-9bb0-de13831cc450", + "x-ms-client-request-id": "ee00acbcff1e718917acf5201bc6470a", + "x-ms-correlation-request-id": "8d8d6428-d93b-4da5-859e-a8e8bb0ef77e", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "053d31d9-cc86-4bc3-ac3f-e01dfe201666", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081311Z:8d8d6428-d93b-4da5-859e-a8e8bb0ef77e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f844-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a58843338adea5a297cf58fa7799e9b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68125921-43fd-4ff5-973f-72a3201c35f9", + "x-ms-client-request-id": "a58843338adea5a297cf58fa7799e9b0", + "x-ms-correlation-request-id": "abdd08ea-1158-4480-9c0b-7c044fe72b44", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "6104a53c-727b-4d69-8428-20c91a2dea88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081312Z:abdd08ea-1158-4480-9c0b-7c044fe72b44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f845-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a2bf5bd3a0e99180f20a6d8af9b45a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e280ecf5-544f-4546-bb77-a06d56fd9a08", + "x-ms-client-request-id": "5a2bf5bd3a0e99180f20a6d8af9b45a1", + "x-ms-correlation-request-id": "92cf65f9-7693-4477-8e72-990b0d56e765", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "bc4dff0b-07f4-46af-92eb-a7834c1c6a30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081314Z:92cf65f9-7693-4477-8e72-990b0d56e765" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f846-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbcf88ee702e32f6095b564ea78ff97e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac8abad9-2340-4fb3-96de-07eaef9e982e", + "x-ms-client-request-id": "dbcf88ee702e32f6095b564ea78ff97e", + "x-ms-correlation-request-id": "8f686500-2074-4108-9318-7d26ae93936e", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "c6b68c04-22ee-4401-82dd-224fb275d6e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081315Z:8f686500-2074-4108-9318-7d26ae93936e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f847-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "256344c3ec9bf8fb2bef96bee4caf5fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8eac1923-35b6-452c-b513-ddfce9f06aea", + "x-ms-client-request-id": "256344c3ec9bf8fb2bef96bee4caf5fc", + "x-ms-correlation-request-id": "300e6f8f-5953-4fa3-8cb0-b0eeac13cc90", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "7d530edc-2234-47da-8850-dfaac3fbcda9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081317Z:300e6f8f-5953-4fa3-8cb0-b0eeac13cc90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f848-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef0bb68a0dc94d81fff851b3e3c9f17f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60868e18-050b-43bd-be4c-a3d095c4cd40", + "x-ms-client-request-id": "ef0bb68a0dc94d81fff851b3e3c9f17f", + "x-ms-correlation-request-id": "eb995dc4-a4ee-4cb5-9be6-be4bdbe6b006", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "00ad1639-f143-43c6-8ff7-17351f302ba6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081318Z:eb995dc4-a4ee-4cb5-9be6-be4bdbe6b006" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f849-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a1527271f3801068cd6af3fda384d3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "624c2397-c77e-42a0-aae9-4991a763bb17", + "x-ms-client-request-id": "6a1527271f3801068cd6af3fda384d3f", + "x-ms-correlation-request-id": "a0e5c8f7-c631-4198-84b8-2d4aae822143", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "c2287f8c-00e8-4802-9ef8-728d987be74d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081319Z:a0e5c8f7-c631-4198-84b8-2d4aae822143" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f84a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0c45a650983b5b4c31526a29b481562", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "812b7364-0f3a-4ba0-b7e8-41b0df9c3e61", + "x-ms-client-request-id": "f0c45a650983b5b4c31526a29b481562", + "x-ms-correlation-request-id": "50a0587b-e1cb-4b2f-a37f-be4a476e9571", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "f36c0d48-0fea-40cb-905d-d0bd71abecb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081321Z:50a0587b-e1cb-4b2f-a37f-be4a476e9571" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f84b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc9716fd8ab56ac3b00a62f25e4173c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4465663-537f-4292-9322-6dea1da92e5d", + "x-ms-client-request-id": "bc9716fd8ab56ac3b00a62f25e4173c7", + "x-ms-correlation-request-id": "354f0d57-5dca-47ec-baed-5d3f6316954f", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "3185bd32-2c19-4ac5-bf2c-404a617df9ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081322Z:354f0d57-5dca-47ec-baed-5d3f6316954f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f84c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "894d11ab01041dfc725fa722f9636644", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e7e288d-375c-4f11-8881-a14a998e68dd", + "x-ms-client-request-id": "894d11ab01041dfc725fa722f9636644", + "x-ms-correlation-request-id": "f5dbc8e4-b1a3-48cb-8dbc-3db0c3637453", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "89ae5ea9-7338-4a0c-b301-818b5d14037b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081323Z:f5dbc8e4-b1a3-48cb-8dbc-3db0c3637453" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f84d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3424dc190a0db8a965a3f79a7c15781", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b3f9f11-0a23-46f5-8b34-1db71c869fa8", + "x-ms-client-request-id": "c3424dc190a0db8a965a3f79a7c15781", + "x-ms-correlation-request-id": "804a0459-c960-4aae-b46a-059fb544dd1b", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "8639f94f-6e00-4bdf-ba68-eea20b5e3efb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081324Z:804a0459-c960-4aae-b46a-059fb544dd1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f84e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89f75ea28bfbfc5d1a794a55e3a1704d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39f4ab6d-7856-453c-acf6-29977a06aedb", + "x-ms-client-request-id": "89f75ea28bfbfc5d1a794a55e3a1704d", + "x-ms-correlation-request-id": "c61aca54-319a-4f9a-b24d-5e757e571461", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "6b7f71df-c51d-45c2-9ed8-a0c211bd501f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081326Z:c61aca54-319a-4f9a-b24d-5e757e571461" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f84f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10311ea4afff1a268771f3aac18276b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee11cf3a-e732-40b0-8921-5a5332dbda1f", + "x-ms-client-request-id": "10311ea4afff1a268771f3aac18276b0", + "x-ms-correlation-request-id": "9e635f83-ddcf-49e5-8f7f-c14006884c71", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "5fe6c400-8f42-4f09-ac14-a3e0eaa6bb1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081327Z:9e635f83-ddcf-49e5-8f7f-c14006884c71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f850-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a802607dc6c3649f046a9274634f8f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1803ef4-ec62-4eb8-8fc7-8f975d838736", + "x-ms-client-request-id": "9a802607dc6c3649f046a9274634f8f5", + "x-ms-correlation-request-id": "b454b520-ac58-450a-91e1-153ffdc5db6e", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "dff4f658-2119-4bc8-8d62-c8de1f0d9177", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081329Z:b454b520-ac58-450a-91e1-153ffdc5db6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f851-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88d4f2e94790f28138dc028998b33a97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b861e51b-edd2-43a7-894c-3626ac65491c", + "x-ms-client-request-id": "88d4f2e94790f28138dc028998b33a97", + "x-ms-correlation-request-id": "3590799d-4234-43be-88eb-b520af797d41", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "8cec2127-74cf-42b0-9ac9-30b72d64abe4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081330Z:3590799d-4234-43be-88eb-b520af797d41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f852-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc4e9902d520c8e0d4fa20b906ffd352", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c6a0dda-cf0e-44f4-8698-1720c46b99de", + "x-ms-client-request-id": "bc4e9902d520c8e0d4fa20b906ffd352", + "x-ms-correlation-request-id": "78e85de8-346d-4a9f-a05f-1a98144dbbda", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "0fdefe92-0eb9-4ab9-8e06-ba0619dab500", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081331Z:78e85de8-346d-4a9f-a05f-1a98144dbbda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f853-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfc0fd79edadc020a48e628fd9c09d3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59d5d526-fcb2-4c5f-9fcd-fc085dc2be96", + "x-ms-client-request-id": "cfc0fd79edadc020a48e628fd9c09d3d", + "x-ms-correlation-request-id": "0a1fcbf2-25d6-4c59-bad2-364cfa77b675", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "92a481f4-6d8b-46b3-adad-ed50f5d69e33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081332Z:0a1fcbf2-25d6-4c59-bad2-364cfa77b675" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f854-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad24110b3be613d4110cb39627c8eb39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca2642ad-5cd9-41c2-a549-260458a2e692", + "x-ms-client-request-id": "ad24110b3be613d4110cb39627c8eb39", + "x-ms-correlation-request-id": "4ca5e366-01ea-49fa-b857-ad69e050e505", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "a69f2cc3-6897-45e7-bfce-f81a6765931c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081334Z:4ca5e366-01ea-49fa-b857-ad69e050e505" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f855-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a0fb0096af215e9798e18927350ee14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73dd088b-a306-4b23-a4bf-8a1a6e8854c6", + "x-ms-client-request-id": "9a0fb0096af215e9798e18927350ee14", + "x-ms-correlation-request-id": "c70a5fed-b285-49a0-ac7f-f2cb4cd2f4f8", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "8dc2c8d7-c41a-4cfb-95df-59bfda5e21c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081335Z:c70a5fed-b285-49a0-ac7f-f2cb4cd2f4f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f856-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5ade25c25da3e6c29adbda1398999dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "420aca53-4f17-4ae1-a2ca-7a907b2ad2a5", + "x-ms-client-request-id": "f5ade25c25da3e6c29adbda1398999dc", + "x-ms-correlation-request-id": "d9e7fe53-71ab-4a2e-af76-823513637e61", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "2bc94de5-58ba-4709-9879-51c40f806639", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081336Z:d9e7fe53-71ab-4a2e-af76-823513637e61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f857-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "298629a203b0a04b270f34582341a0c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e92b4839-a8d9-4d54-a8e8-a377289c5d36", + "x-ms-client-request-id": "298629a203b0a04b270f34582341a0c1", + "x-ms-correlation-request-id": "6c30110c-b374-4ec1-85df-50a51334be24", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "46840ed4-af0a-4df2-83ea-3a3f5b3cdc29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081337Z:6c30110c-b374-4ec1-85df-50a51334be24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f858-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44399e1ef61ae35e44d17045ad48dbef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5eb72a7-5288-41f5-86ea-61e810fdd063", + "x-ms-client-request-id": "44399e1ef61ae35e44d17045ad48dbef", + "x-ms-correlation-request-id": "9da5bfc7-94b8-4ae8-8646-60344409a0cd", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "c9e89eb5-304d-43a2-8641-afa258aa6bfd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081339Z:9da5bfc7-94b8-4ae8-8646-60344409a0cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f859-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49ef3bf5c5ca5964970ccdcaf1131ae7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c2f42a4-8d54-46fd-8386-2d17edff0591", + "x-ms-client-request-id": "49ef3bf5c5ca5964970ccdcaf1131ae7", + "x-ms-correlation-request-id": "560bbf56-f80d-4d6f-8485-fbc55ebb5407", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "7563c772-a302-427c-9e17-e8221a9b6d97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081340Z:560bbf56-f80d-4d6f-8485-fbc55ebb5407" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f85a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a82fc0c5550acc2caa2e4df9205f3df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca123227-ad7b-4729-bcd7-daf0df84b452", + "x-ms-client-request-id": "9a82fc0c5550acc2caa2e4df9205f3df", + "x-ms-correlation-request-id": "ea184d90-5d12-4d3b-991c-b500a55d3a41", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "4eea6e13-f78e-4795-b6e4-c61824d9f3da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081341Z:ea184d90-5d12-4d3b-991c-b500a55d3a41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f85b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7634534565259f63adfac0d2893f230", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6063786b-947c-47ac-b7bf-ce534adb33ea", + "x-ms-client-request-id": "e7634534565259f63adfac0d2893f230", + "x-ms-correlation-request-id": "6e27e108-d4c5-453a-bd94-b1d48bcca77a", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "2c7f1044-a40a-42ce-ad0d-0622b3e8a0b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081343Z:6e27e108-d4c5-453a-bd94-b1d48bcca77a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f85c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b03889b640c5a09e79437f28e085c792", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1fc1312c-e417-45df-91fc-97f6956e185e", + "x-ms-client-request-id": "b03889b640c5a09e79437f28e085c792", + "x-ms-correlation-request-id": "edddfa1a-8897-4d9e-a388-60a4fc761ee6", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "a52ce5cf-b659-4353-8fcd-03ac857c0337", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081344Z:edddfa1a-8897-4d9e-a388-60a4fc761ee6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f85d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab96ee1833b0b69506296071a8b48437", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ce01c22-ad84-48ba-93a3-3546336defbb", + "x-ms-client-request-id": "ab96ee1833b0b69506296071a8b48437", + "x-ms-correlation-request-id": "cfc77da8-9ffa-4760-a638-d83b1bd3641c", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "a188fcea-71e4-4985-9eab-bad7828de62a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081345Z:cfc77da8-9ffa-4760-a638-d83b1bd3641c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f85e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0928b4af42cdf419a6c36e0fd7ce78b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95e7623f-9829-4d77-8066-aee619b0549c", + "x-ms-client-request-id": "0928b4af42cdf419a6c36e0fd7ce78b5", + "x-ms-correlation-request-id": "c28e03b6-aef4-4b73-a2c5-2b8ee887924d", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "26f9e64a-baa5-45d9-9b99-88e33f663d70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081346Z:c28e03b6-aef4-4b73-a2c5-2b8ee887924d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f85f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3af41a1846fd837ff381aa9bdf2df7c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de19fdd1-7ea0-4d5c-8721-407d05b000d1", + "x-ms-client-request-id": "3af41a1846fd837ff381aa9bdf2df7c5", + "x-ms-correlation-request-id": "571be2e6-f62e-4021-9c12-8f03039ea6c7", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "5b0f837c-3861-4249-90c6-26b2213900bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081348Z:571be2e6-f62e-4021-9c12-8f03039ea6c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f860-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b7848bebe5cd6c4d4a205edc586df37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85cd69d7-2caa-418b-b072-7323120f8e90", + "x-ms-client-request-id": "2b7848bebe5cd6c4d4a205edc586df37", + "x-ms-correlation-request-id": "94258be5-fe12-4deb-b75a-d882c38ddf8f", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "1ebc9db8-eab9-4ddf-8a34-26a92ac16ae7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081349Z:94258be5-fe12-4deb-b75a-d882c38ddf8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f861-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e58abb14abf683935a5154b987e1479", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1821f8dd-4704-4ba0-8f6b-27970c33c078", + "x-ms-client-request-id": "8e58abb14abf683935a5154b987e1479", + "x-ms-correlation-request-id": "54d88e11-a399-430f-8bd6-3903a9c1c2ab", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "61c5abe5-e757-40e2-9467-a449dbdcb276", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081350Z:54d88e11-a399-430f-8bd6-3903a9c1c2ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f862-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e50a8cb4d555a58551e655a4191bd6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e4ef7ad-4590-41db-b724-0b8c225c74d3", + "x-ms-client-request-id": "8e50a8cb4d555a58551e655a4191bd6d", + "x-ms-correlation-request-id": "0f5c1b02-20bc-4c26-9650-3457461775b7", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "f896ab85-13b0-4ed7-b9a0-c237e138eaf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081352Z:0f5c1b02-20bc-4c26-9650-3457461775b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f863-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34ea72a268d474060e0ff6b6a8783d56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f7cfa46-ca1c-467b-8ca7-7523a33d96ea", + "x-ms-client-request-id": "34ea72a268d474060e0ff6b6a8783d56", + "x-ms-correlation-request-id": "dbebb2e6-03e4-4064-b14b-d48a8f232a68", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "9f5506a9-e790-4825-bc84-5c8dcd5656f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081353Z:dbebb2e6-03e4-4064-b14b-d48a8f232a68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f864-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c228b8d503664e253fe39a0e4df27a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5929a63-a8bd-4e05-b8bd-0a18da1fe6ea", + "x-ms-client-request-id": "1c228b8d503664e253fe39a0e4df27a3", + "x-ms-correlation-request-id": "b2d40430-8d3a-4c24-8b4f-4d00cff8bf79", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "934a48c4-0e4e-479c-80df-2c5fecbc9620", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081354Z:b2d40430-8d3a-4c24-8b4f-4d00cff8bf79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f865-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25a9a8e7e09363a4a2db804556a1b1dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83cb7f3d-705e-4fd0-a0b0-907d68acfa29", + "x-ms-client-request-id": "25a9a8e7e09363a4a2db804556a1b1dc", + "x-ms-correlation-request-id": "d4c5b3dd-a3a6-4617-b056-2b9368efcc5f", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "29f2b8e2-3f5e-4dc3-b2b7-7e65643d9992", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081355Z:d4c5b3dd-a3a6-4617-b056-2b9368efcc5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f866-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5cd0fe1a16f51369086e0d62f65902f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32f965e6-9840-4f16-989a-36041247f8f3", + "x-ms-client-request-id": "b5cd0fe1a16f51369086e0d62f65902f", + "x-ms-correlation-request-id": "2a2274ba-2886-485b-a39c-88aa26bd3d6e", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "8bd88519-8df5-4e4f-bb16-79c85bc397a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081357Z:2a2274ba-2886-485b-a39c-88aa26bd3d6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f867-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00cf52e818cfacc2e7be795ad09c0db1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7b013d4-534d-45ea-b68f-257f3263212b", + "x-ms-client-request-id": "00cf52e818cfacc2e7be795ad09c0db1", + "x-ms-correlation-request-id": "920337b9-0a12-4062-af29-f9acc1eee0a9", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "9c48da99-b088-40a8-9fd1-21342899386e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081358Z:920337b9-0a12-4062-af29-f9acc1eee0a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f868-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5bf5c4c711246347157940dffcd343c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:13:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8ba0025-0d1b-480a-a699-6755063a8b7f", + "x-ms-client-request-id": "d5bf5c4c711246347157940dffcd343c", + "x-ms-correlation-request-id": "a6e82404-abd0-44ff-a95b-cc6236006196", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "cabebb03-a1d4-40c3-88c5-b7f4c597ab14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081359Z:a6e82404-abd0-44ff-a95b-cc6236006196" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f869-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "035d514bb1d2c80d4c20ceb027db81f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e9b6516-66d8-4354-af69-5dde61852104", + "x-ms-client-request-id": "035d514bb1d2c80d4c20ceb027db81f4", + "x-ms-correlation-request-id": "decee5d0-d2b3-49b2-baab-27e9e6594235", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "81fbb1ed-423a-45d3-9da8-4f9d8e15a457", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081401Z:decee5d0-d2b3-49b2-baab-27e9e6594235" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f86a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d28a2f79baa6771c1e898e7883b5ad19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8dcd9f4d-f212-4818-bbac-a8c0ff2d554f", + "x-ms-client-request-id": "d28a2f79baa6771c1e898e7883b5ad19", + "x-ms-correlation-request-id": "46bb92f0-1b31-44f5-8091-29e78a17f424", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "274e2e1b-2f7a-421e-bf67-fa7b534448b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081402Z:46bb92f0-1b31-44f5-8091-29e78a17f424" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f86b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e0f3c8a093e9bdf4ff689f1a2831e95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df73ccdf-9f7c-4f0f-8e72-147a3d5a20ab", + "x-ms-client-request-id": "7e0f3c8a093e9bdf4ff689f1a2831e95", + "x-ms-correlation-request-id": "0fb5d8c5-eb58-4577-aa2b-7349d46385e4", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "68ac4be2-9703-48ec-81c7-08d8aa16f7bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081403Z:0fb5d8c5-eb58-4577-aa2b-7349d46385e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f86c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d094a0d56143919634e6e54922944596", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5eb5746a-7248-4867-9693-14ae78077192", + "x-ms-client-request-id": "d094a0d56143919634e6e54922944596", + "x-ms-correlation-request-id": "9853204d-18fd-4487-902e-c6c9182e0189", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "682eca0e-7def-451a-acfc-888349e460d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081405Z:9853204d-18fd-4487-902e-c6c9182e0189" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f86d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea26b57203cc6fb54fee83af312ad49b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ebef9fa2-5691-4883-a474-33e2e511f801", + "x-ms-client-request-id": "ea26b57203cc6fb54fee83af312ad49b", + "x-ms-correlation-request-id": "3e614a67-8d38-4361-ac92-71d86373b30a", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "f94f76b2-a7f8-4f9b-851f-e891cb56bd34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081407Z:3e614a67-8d38-4361-ac92-71d86373b30a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f86e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3a2f96adc2128d5a67e4958249678ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15790d74-ab9d-4152-8ae3-ae1db83478a3", + "x-ms-client-request-id": "e3a2f96adc2128d5a67e4958249678ba", + "x-ms-correlation-request-id": "d0befcf1-72ad-49cc-9436-6a20a352e4d3", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "b2abf000-ba31-4a97-aa2e-0e14c5ce4597", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081408Z:d0befcf1-72ad-49cc-9436-6a20a352e4d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f86f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed7ff2b1335cd2c9ea248055dee66009", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a6d4223-698e-4817-9205-e53972712b0f", + "x-ms-client-request-id": "ed7ff2b1335cd2c9ea248055dee66009", + "x-ms-correlation-request-id": "3e9b87fb-3413-43af-9210-4c2f121043c6", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "444800ba-3cbd-435a-beee-91e381916232", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081410Z:3e9b87fb-3413-43af-9210-4c2f121043c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f870-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29de491161f19675e0fd444eb95c4bb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fa668f1-6ff2-402e-8278-60ce1d9412f4", + "x-ms-client-request-id": "29de491161f19675e0fd444eb95c4bb9", + "x-ms-correlation-request-id": "bf08ff56-7aa4-49ec-87dc-cb9b21373036", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "57624df3-2570-46b1-ac89-670f71e390db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081411Z:bf08ff56-7aa4-49ec-87dc-cb9b21373036" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f871-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3efec875e7ab363e30d0f8fc5b804abf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89da889b-a1f7-4b75-818c-eafdfe470c7f", + "x-ms-client-request-id": "3efec875e7ab363e30d0f8fc5b804abf", + "x-ms-correlation-request-id": "c8bf4864-0a4c-491d-8273-843a319d5f62", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "30767f3d-7bdd-4d28-aba4-b78c661b7d67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081413Z:c8bf4864-0a4c-491d-8273-843a319d5f62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f872-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da47401e4fb84fc97ce90d5fef7a188d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "132398f0-03e2-435c-a434-8dfe4edfb0d3", + "x-ms-client-request-id": "da47401e4fb84fc97ce90d5fef7a188d", + "x-ms-correlation-request-id": "4519ea5d-a9ad-4895-a036-825582171868", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "be48fdc2-38e8-4940-87fe-30a73238f505", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081414Z:4519ea5d-a9ad-4895-a036-825582171868" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f873-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15dfc7d921e82a5d0ba7f82068793a5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd05bfb1-b26a-47cf-bcd5-58c0e92f1ed5", + "x-ms-client-request-id": "15dfc7d921e82a5d0ba7f82068793a5f", + "x-ms-correlation-request-id": "08d1ff2d-d9a2-4f28-a54c-ece6486bcc75", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "93608fe9-e543-4979-8d12-0d1f2319fb16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081415Z:08d1ff2d-d9a2-4f28-a54c-ece6486bcc75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f874-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "792f84b270152501ffaec1c2dadf47b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccb45f92-208a-4612-9a00-98defe775e7c", + "x-ms-client-request-id": "792f84b270152501ffaec1c2dadf47b5", + "x-ms-correlation-request-id": "463f32df-7581-4606-bc16-48d762f5cc12", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "29270945-08b5-4fdc-b5b7-ccac263f3385", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081417Z:463f32df-7581-4606-bc16-48d762f5cc12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f875-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94236bb835a0fcd7e21dcf1057a8e703", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "340ba5b4-b4dc-488e-93e7-e38ea8688aa3", + "x-ms-client-request-id": "94236bb835a0fcd7e21dcf1057a8e703", + "x-ms-correlation-request-id": "d2f31c0d-417f-45b6-b3ec-36f34798bd3f", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "99d1071a-47a6-4241-90e0-804dba82870e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081418Z:d2f31c0d-417f-45b6-b3ec-36f34798bd3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f876-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6bacadae9f4b6877c6b915395f9a4f2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ea860ba-d583-47cd-8d51-b29af550340f", + "x-ms-client-request-id": "6bacadae9f4b6877c6b915395f9a4f2b", + "x-ms-correlation-request-id": "5718eb1d-6d17-4dec-b2b2-951b4006f821", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "9b9c6f6d-4620-49fa-9eda-0a5578985612", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081419Z:5718eb1d-6d17-4dec-b2b2-951b4006f821" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f877-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd684360a6557dbfad3296f8a1f0ce57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5906d49-8daa-49a1-a342-4cf004d1b3e7", + "x-ms-client-request-id": "fd684360a6557dbfad3296f8a1f0ce57", + "x-ms-correlation-request-id": "cfd81411-4ca6-4c48-9dbb-b15377f027dc", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "87728fcb-720d-48a2-bdf7-26607e7100eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081421Z:cfd81411-4ca6-4c48-9dbb-b15377f027dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f878-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d14bec7dc33186af3bacde71f9d9d47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8891beb0-ef87-4268-ba5b-631ae300a7bc", + "x-ms-client-request-id": "2d14bec7dc33186af3bacde71f9d9d47", + "x-ms-correlation-request-id": "d36cb478-4cd9-4dc4-bac3-31ebfc55b105", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "0d615320-8985-41b1-a38b-82730b6cbbad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081422Z:d36cb478-4cd9-4dc4-bac3-31ebfc55b105" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f879-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13afa4cdea3f08adee2fbe18097ec7d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d67ceba0-ffde-4c99-bd7b-d75df110e4aa", + "x-ms-client-request-id": "13afa4cdea3f08adee2fbe18097ec7d6", + "x-ms-correlation-request-id": "d01af9bb-d5cb-401e-956a-064adc05f6d2", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "37a712b5-6601-4aed-b7cb-e277d58c7ba7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081423Z:d01af9bb-d5cb-401e-956a-064adc05f6d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f87a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a172beea228684f7d950099bd8d75d0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a04556ba-32b6-46a6-9fce-2ec1862e0cf5", + "x-ms-client-request-id": "a172beea228684f7d950099bd8d75d0f", + "x-ms-correlation-request-id": "66064866-866a-43ea-98e4-20708bb28b9b", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "fb97aba6-b1dc-4881-b6d8-192d9f500d9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081425Z:66064866-866a-43ea-98e4-20708bb28b9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f87b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd2b4e95bb40dc17100b3f041e510f75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "554a2bfa-150f-4dcd-b8f7-d189e3c37eae", + "x-ms-client-request-id": "fd2b4e95bb40dc17100b3f041e510f75", + "x-ms-correlation-request-id": "9500a1c7-10d8-4d86-b7c3-2aee2d2219a3", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "ecb76a6b-2728-41bf-8b06-e65047a0794a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081426Z:9500a1c7-10d8-4d86-b7c3-2aee2d2219a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f87c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60fdf7f3fc2aabc0ac2b39efe0123016", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef8d0ed1-f426-40fa-a4ef-20d4daeafe1e", + "x-ms-client-request-id": "60fdf7f3fc2aabc0ac2b39efe0123016", + "x-ms-correlation-request-id": "08b9077b-f1b0-4b9b-b3c1-d8c0e14face1", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "9fcc136f-2a93-490a-8b75-fd1194c3f901", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081427Z:08b9077b-f1b0-4b9b-b3c1-d8c0e14face1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f87d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba82aed1c9532e95a796907be2f36687", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ace581a-6d67-4511-b511-ca2b20ae0053", + "x-ms-client-request-id": "ba82aed1c9532e95a796907be2f36687", + "x-ms-correlation-request-id": "31646475-6d86-44fa-a50f-f82d88bcc122", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "d5a23779-9258-4530-8526-2823ee8444f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081428Z:31646475-6d86-44fa-a50f-f82d88bcc122" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f87e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1a79440fdda98e48d7f51158128fbfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "929bb0e8-2f1f-4c39-b316-2c4c8337b208", + "x-ms-client-request-id": "e1a79440fdda98e48d7f51158128fbfe", + "x-ms-correlation-request-id": "d78d5759-359c-42bb-a2a0-b04efd0adb27", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "ea9418aa-0eb0-4e19-8a53-a2214c6189c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081430Z:d78d5759-359c-42bb-a2a0-b04efd0adb27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f87f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f3328db55ce2a2161ceb9946c45c8b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7504bc1a-b103-445c-82bd-a15d998c788a", + "x-ms-client-request-id": "6f3328db55ce2a2161ceb9946c45c8b8", + "x-ms-correlation-request-id": "0a2ba45e-1d44-4ec7-9a3c-538c50796004", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "5ec1ef05-878f-4a14-a515-16de305b2da4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081431Z:0a2ba45e-1d44-4ec7-9a3c-538c50796004" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f880-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4caeb1c54e6bd43cc9ea2cd37880ac7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b82a24e1-f91f-4ca4-9e48-c32992587a82", + "x-ms-client-request-id": "4caeb1c54e6bd43cc9ea2cd37880ac7e", + "x-ms-correlation-request-id": "fc530b5e-ecfb-4a6c-a595-9ffbde4ea9aa", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "db5f3856-88f5-42d7-aa8a-4ed80ab9c2af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081432Z:fc530b5e-ecfb-4a6c-a595-9ffbde4ea9aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f881-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9a0929af6c0ebb8727d7f0c43502c48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55a3de8c-3319-4667-acb2-a5a254c831ad", + "x-ms-client-request-id": "b9a0929af6c0ebb8727d7f0c43502c48", + "x-ms-correlation-request-id": "6310dc79-70b2-4bbb-af28-20018dfee26d", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "861484e3-c055-4018-a0d0-876679158bdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081434Z:6310dc79-70b2-4bbb-af28-20018dfee26d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f882-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d04f98b7af7a8c93ec5fa5e4284eb1e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e516368-afd8-41e0-9131-bf6036d1500e", + "x-ms-client-request-id": "d04f98b7af7a8c93ec5fa5e4284eb1e1", + "x-ms-correlation-request-id": "c785b64f-6d18-4d10-ad12-4f8f89b67380", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "76674ad6-169a-490a-b6be-ffac33d1f54f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081435Z:c785b64f-6d18-4d10-ad12-4f8f89b67380" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f883-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9fa3a210fa4cef8f8c2d9edcf309079", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b76229b7-616e-4189-aa1f-0ed22b78b5ec", + "x-ms-client-request-id": "d9fa3a210fa4cef8f8c2d9edcf309079", + "x-ms-correlation-request-id": "582caeac-3844-4803-881f-9a1b4bae5a47", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "f67182c6-e797-49be-812e-fc366aff1d68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081436Z:582caeac-3844-4803-881f-9a1b4bae5a47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f884-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e01ce3bddc30eb04ff14cd6151d3c324", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f69c981-526f-4490-8076-c772ec5e2c06", + "x-ms-client-request-id": "e01ce3bddc30eb04ff14cd6151d3c324", + "x-ms-correlation-request-id": "1c66af09-4b3e-49f0-a02a-e7ed758071bf", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "a624a93d-e563-4213-8463-f6b0560acb27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081438Z:1c66af09-4b3e-49f0-a02a-e7ed758071bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f885-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08ea9ecb5255a8a39f81d7b7d5a5bdbc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe91e577-792e-4c85-a2e5-2502b0efd072", + "x-ms-client-request-id": "08ea9ecb5255a8a39f81d7b7d5a5bdbc", + "x-ms-correlation-request-id": "88376a27-03c4-477c-b9ed-eabe0ce62cd6", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "fba894e6-8e56-47e2-a93e-4bf89ee4fd95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081439Z:88376a27-03c4-477c-b9ed-eabe0ce62cd6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f886-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44272cced13144b1360fda9042977d25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6ed1b64-d218-49b9-a9f0-16f97d594cb5", + "x-ms-client-request-id": "44272cced13144b1360fda9042977d25", + "x-ms-correlation-request-id": "538ff4bc-bbe6-477d-b1f4-e96ff83a2448", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "2158b711-5f4a-4780-ab30-aeca0bbb5dc7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081441Z:538ff4bc-bbe6-477d-b1f4-e96ff83a2448" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f887-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3121b5ff88456a233f7440af054c1559", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5532223d-84d6-4023-9e9f-e0eb0f96d11c", + "x-ms-client-request-id": "3121b5ff88456a233f7440af054c1559", + "x-ms-correlation-request-id": "a9e25121-c6e4-45e7-bfe3-f38888c769b1", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "a7b424d3-5992-45e8-acc8-8cc977ec1f18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081442Z:a9e25121-c6e4-45e7-bfe3-f38888c769b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f888-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "259210567eacfaf3eda6d14677136608", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "145cd123-206e-402f-802b-fb5c807db1aa", + "x-ms-client-request-id": "259210567eacfaf3eda6d14677136608", + "x-ms-correlation-request-id": "54f25ccf-1cf1-4e91-9cc8-4001991e58fe", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "6dbac3b3-4eba-4fbb-8af8-ca363088b6a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081443Z:54f25ccf-1cf1-4e91-9cc8-4001991e58fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f889-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fb8b2048c83467708bc04bd91013eea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cdf1d174-03f1-4e40-936e-4313eb9e4d2f", + "x-ms-client-request-id": "1fb8b2048c83467708bc04bd91013eea", + "x-ms-correlation-request-id": "1157b20f-e451-4745-b20d-624f1148e8f6", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "e7eb85ea-9fbe-4b0e-985e-9571cec493a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081444Z:1157b20f-e451-4745-b20d-624f1148e8f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f88a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "313981f958048078c227449fb6dcf22c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d4b6868-cca7-4dca-ac71-4549f668fa69", + "x-ms-client-request-id": "313981f958048078c227449fb6dcf22c", + "x-ms-correlation-request-id": "ae418ff2-8358-4498-a667-c6309b263417", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "9eb46921-1638-4a85-96cb-19c300f4cd91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081446Z:ae418ff2-8358-4498-a667-c6309b263417" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f88b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53ab370ef593cad6994c1cef793568eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8adced98-7a14-4da1-b8a4-31d16b9df678", + "x-ms-client-request-id": "53ab370ef593cad6994c1cef793568eb", + "x-ms-correlation-request-id": "9d3eba69-4808-4e65-89cc-fa026c1803b8", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "058c6f53-74f2-402e-8d56-0b5b1bccee94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081447Z:9d3eba69-4808-4e65-89cc-fa026c1803b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f88c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f64de76734d9ab0339375d5b48d78f2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "968cd7b2-c7b7-4056-a036-097b3665fae5", + "x-ms-client-request-id": "f64de76734d9ab0339375d5b48d78f2b", + "x-ms-correlation-request-id": "70437618-7b98-413c-b33f-5dca223828f1", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "30e8aead-4708-4882-904d-8d21829827a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081448Z:70437618-7b98-413c-b33f-5dca223828f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f88d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59aed8c9eb560356ab6f98b73b89078c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8cc90cb2-a476-4189-b2d0-bf0ab72e20f4", + "x-ms-client-request-id": "59aed8c9eb560356ab6f98b73b89078c", + "x-ms-correlation-request-id": "b5644a4c-6d31-4805-96b6-8e7078afe9d5", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "4f9c2e21-e2e5-405b-acba-567f7380c422", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081450Z:b5644a4c-6d31-4805-96b6-8e7078afe9d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f88e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce3758befc8fd95233ff1a5b987a82c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06e2186c-2170-4a30-84e9-efae8862aaca", + "x-ms-client-request-id": "ce3758befc8fd95233ff1a5b987a82c1", + "x-ms-correlation-request-id": "e12d8ab9-cd19-434f-9f27-36cb313a683c", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "179d6b6b-b03e-4621-9382-219e82c001ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081451Z:e12d8ab9-cd19-434f-9f27-36cb313a683c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f88f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a125f0bc0f867c9491494b6a9c4c70b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6edbaed-c001-4fcb-801c-261f2c10feb8", + "x-ms-client-request-id": "a125f0bc0f867c9491494b6a9c4c70b0", + "x-ms-correlation-request-id": "4e64b772-9a52-408a-a781-5207c6faf19f", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "972dceeb-c088-4e5b-814b-5268edea1535", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081452Z:4e64b772-9a52-408a-a781-5207c6faf19f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f890-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef9cd130c19fcd9c85d52557d1fa6b30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c6e0f4c-2be1-4879-b546-dac89457cee4", + "x-ms-client-request-id": "ef9cd130c19fcd9c85d52557d1fa6b30", + "x-ms-correlation-request-id": "da84372e-1e44-4a43-82ed-1e59fa37e04a", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "1d3a7049-2743-45ee-8337-2787563cb2ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081453Z:da84372e-1e44-4a43-82ed-1e59fa37e04a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f891-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bfbd6ec6563af05c4bb3d46b1e83de7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f10dd44-be12-4570-9aa7-56804bd928b1", + "x-ms-client-request-id": "4bfbd6ec6563af05c4bb3d46b1e83de7", + "x-ms-correlation-request-id": "4d4b9ee0-3c83-4a00-b855-6d27a00bba8f", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "177ef516-2d0e-44c8-9868-b96f4eafd45c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081455Z:4d4b9ee0-3c83-4a00-b855-6d27a00bba8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f892-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c62a698f92ddfb2153581cb1e93caa96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74f34188-9667-4fff-838e-08bdd6e4c3fc", + "x-ms-client-request-id": "c62a698f92ddfb2153581cb1e93caa96", + "x-ms-correlation-request-id": "a81eaea2-4c7e-40ab-bf0c-73aee6b91b90", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "263f6113-f822-42cc-817f-b64702ee012d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081456Z:a81eaea2-4c7e-40ab-bf0c-73aee6b91b90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f893-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c57d1add2450cb4ccbec2be383561c9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d71a4cf7-da26-4ae0-8695-8ae6d9184f12", + "x-ms-client-request-id": "c57d1add2450cb4ccbec2be383561c9c", + "x-ms-correlation-request-id": "839e78da-cc3f-4c21-be59-4fde2e88245d", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "bd670ad9-9b31-4a9f-92be-51701056b751", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081457Z:839e78da-cc3f-4c21-be59-4fde2e88245d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f894-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67c83e97a4cf5952b4fff70b4953c687", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7097e097-d3b4-4c3a-9989-699211644d15", + "x-ms-client-request-id": "67c83e97a4cf5952b4fff70b4953c687", + "x-ms-correlation-request-id": "82ffcb7c-497a-44d9-bd16-d47b1ecebda8", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "4ade8bf3-77f1-46ed-b704-ca8039bdcc97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081458Z:82ffcb7c-497a-44d9-bd16-d47b1ecebda8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f895-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9668a711786a6a961d5ffbf0673d77fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:14:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3a08f78-0b30-4914-af7a-a81f97448281", + "x-ms-client-request-id": "9668a711786a6a961d5ffbf0673d77fd", + "x-ms-correlation-request-id": "493a7e47-bf53-4ccb-8b68-355423b7f71c", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "6462a14d-48dd-4e84-840b-941e14364c05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081500Z:493a7e47-bf53-4ccb-8b68-355423b7f71c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f896-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab1a7f3b437439c6c72310512c418277", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8847307-5d5b-4873-b06f-f90917e734e3", + "x-ms-client-request-id": "ab1a7f3b437439c6c72310512c418277", + "x-ms-correlation-request-id": "f20d2fc0-6255-40d4-8852-10298b9f60da", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "048f09bd-f037-4b21-8f4f-358390970bfc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081501Z:f20d2fc0-6255-40d4-8852-10298b9f60da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f897-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dcd2a32685ee1f31a75d4970a962f277", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f741684-6e51-41cb-bd6e-ffd462d4e140", + "x-ms-client-request-id": "dcd2a32685ee1f31a75d4970a962f277", + "x-ms-correlation-request-id": "1c516ece-67d8-4971-b68f-ef449dc96de6", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "809a20c2-39be-4131-b9df-f7ed1339299b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081502Z:1c516ece-67d8-4971-b68f-ef449dc96de6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f898-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9cff9871b39cd13e02ece4767453edc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a397b13b-d2fa-4350-a795-0e241dda04ee", + "x-ms-client-request-id": "c9cff9871b39cd13e02ece4767453edc", + "x-ms-correlation-request-id": "7610638f-db5a-41d4-a816-524b87c65f75", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "c42bba3d-7fbe-41f8-b68a-09a8e0054874", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081504Z:7610638f-db5a-41d4-a816-524b87c65f75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f899-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4ca83dd9b6ab60f4dfb0316f9569065", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30b27f04-978c-424b-a210-20b69def14e8", + "x-ms-client-request-id": "c4ca83dd9b6ab60f4dfb0316f9569065", + "x-ms-correlation-request-id": "c9da36bd-86eb-4a91-81d3-f41938f8dbf4", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "95c0b3c1-1bc6-4b74-8935-94a886eb347d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081505Z:c9da36bd-86eb-4a91-81d3-f41938f8dbf4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f89a-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32c99931b9710a3e9005fbbfb7eab762", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "caf17c38-2409-458e-a1c9-a84bf476f005", + "x-ms-client-request-id": "32c99931b9710a3e9005fbbfb7eab762", + "x-ms-correlation-request-id": "51c47f42-cf1e-428c-b993-c5375809aa63", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "e2cff434-2001-48e3-ab2b-95a6835774c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081506Z:51c47f42-cf1e-428c-b993-c5375809aa63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f89b-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25936d1f2d97ec0cea197b3e18fcd48a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d314df6f-ab12-454c-bb52-6cc54e863995", + "x-ms-client-request-id": "25936d1f2d97ec0cea197b3e18fcd48a", + "x-ms-correlation-request-id": "57f4e40b-dae2-4b7a-aa1f-d3e9cb2ac91c", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "7e70cfe7-d938-4f64-8a3a-08019dcd6156", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081508Z:57f4e40b-dae2-4b7a-aa1f-d3e9cb2ac91c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f89c-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd15689e0b7b236a45c03465a050fe63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71d346ca-6b3e-4142-8b03-161768c34c39", + "x-ms-client-request-id": "cd15689e0b7b236a45c03465a050fe63", + "x-ms-correlation-request-id": "c4d5a68e-0b83-4fb6-ad88-2434617f59ce", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "010806d6-6ba7-4d63-b65d-5264b3cd1233", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081509Z:c4d5a68e-0b83-4fb6-ad88-2434617f59ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f89d-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bf6a1436bc304ce8ddd48583dfff293", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3da58de-c7e0-47d2-8bf6-3fa4f9ae6b62", + "x-ms-client-request-id": "8bf6a1436bc304ce8ddd48583dfff293", + "x-ms-correlation-request-id": "7ac7a922-0f5a-4173-9da4-cb2b9e61c5c8", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "a726f47a-1592-47e4-9645-ca4f519861ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081510Z:7ac7a922-0f5a-4173-9da4-cb2b9e61c5c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f89e-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e217131ead514e6036fdfd7f9a64c99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9101cf2d-5160-45b0-82e2-9209c244b1af", + "x-ms-client-request-id": "4e217131ead514e6036fdfd7f9a64c99", + "x-ms-correlation-request-id": "f9476b41-97b1-44fd-8763-b1c3d46bda3b", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "e7e0b19f-8b6c-4929-914e-6af065982ca1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081511Z:f9476b41-97b1-44fd-8763-b1c3d46bda3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f89f-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76fb181a480533c79a11409ec211e645", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cfd341e9-bbc0-454b-8f42-3d1c48ce2c2d", + "x-ms-client-request-id": "76fb181a480533c79a11409ec211e645", + "x-ms-correlation-request-id": "f1a41f78-6711-42ef-bd18-63fef0c18c8d", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "ab677330-f33e-44d7-b758-2e51839531c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081513Z:f1a41f78-6711-42ef-bd18-63fef0c18c8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8a0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e34a0cdb02f598dbbe287548bf60ae6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff506dec-4e76-45b5-aef3-c13f2aea4dab", + "x-ms-client-request-id": "2e34a0cdb02f598dbbe287548bf60ae6", + "x-ms-correlation-request-id": "064d9050-e7fa-4920-a276-4da807739ac0", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "f9016395-5d7e-45f6-a04a-8cd8815743d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081514Z:064d9050-e7fa-4920-a276-4da807739ac0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8a1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "253dae917b04e88eaaedb3c3a94751f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c0e4a82-e1ed-4d78-bba3-7f34587e1f25", + "x-ms-client-request-id": "253dae917b04e88eaaedb3c3a94751f1", + "x-ms-correlation-request-id": "de2ba934-2146-4c71-b866-595daaff518c", + "x-ms-ratelimit-remaining-subscription-reads": "11548", + "x-ms-request-id": "cb293dba-d91c-407c-8c1f-e4bfb6b4dd3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081515Z:de2ba934-2146-4c71-b866-595daaff518c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8a2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59099a881d726a6a8aa2ba23c072a7a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a154453-ff26-40d0-bc8a-d48329a0c3a7", + "x-ms-client-request-id": "59099a881d726a6a8aa2ba23c072a7a4", + "x-ms-correlation-request-id": "6d08c94e-08f4-4e44-87c8-529bc9a710a9", + "x-ms-ratelimit-remaining-subscription-reads": "11547", + "x-ms-request-id": "0a3c9d8d-0dba-4fd8-958b-e94cdb751d6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081517Z:6d08c94e-08f4-4e44-87c8-529bc9a710a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8a3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "140d5a06c0d45141124b8441fccaaf73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "796318d7-1ff2-4b69-b141-251f4cb7d917", + "x-ms-client-request-id": "140d5a06c0d45141124b8441fccaaf73", + "x-ms-correlation-request-id": "61d46668-401c-4959-b1a0-bfb7cf9da4f1", + "x-ms-ratelimit-remaining-subscription-reads": "11546", + "x-ms-request-id": "78c59b09-1dd9-4dce-b739-afd1e9c1845e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081519Z:61d46668-401c-4959-b1a0-bfb7cf9da4f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8a4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1cb9590b1ed737344d39b62c16a2837", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80daefd2-89c8-43c0-8e94-46b695e7e32e", + "x-ms-client-request-id": "f1cb9590b1ed737344d39b62c16a2837", + "x-ms-correlation-request-id": "ed8d526d-6303-4d77-a71b-79646e3f4d9a", + "x-ms-ratelimit-remaining-subscription-reads": "11545", + "x-ms-request-id": "d8626f86-244d-40ff-8b1b-8ca8a117d866", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081520Z:ed8d526d-6303-4d77-a71b-79646e3f4d9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8a5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ebc0f453d3ac81d58b7462798296ec0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c03a4af1-83bf-46f0-9e76-de13e825e68d", + "x-ms-client-request-id": "4ebc0f453d3ac81d58b7462798296ec0", + "x-ms-correlation-request-id": "323c504a-5139-4730-811e-b22ebe5baa83", + "x-ms-ratelimit-remaining-subscription-reads": "11544", + "x-ms-request-id": "bf1b3c7d-8c91-4d0c-9f5d-1221dadd2347", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081521Z:323c504a-5139-4730-811e-b22ebe5baa83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8a6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a9247f2b6a755b6e699d00124df90a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34dbc707-9113-476f-9362-f07fb46af90a", + "x-ms-client-request-id": "2a9247f2b6a755b6e699d00124df90a7", + "x-ms-correlation-request-id": "4743b3b9-6589-4328-aa5f-262eeaa04b4d", + "x-ms-ratelimit-remaining-subscription-reads": "11543", + "x-ms-request-id": "b31ce088-2614-411b-b68a-ef8009f25844", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081522Z:4743b3b9-6589-4328-aa5f-262eeaa04b4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8a7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecfb4d23610d5339780298356a4cdb1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8206df2c-17d0-454f-b2bc-2b924af0e50a", + "x-ms-client-request-id": "ecfb4d23610d5339780298356a4cdb1b", + "x-ms-correlation-request-id": "e1a3406d-c67f-4721-8b6f-d0fff69c99e3", + "x-ms-ratelimit-remaining-subscription-reads": "11541", + "x-ms-request-id": "b1f49f65-1832-41a1-ba66-2eb26805d29c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081524Z:e1a3406d-c67f-4721-8b6f-d0fff69c99e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8a8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "796fdb64fdd88f90586767a06d1ca379", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86013d3d-6296-4c46-81f6-b00c0b0ec341", + "x-ms-client-request-id": "796fdb64fdd88f90586767a06d1ca379", + "x-ms-correlation-request-id": "8b1a17a8-325c-44d3-b0a8-42048f592ea8", + "x-ms-ratelimit-remaining-subscription-reads": "11539", + "x-ms-request-id": "e6cecf74-955f-49c4-9090-bfe838284497", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081525Z:8b1a17a8-325c-44d3-b0a8-42048f592ea8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8a9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a049f27812d91b20d3eb2a41e81eb9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7839024f-9e09-4f00-89a0-ec6e41c7acc2", + "x-ms-client-request-id": "4a049f27812d91b20d3eb2a41e81eb9a", + "x-ms-correlation-request-id": "1cc7166f-36eb-4768-899d-bb40686f782e", + "x-ms-ratelimit-remaining-subscription-reads": "11538", + "x-ms-request-id": "05f22ed3-59e7-4184-b2dd-5fc414bb32bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081526Z:1cc7166f-36eb-4768-899d-bb40686f782e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8aa-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "499cb5bd166f25cfbd6c94a5f998e65b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67a88026-9771-41f8-9c80-5c7a9bf32c0f", + "x-ms-client-request-id": "499cb5bd166f25cfbd6c94a5f998e65b", + "x-ms-correlation-request-id": "db6fdcc5-a340-4177-b8cf-52314d390cef", + "x-ms-ratelimit-remaining-subscription-reads": "11537", + "x-ms-request-id": "e9894356-b055-4508-8646-23d5b9a39cb3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081528Z:db6fdcc5-a340-4177-b8cf-52314d390cef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8ab-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb0d1e5f9048e3ed28de6c994beb70d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f389eb0-115a-4e39-8ab1-09a517ac61da", + "x-ms-client-request-id": "cb0d1e5f9048e3ed28de6c994beb70d6", + "x-ms-correlation-request-id": "11bff73a-999d-4367-9d77-44dca76b1887", + "x-ms-ratelimit-remaining-subscription-reads": "11536", + "x-ms-request-id": "101a8a65-e070-4637-a9c9-ba0c147d3efa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081529Z:11bff73a-999d-4367-9d77-44dca76b1887" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8ac-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8e2cd7c5a801009cfde8dc0ed0d9774", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37f9a070-0405-4f29-a073-b418c2b9ce39", + "x-ms-client-request-id": "b8e2cd7c5a801009cfde8dc0ed0d9774", + "x-ms-correlation-request-id": "15a2e93f-2ab5-4989-ab80-ac5712b4b834", + "x-ms-ratelimit-remaining-subscription-reads": "11535", + "x-ms-request-id": "3162e3a7-6452-47b2-ba1f-46857539dcbe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081530Z:15a2e93f-2ab5-4989-ab80-ac5712b4b834" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8ad-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff4557581f742d51c7b92091aa35dad1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a9a8291-cf83-4459-af40-d9ab0967e606", + "x-ms-client-request-id": "ff4557581f742d51c7b92091aa35dad1", + "x-ms-correlation-request-id": "78519eab-35fa-4514-aa54-4c875eb0d1a8", + "x-ms-ratelimit-remaining-subscription-reads": "11534", + "x-ms-request-id": "66baa365-804e-4cc6-a5c9-c1a5e5cb0da1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081532Z:78519eab-35fa-4514-aa54-4c875eb0d1a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8ae-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b29bdfc2eb604da14fdfb69022cf51b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ccb5a16-caf0-42c1-a264-1952dc8ecbe8", + "x-ms-client-request-id": "2b29bdfc2eb604da14fdfb69022cf51b", + "x-ms-correlation-request-id": "90ebec1d-0915-49f6-8715-0c4dac9ddb9a", + "x-ms-ratelimit-remaining-subscription-reads": "11533", + "x-ms-request-id": "d60b6be6-7256-4b2a-8513-7ca29626aec7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081533Z:90ebec1d-0915-49f6-8715-0c4dac9ddb9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8af-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f441f74670a65c627cb5f0c73978669a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04e153cd-d8fe-4bd1-bc5f-6bdffcada016", + "x-ms-client-request-id": "f441f74670a65c627cb5f0c73978669a", + "x-ms-correlation-request-id": "182a5c08-48ad-422a-9394-93009e376798", + "x-ms-ratelimit-remaining-subscription-reads": "11532", + "x-ms-request-id": "cf562fe5-8c56-496a-8979-1f28f467e90e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081534Z:182a5c08-48ad-422a-9394-93009e376798" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8b0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fc4bb046be329be7c40eb7624e72a9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ba9da90-4c68-4650-889f-95e535e95cee", + "x-ms-client-request-id": "2fc4bb046be329be7c40eb7624e72a9a", + "x-ms-correlation-request-id": "277594af-8a24-422b-a06c-02990ab0e774", + "x-ms-ratelimit-remaining-subscription-reads": "11531", + "x-ms-request-id": "6e0430b0-ea2e-4ddc-8c13-7b029617717d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081536Z:277594af-8a24-422b-a06c-02990ab0e774" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8b1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b24a05c3e6f48b2b5accaf003d13cb9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b46a90c5-741e-4a91-bc5b-289cff050bda", + "x-ms-client-request-id": "b24a05c3e6f48b2b5accaf003d13cb9c", + "x-ms-correlation-request-id": "fe97d281-b080-4f8b-8038-9bb4f77a6aca", + "x-ms-ratelimit-remaining-subscription-reads": "11530", + "x-ms-request-id": "ad3cda71-062d-48de-99d1-c4ed2db8bb88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081537Z:fe97d281-b080-4f8b-8038-9bb4f77a6aca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8b2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46656196c667da383917776585ec3894", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b9d97d5-009b-4b0b-9b97-f1ecec841502", + "x-ms-client-request-id": "46656196c667da383917776585ec3894", + "x-ms-correlation-request-id": "1c671d1d-11f1-470d-9e9a-9eed65d7aaa8", + "x-ms-ratelimit-remaining-subscription-reads": "11529", + "x-ms-request-id": "99c2b14e-3c4c-4669-8826-d5dfedcd56c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081538Z:1c671d1d-11f1-470d-9e9a-9eed65d7aaa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8b3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3304568ab42d1ea69039d516bbbdec69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "baf83f76-f731-4051-9d87-406310e30422", + "x-ms-client-request-id": "3304568ab42d1ea69039d516bbbdec69", + "x-ms-correlation-request-id": "4bc9340a-6014-4a1f-b487-55c38ba702d9", + "x-ms-ratelimit-remaining-subscription-reads": "11528", + "x-ms-request-id": "d7eae370-3039-4447-829c-736fabee486d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081540Z:4bc9340a-6014-4a1f-b487-55c38ba702d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8b4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2df4e75e382fc32cd7078dc6ec5066e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e211cf5-ffcb-44cb-8c14-4ca64178784e", + "x-ms-client-request-id": "c2df4e75e382fc32cd7078dc6ec5066e", + "x-ms-correlation-request-id": "116e2a33-c17c-4378-9815-02ea40cccf2a", + "x-ms-ratelimit-remaining-subscription-reads": "11527", + "x-ms-request-id": "08a3be5f-b7d8-457e-9a6d-42547cef6b32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081541Z:116e2a33-c17c-4378-9815-02ea40cccf2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8b5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7751b94970ee26fbb46b62ef0211f7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef24ed2a-efc6-4c99-80b8-cf256fe959f2", + "x-ms-client-request-id": "e7751b94970ee26fbb46b62ef0211f7b", + "x-ms-correlation-request-id": "7c948002-e624-46da-8509-80d736f794ec", + "x-ms-ratelimit-remaining-subscription-reads": "11526", + "x-ms-request-id": "ff9035c6-8af4-4e88-869d-aa0a6a6acb5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081542Z:7c948002-e624-46da-8509-80d736f794ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8b6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37f00e2b750ca712230766bd3bc9afcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "039208d7-f29c-4c9f-988c-1def1d594ebc", + "x-ms-client-request-id": "37f00e2b750ca712230766bd3bc9afcb", + "x-ms-correlation-request-id": "fcf78240-d7cf-4c2c-aa6f-5d06a9ed9a78", + "x-ms-ratelimit-remaining-subscription-reads": "11525", + "x-ms-request-id": "2cc51782-fe40-46aa-b889-153ad5e205b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081544Z:fcf78240-d7cf-4c2c-aa6f-5d06a9ed9a78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8b7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a08266330447dd5adefc073b2d040cab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3798f142-1f6e-41a3-b308-d708e7df9625", + "x-ms-client-request-id": "a08266330447dd5adefc073b2d040cab", + "x-ms-correlation-request-id": "5197be90-d9e5-439f-a2e4-c975ce99e9af", + "x-ms-ratelimit-remaining-subscription-reads": "11524", + "x-ms-request-id": "01ed1d30-3f93-4c3e-af61-a5c35ba040bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081545Z:5197be90-d9e5-439f-a2e4-c975ce99e9af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8b8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60b1fc51ced41e6209cec40730b2a7f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de07cafb-ba07-4c55-965e-5822e34cbcf6", + "x-ms-client-request-id": "60b1fc51ced41e6209cec40730b2a7f1", + "x-ms-correlation-request-id": "1d8ecd3f-94d7-44c1-a420-b450d6d158d7", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "cad5e72f-dcbb-4a70-bd60-2e7e615b3e1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081546Z:1d8ecd3f-94d7-44c1-a420-b450d6d158d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8b9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89fbea967e9f2633b413580f6ed67a1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "82ea36e3-d85d-4f68-8107-8e0e5393c591", + "x-ms-client-request-id": "89fbea967e9f2633b413580f6ed67a1f", + "x-ms-correlation-request-id": "eed99cf1-953b-4c6c-ae8e-f07760699551", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "dee3a1eb-6ead-46a8-ba95-9b8d11a16998", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081548Z:eed99cf1-953b-4c6c-ae8e-f07760699551" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8ba-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e6cbafb4f1764f6046396794052ac2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de4ed88a-3661-47f2-bf76-949bd33b0c72", + "x-ms-client-request-id": "3e6cbafb4f1764f6046396794052ac2c", + "x-ms-correlation-request-id": "5a1e54d0-9d1a-4f83-9528-3555998442dc", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "f1e21ac3-8319-4d4a-9769-5eb1effa68a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081550Z:5a1e54d0-9d1a-4f83-9528-3555998442dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8bb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42a415558208d20cc88aabc17652b032", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f349fc5d-a5f3-48bf-a828-e7f0057c872a", + "x-ms-client-request-id": "42a415558208d20cc88aabc17652b032", + "x-ms-correlation-request-id": "d884f543-3555-4453-86d8-689e4c4ee975", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "e076cbe8-1589-40c4-be4c-9d7cca691cfe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081551Z:d884f543-3555-4453-86d8-689e4c4ee975" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8bc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "760ca454684646daf397853be8bae661", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91096e7b-d5b4-4c42-a1cf-be80dd3c0e1b", + "x-ms-client-request-id": "760ca454684646daf397853be8bae661", + "x-ms-correlation-request-id": "a656893b-b108-4c44-86b4-80049c2ee99c", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "16eaeee9-65ab-4ae1-bf16-42d2988c5499", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081552Z:a656893b-b108-4c44-86b4-80049c2ee99c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8bd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58ba2b6637327816ae99758da435edb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db2b5843-3ce9-4ccd-96ac-9e5a57ac0191", + "x-ms-client-request-id": "58ba2b6637327816ae99758da435edb1", + "x-ms-correlation-request-id": "95ea8191-0dec-4f8c-85b3-2cf7e4d598a1", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "bd7c2d05-13ae-4c0e-b156-c3b6b628b8c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081553Z:95ea8191-0dec-4f8c-85b3-2cf7e4d598a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8be-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b2464b33646ece63b5d4e71fdd0ea0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86b93a11-3231-4287-9a82-1bfebdf88c1f", + "x-ms-client-request-id": "9b2464b33646ece63b5d4e71fdd0ea0e", + "x-ms-correlation-request-id": "876f2cf6-a1e8-4c40-81da-3f62db79ccf2", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "2e2c7fcd-88aa-45ed-b65d-5f2a536cd92d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081555Z:876f2cf6-a1e8-4c40-81da-3f62db79ccf2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8bf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b5b4aa458981c008e93c8acf34ca2be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15b669c5-5aba-4b07-9dd1-d7b989095542", + "x-ms-client-request-id": "4b5b4aa458981c008e93c8acf34ca2be", + "x-ms-correlation-request-id": "7a668534-5ce6-4747-b940-be123b4f857a", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "88ee8671-f5f1-4842-98d3-6630a2c458fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081556Z:7a668534-5ce6-4747-b940-be123b4f857a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8c0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8488d3a94a962f1b45cd1cd4e9a57bdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2473792e-4dee-45dd-b3b1-c8faf050080c", + "x-ms-client-request-id": "8488d3a94a962f1b45cd1cd4e9a57bdd", + "x-ms-correlation-request-id": "d8d0dc63-f4c1-4cba-8a23-0cd2041bc638", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "1781c700-6d40-4d2f-af6c-82336a004d93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081557Z:d8d0dc63-f4c1-4cba-8a23-0cd2041bc638" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8c1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59e867afa2da5a1963070db26e3af9ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6aba4a21-a714-4fa8-9a64-1f119b5d7a5a", + "x-ms-client-request-id": "59e867afa2da5a1963070db26e3af9ee", + "x-ms-correlation-request-id": "03160cff-5f94-4c19-9184-9529037d8f30", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "9f7958ae-ef9f-43d9-8598-faa11a17919e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081559Z:03160cff-5f94-4c19-9184-9529037d8f30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8c2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29c790ba664759782f2b06ca3b2b33e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:15:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49638881-3d78-46a4-834d-1285d04f2b27", + "x-ms-client-request-id": "29c790ba664759782f2b06ca3b2b33e8", + "x-ms-correlation-request-id": "c352020a-752f-4bfc-aa7c-3f1d950eaf24", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "757b1fcb-9a7a-474b-8a44-d447ebd0e8a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081600Z:c352020a-752f-4bfc-aa7c-3f1d950eaf24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8c3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bfcea17486407e4ba2e208e3d68c00a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b83f30be-98e4-4161-947a-17bb1c4b8608", + "x-ms-client-request-id": "8bfcea17486407e4ba2e208e3d68c00a", + "x-ms-correlation-request-id": "1d090ff2-7995-4669-81c1-166b2fef4d39", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "e277720e-c935-4b9b-9be6-519b1e425af3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081601Z:1d090ff2-7995-4669-81c1-166b2fef4d39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8c4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "591a2dd452dd4995ef8f2aae9b4e1f37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad463094-148f-4b5a-9f8b-51b115de1cfa", + "x-ms-client-request-id": "591a2dd452dd4995ef8f2aae9b4e1f37", + "x-ms-correlation-request-id": "576c503d-3eed-4a40-b61a-d7423b13b532", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "bcd9c054-7e1a-42c1-b1bd-d9ae9f8fbdcf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081603Z:576c503d-3eed-4a40-b61a-d7423b13b532" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8c5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "849a24d46d3d718aabbf6f1945e91cc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "979d76ee-2e5a-4a4a-acd8-173204a7764a", + "x-ms-client-request-id": "849a24d46d3d718aabbf6f1945e91cc6", + "x-ms-correlation-request-id": "e695d960-0789-4177-967e-98330bfa3f90", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "dcfaccae-1046-42e1-9fee-3b094b85b64e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081604Z:e695d960-0789-4177-967e-98330bfa3f90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8c6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ef6fb6bda11c50b54b29cd41e356b6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab86b147-4850-40c2-b9f9-e0a6d6e3fd10", + "x-ms-client-request-id": "0ef6fb6bda11c50b54b29cd41e356b6b", + "x-ms-correlation-request-id": "022cb68c-b99a-40ca-b0c5-b1e13b644394", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "56f332ad-e60c-4c86-a7a5-b3f8fe898225", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081605Z:022cb68c-b99a-40ca-b0c5-b1e13b644394" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8c7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18b9e80e3ccd67cda2a8ad1de27c0305", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10a91a11-6eb3-4e4f-b11a-f9c40db4303a", + "x-ms-client-request-id": "18b9e80e3ccd67cda2a8ad1de27c0305", + "x-ms-correlation-request-id": "8f81c725-49d6-4580-a946-9231b1c7ef68", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "e24db09b-acf3-4cfe-9c01-1acf758410cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081607Z:8f81c725-49d6-4580-a946-9231b1c7ef68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8c8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a04364721058f92619d52f8ad1b65375", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fda438f-1879-4a3e-b194-5a2181948ab2", + "x-ms-client-request-id": "a04364721058f92619d52f8ad1b65375", + "x-ms-correlation-request-id": "a7b7b16b-85e0-40de-bfef-b19489e65e45", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "db777e11-2aec-48e1-bdf7-091d254ba2b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081608Z:a7b7b16b-85e0-40de-bfef-b19489e65e45" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8c9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d0a0454032f2ef92e8e6b692dede3d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53140657-c076-4c75-a256-0fde72159e48", + "x-ms-client-request-id": "5d0a0454032f2ef92e8e6b692dede3d8", + "x-ms-correlation-request-id": "99ebca26-065d-4e6e-a5b1-9af7a4c8daa9", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "15fc9b8f-9184-4b6e-9103-eb2e825b1549", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081609Z:99ebca26-065d-4e6e-a5b1-9af7a4c8daa9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8ca-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b96296aecbf2fe12c2c0fff80d4296ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5d95162-6a93-4432-832c-74892a334c63", + "x-ms-client-request-id": "b96296aecbf2fe12c2c0fff80d4296ec", + "x-ms-correlation-request-id": "18d392cb-9306-4033-bdd0-3142a22ded75", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "ab3ab790-2d6c-4fc1-be10-c075bc755c5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081611Z:18d392cb-9306-4033-bdd0-3142a22ded75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8cb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dec93754a6716fd56b1472c9a5bccc2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7e7766b-b22f-4896-b15b-9c5642522786", + "x-ms-client-request-id": "dec93754a6716fd56b1472c9a5bccc2b", + "x-ms-correlation-request-id": "dd75c6dd-7bb7-4f70-b7bd-6de60ba54699", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "33d29ab0-c98e-43b0-83dd-eca8b315087b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081612Z:dd75c6dd-7bb7-4f70-b7bd-6de60ba54699" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8cc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3adb56f199538883f10c9a6f030020eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5a385ca-74b0-4782-88c9-9ddff7f9b994", + "x-ms-client-request-id": "3adb56f199538883f10c9a6f030020eb", + "x-ms-correlation-request-id": "278a6f64-d096-47f0-a7f3-9e5e407372a5", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "8e079c42-6309-4787-b9a0-0628d80aa60b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081613Z:278a6f64-d096-47f0-a7f3-9e5e407372a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8cd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5147ff805240867c0f34edd59485805", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e37a8ba-6f69-4438-952c-5b686b3abde6", + "x-ms-client-request-id": "f5147ff805240867c0f34edd59485805", + "x-ms-correlation-request-id": "a132a469-ac46-44cf-820a-d4cd0f2352e3", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "3d441eae-1d3b-467b-bb57-eb1e6a50eb97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081614Z:a132a469-ac46-44cf-820a-d4cd0f2352e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8ce-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b606d4f35b66ba98b441ec640b656b6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f4387a4-1e4e-47d9-b634-79b565a471fc", + "x-ms-client-request-id": "b606d4f35b66ba98b441ec640b656b6a", + "x-ms-correlation-request-id": "16e9969e-6f2c-4a01-8917-15aea8f34641", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "9846b1eb-dd2c-4fdb-a5fb-85454135c03e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081616Z:16e9969e-6f2c-4a01-8917-15aea8f34641" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8cf-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26d186f3d6a8ec06efd379604aa52fa8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8770713-a5cf-4797-a97d-59b230f6b9e2", + "x-ms-client-request-id": "26d186f3d6a8ec06efd379604aa52fa8", + "x-ms-correlation-request-id": "125b7fe7-3375-473a-92af-f5e2211cd25c", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "13dbbaf1-7515-420b-b262-9585adc020ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081617Z:125b7fe7-3375-473a-92af-f5e2211cd25c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8d0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f7c95b36afa9c85e65941e31802fc5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2a61898-8a18-48b1-93f9-b5c2fe2f0c02", + "x-ms-client-request-id": "2f7c95b36afa9c85e65941e31802fc5a", + "x-ms-correlation-request-id": "a261a343-4285-4235-ac12-0e2b261b15c0", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "9abe8337-dce7-45a4-91e6-8323fa1e8d2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081618Z:a261a343-4285-4235-ac12-0e2b261b15c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8d1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2eae48832771c5dcd19c792e137700e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "167ce236-730b-4106-bc1b-6da659a1fe6d", + "x-ms-client-request-id": "d2eae48832771c5dcd19c792e137700e", + "x-ms-correlation-request-id": "667b11f0-e6b7-4786-9292-276506b9bf22", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "4daec479-f7a8-4a6d-8760-e588feebfacf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081620Z:667b11f0-e6b7-4786-9292-276506b9bf22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8d2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76b144113be9896f01353f4e9523d4ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ae65887-35e1-4b20-98ac-f7f4ba5cbbc3", + "x-ms-client-request-id": "76b144113be9896f01353f4e9523d4ec", + "x-ms-correlation-request-id": "a9a5a6ca-4d5b-4aa1-b066-b5e8e5a7add7", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "e43d228b-22f8-4cb1-99c8-02e3c14344ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081621Z:a9a5a6ca-4d5b-4aa1-b066-b5e8e5a7add7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8d3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66d81ed75cbb8031385f61e1a2f2baae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "812e1fae-df3a-44bd-af3b-9773ab61f190", + "x-ms-client-request-id": "66d81ed75cbb8031385f61e1a2f2baae", + "x-ms-correlation-request-id": "332835fd-29c2-4552-9aca-592db3c96a43", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "9ac7df00-fdef-4175-829b-e923d42ad02e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081622Z:332835fd-29c2-4552-9aca-592db3c96a43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8d4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3d132e986514c717560d142f30e87aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bae5a96b-fef3-4c27-abf0-08c9021cf804", + "x-ms-client-request-id": "d3d132e986514c717560d142f30e87aa", + "x-ms-correlation-request-id": "9eb6b39a-261f-4ef3-9583-709f0c88eaf3", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "95104082-14cb-4906-b6a6-6d21f9e0cc37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081624Z:9eb6b39a-261f-4ef3-9583-709f0c88eaf3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8d5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3bbda44095fb55312303d89da8de70f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea5d9611-48f5-4a05-b865-8f6ad473f665", + "x-ms-client-request-id": "c3bbda44095fb55312303d89da8de70f", + "x-ms-correlation-request-id": "1d186bdd-7503-4eb1-b85d-4a0d12f2e95f", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "c87a73fa-99b7-4296-bf0a-6a1b474f090f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081625Z:1d186bdd-7503-4eb1-b85d-4a0d12f2e95f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8d6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6264917a0051509bad8cf05a8aef8d2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "022919da-f7b4-4805-8401-2d3dcb44666e", + "x-ms-client-request-id": "6264917a0051509bad8cf05a8aef8d2a", + "x-ms-correlation-request-id": "be33d18f-8ed6-48ff-af44-32b3f37105a0", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "23894d0f-8157-41b7-bcdc-3d91db176980", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081626Z:be33d18f-8ed6-48ff-af44-32b3f37105a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8d7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c79cb6d8f736df4fde1bc12148e772e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00166ac5-2ec4-44d0-bfd2-1e32a230093e", + "x-ms-client-request-id": "c79cb6d8f736df4fde1bc12148e772e7", + "x-ms-correlation-request-id": "1416d5b3-6023-44ef-940e-60597fc903d8", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "1579d9da-c798-45a1-ad21-2dd999a2b042", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081627Z:1416d5b3-6023-44ef-940e-60597fc903d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8d8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62c7c27924a943583f6b15d219f82b23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "167df585-71e4-4977-b456-b639bb0bd982", + "x-ms-client-request-id": "62c7c27924a943583f6b15d219f82b23", + "x-ms-correlation-request-id": "2525f52f-25fd-4776-a074-02e0bb13f713", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "13cd56d9-4a07-4e01-beb3-4d64bf2011ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081629Z:2525f52f-25fd-4776-a074-02e0bb13f713" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8d9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23b113a31ff182d8418483363f7a07c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a406b7e-6773-4d20-a042-9ee6e55ec4be", + "x-ms-client-request-id": "23b113a31ff182d8418483363f7a07c5", + "x-ms-correlation-request-id": "88eb4d70-bb41-4f2b-b695-1a0d59decf31", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "942c31e7-586f-4870-a267-df0b1a0c6b2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081630Z:88eb4d70-bb41-4f2b-b695-1a0d59decf31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8da-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7e1091a2a27b3805e5888cbe17cc6e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c18f91a7-2957-4dbb-9675-14c9510b5527", + "x-ms-client-request-id": "c7e1091a2a27b3805e5888cbe17cc6e5", + "x-ms-correlation-request-id": "7df020fc-af60-4398-9b7d-9b3386bd1583", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "48d16534-9e4d-4cfd-939e-de7888bdede6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081631Z:7df020fc-af60-4398-9b7d-9b3386bd1583" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8db-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "357d9df04e3659f6ea442024a12204c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d04ac03-e7d4-457a-ac7b-98f6d635848d", + "x-ms-client-request-id": "357d9df04e3659f6ea442024a12204c5", + "x-ms-correlation-request-id": "6b0f5a66-f0ff-480a-a735-09d1dd211be4", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "5c606cb6-dfc0-4782-9da1-3bc1228040a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081633Z:6b0f5a66-f0ff-480a-a735-09d1dd211be4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8dc-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10b85063631778fc93fdc598960da1c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4454b20c-e079-4b8c-b429-aefd24e4f102", + "x-ms-client-request-id": "10b85063631778fc93fdc598960da1c5", + "x-ms-correlation-request-id": "0ec615d4-df75-4a82-82ab-2b84b1ebe5cd", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "0537c785-129e-477e-98c3-022798447893", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081634Z:0ec615d4-df75-4a82-82ab-2b84b1ebe5cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8dd-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2459dbed2fccb8f1287dde20a5b123b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65653a78-21ff-4c42-8cfa-57bd2371fb57", + "x-ms-client-request-id": "a2459dbed2fccb8f1287dde20a5b123b", + "x-ms-correlation-request-id": "ecf48ef6-569a-4e29-8527-d8fd502721c6", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "03dd11d8-fe7c-4f16-83f9-b760a60003ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081635Z:ecf48ef6-569a-4e29-8527-d8fd502721c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8de-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9167c354b6c48ccea105a238895dc3dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9907f134-4940-4e34-a472-831230f10b5e", + "x-ms-client-request-id": "9167c354b6c48ccea105a238895dc3dc", + "x-ms-correlation-request-id": "c6524901-1414-4b00-afa0-530c8e5410e5", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "3c941583-e11f-4cf7-81b8-8678fc68316c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081637Z:c6524901-1414-4b00-afa0-530c8e5410e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8df-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03665ba361dd91c9c0ecfd8f86196d37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29132c27-1329-44f9-ab82-b0b60ac007a7", + "x-ms-client-request-id": "03665ba361dd91c9c0ecfd8f86196d37", + "x-ms-correlation-request-id": "d3b41ba9-8a57-40c9-abba-94aeacadb08b", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "1a101fd1-7668-4d16-9ee1-b3021c90630b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081638Z:d3b41ba9-8a57-40c9-abba-94aeacadb08b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8e0-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3438aeb0fa50800ceb901f62f5642b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0a6d8d3-e128-419d-817a-31ed7303b87c", + "x-ms-client-request-id": "d3438aeb0fa50800ceb901f62f5642b4", + "x-ms-correlation-request-id": "bc2e0aa8-e4a6-447a-9476-709c02884a41", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "28f87578-1b7a-4b7b-a910-7cbb80adf9da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081639Z:bc2e0aa8-e4a6-447a-9476-709c02884a41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8e1-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae3f01c40ef5f35ef9d6d0d7b83f0687", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe4adb55-ad53-4c11-895b-f57035db8ca5", + "x-ms-client-request-id": "ae3f01c40ef5f35ef9d6d0d7b83f0687", + "x-ms-correlation-request-id": "29f336b7-8a02-440f-a5a0-76af68e24fec", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "96292fe3-9b3a-4853-908a-95609d83d3db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081641Z:29f336b7-8a02-440f-a5a0-76af68e24fec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8e2-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff4d6a97ef1a93365a5e342360d2616a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e5ba405-0fde-4006-a930-3df1b49a0e8c", + "x-ms-client-request-id": "ff4d6a97ef1a93365a5e342360d2616a", + "x-ms-correlation-request-id": "8a459eb3-05ca-4c65-bb86-f1e4a95021a9", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "1644ac8b-0dcf-4115-836c-06bde2ad1ac9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081642Z:8a459eb3-05ca-4c65-bb86-f1e4a95021a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8e3-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85cb48aabedadc422b50d9cf3f294f8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aebf54b0-05e2-4290-b896-84f3629fc189", + "x-ms-client-request-id": "85cb48aabedadc422b50d9cf3f294f8f", + "x-ms-correlation-request-id": "c3fb9cbb-89df-4005-9a1d-544eccdc3bd5", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "09afc8fb-d75c-47e4-848c-fbe00f57cf40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081643Z:c3fb9cbb-89df-4005-9a1d-544eccdc3bd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8e4-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c45e79b34208d49acaab5497d93a9227", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5a33288-e7ae-4fe8-bcd1-c0e9e7a303d1", + "x-ms-client-request-id": "c45e79b34208d49acaab5497d93a9227", + "x-ms-correlation-request-id": "843709a0-0e6a-4592-8c07-e141e36e2fc8", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "9efb9225-bbfd-46fc-86c7-29a2f8a0d79b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081644Z:843709a0-0e6a-4592-8c07-e141e36e2fc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8e5-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "702d66748073d8ad2870d3ca16665431", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "083ed29f-e9bf-4b02-8c87-ff04c8804853", + "x-ms-client-request-id": "702d66748073d8ad2870d3ca16665431", + "x-ms-correlation-request-id": "1eaeed06-f21e-41b0-b302-aba590ec94a4", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "88548cc4-cc38-4ccb-975b-736dbdd346b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081646Z:1eaeed06-f21e-41b0-b302-aba590ec94a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8e6-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e770a50e9d746761aef6ba2e6aab03f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f4e16f4-fe08-40b0-b365-fabba471f492", + "x-ms-client-request-id": "e770a50e9d746761aef6ba2e6aab03f1", + "x-ms-correlation-request-id": "82c9f691-ed15-49ad-9244-577072ff9775", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "91466b50-946b-4b33-8732-6df5b86a32bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081647Z:82c9f691-ed15-49ad-9244-577072ff9775" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8e7-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d85bb2bddefb321ccb859c986ed0be63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5cb30a4f-4663-404b-bd4b-ac2175e4ba50", + "x-ms-client-request-id": "d85bb2bddefb321ccb859c986ed0be63", + "x-ms-correlation-request-id": "f18c6591-8a3b-490b-826b-0fe2c1dd06a6", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "9848200f-b28d-441b-81c1-3558ed498f91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081648Z:f18c6591-8a3b-490b-826b-0fe2c1dd06a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8e8-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34882257abcad7b205c5c27dc67e6e7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5def67e0-25b4-4474-b06a-a1c16783ca2a", + "x-ms-client-request-id": "34882257abcad7b205c5c27dc67e6e7d", + "x-ms-correlation-request-id": "d4382e23-a539-4888-8a8b-3507d0f3ea40", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "fd4f1172-678e-4e2d-b9ec-bb46e5dc7a2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081650Z:d4382e23-a539-4888-8a8b-3507d0f3ea40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8e9-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "630ce26d7b0b3035883d1bee00c8f9dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f419de0a-3bc1-4bcd-b44c-f50ee633c7da", + "x-ms-client-request-id": "630ce26d7b0b3035883d1bee00c8f9dd", + "x-ms-correlation-request-id": "74a2a984-24c4-4f8b-a0ec-5e8230eb3a6c", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "7a9391ea-adaf-41bc-9c64-b1302caeac17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081651Z:74a2a984-24c4-4f8b-a0ec-5e8230eb3a6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8ea-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48d75637ce2311260084d3361c9e6c4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed9a4c1e-fe72-4f7d-a51d-02fb3bb53972", + "x-ms-client-request-id": "48d75637ce2311260084d3361c9e6c4c", + "x-ms-correlation-request-id": "3649b00d-4630-4fa7-830c-44340741ad96", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "08ed7839-fed6-41ec-a297-3b45b1e5dc35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081652Z:3649b00d-4630-4fa7-830c-44340741ad96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8eb-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c2b1e175bc3db58ec57ab8c90c3d63c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8120992-5119-413d-876f-fc8f322badcc", + "x-ms-client-request-id": "8c2b1e175bc3db58ec57ab8c90c3d63c", + "x-ms-correlation-request-id": "69b13838-b558-4e33-b30d-43317d7e0f59", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "4e5bcac5-7743-47bb-b055-6ec19f3e3c8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081654Z:69b13838-b558-4e33-b30d-43317d7e0f59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1a2346b5-a10f-4cd1-8e99-f470054daa19?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|2c28f8ec-4d724e25d93f4ae5.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f45e4cc25a79e5abbfb6387a8fe13ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:16:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "206f3922-065a-4a51-9517-4f945fafa53e", + "x-ms-client-request-id": "6f45e4cc25a79e5abbfb6387a8fe13ea", + "x-ms-correlation-request-id": "79b72b4a-4a35-4f18-bf11-2cfec36749b6", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "82e7e59a-9c26-47e7-8755-fd14a1a4cbb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T081655Z:79b72b4a-4a35-4f18-bf11-2cfec36749b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "1468535758", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionSiteToSiteTest.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionSiteToSiteTest.json new file mode 100644 index 000000000000..f0a7e5a0eb9b --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionSiteToSiteTest.json @@ -0,0 +1,37684 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41fa7739f4ff6d73f422a2ebfad0359d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9ef5adf5-79c9-4d56-a75c-65fd3144adc8", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "9ef5adf5-79c9-4d56-a75c-65fd3144adc8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082202Z:9ef5adf5-79c9-4d56-a75c-65fd3144adc8" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/csmrg6370?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "32", + "Content-Type": "application/json", + "traceparent": "00-5339d8499477434bb53c4e407996e142-d6fd5f3b77dca041-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf60e8e16dcb32ad0cab220fd60d50d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e07066e1-ef3e-4272-9d89-c0862d4ab791", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "e07066e1-ef3e-4272-9d89-c0862d4ab791", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082203Z:e07066e1-ef3e-4272-9d89-c0862d4ab791" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370", + "name": "csmrg6370", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "243", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "528adf9939f8fd5ae3da290acc043179", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "dhcpOptions": { + "dnsServers": [ + "10.1.1.1", + "10.1.2.4" + ] + }, + "subnets": [ + { + "name": "GatewaySubnet", + "id": null, + "properties": { + "addressPrefix": "10.0.0.0/24" + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1be066df-18fa-4f66-b780-0e21aeb0c165?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1336", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "3", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4cca1da7-ce0c-4e4f-a75b-0a2438fe97a6", + "x-ms-client-request-id": "528adf9939f8fd5ae3da290acc043179", + "x-ms-correlation-request-id": "b70a5000-27cd-4f2c-bc43-c904f39b0d4f", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "1be066df-18fa-4f66-b780-0e21aeb0c165", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082207Z:b70a5000-27cd-4f2c-bc43-c904f39b0d4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet7565\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ba0c62f8-7257-4ea9-b0a8-0cb796a17d8a\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002231823d59-764c-466e-b31a-1b4e9b94b654\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ba0c62f8-7257-4ea9-b0a8-0cb796a17d8a\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5537a6133813aee906d1e79383273fa7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1338", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:06 GMT", + "ETag": "W/\u00228dce291e-c034-4158-8674-e0aa79565a16\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "adfd6077-e26c-41da-89a5-42262db3e9ea", + "x-ms-client-request-id": "5537a6133813aee906d1e79383273fa7", + "x-ms-correlation-request-id": "d7a53c7b-c1d6-41d9-ad66-e3853d906919", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "d6ca0623-5919-4618-a709-c5d8755df626", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082207Z:d7a53c7b-c1d6-41d9-ad66-e3853d906919" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet7565\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228dce291e-c034-4158-8674-e0aa79565a16\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002231823d59-764c-466e-b31a-1b4e9b94b654\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228dce291e-c034-4158-8674-e0aa79565a16\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c35295f114a52ae8d63c4305f1099fc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1338", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:07 GMT", + "ETag": "W/\u00228dce291e-c034-4158-8674-e0aa79565a16\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5eb45726-4b85-452c-96e1-2cdfb931434a", + "x-ms-client-request-id": "c35295f114a52ae8d63c4305f1099fc4", + "x-ms-correlation-request-id": "709e2cd1-38b8-423e-99c6-54053a6ed58f", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "4604a0b2-d00c-477c-bfff-7a104ac6663a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082208Z:709e2cd1-38b8-423e-99c6-54053a6ed58f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet7565\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228dce291e-c034-4158-8674-e0aa79565a16\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002231823d59-764c-466e-b31a-1b4e9b94b654\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228dce291e-c034-4158-8674-e0aa79565a16\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25f7d7c5dbcd4b6660fcbd998675c9e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "538", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:07 GMT", + "ETag": "W/\u00228dce291e-c034-4158-8674-e0aa79565a16\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8643b97b-c762-4e01-83bd-1ba84164793e", + "x-ms-client-request-id": "25f7d7c5dbcd4b6660fcbd998675c9e6", + "x-ms-correlation-request-id": "e06032ab-fc93-41b0-84c2-8dead983102f", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "2248c3d2-eec2-4628-b003-d544d65ae1d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082208Z:e06032ab-fc93-41b0-84c2-8dead983102f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228dce291e-c034-4158-8674-e0aa79565a16\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "170", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccc85fa0ad51bdff0c7fd6f4e4bdfc32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "test": "value" + }, + "id": null, + "properties": { + "localNetworkAddressSpace": { + "addressPrefixes": [ + "192.168.0.0/16" + ] + }, + "gatewayIpAddress": "192.168.3.4" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7623c7c4-7ae6-4c0c-96e7-af54e0b72895?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "624", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee25f2dc-0fbe-4255-87de-86a36ac8bf09", + "x-ms-client-request-id": "ccc85fa0ad51bdff0c7fd6f4e4bdfc32", + "x-ms-correlation-request-id": "ed3581ad-b600-416d-893f-10e03986bd26", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "7623c7c4-7ae6-4c0c-96e7-af54e0b72895", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082211Z:ed3581ad-b600-416d-893f-10e03986bd26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3704\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022cb59850f-7458-49a5-8cd3-d6b026eb1694\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/localNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022test\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022566a938c-1df2-455b-bd75-1b1893431bb8\u0022,\r\n", + " \u0022localNetworkAddressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u0022192.168.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayIpAddress\u0022: \u0022192.168.3.4\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7623c7c4-7ae6-4c0c-96e7-af54e0b72895?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a951515df7d62a74f768c05c8f577c3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf7014bf-eea4-4eb5-9c6f-fe88be207f85", + "x-ms-client-request-id": "a951515df7d62a74f768c05c8f577c3e", + "x-ms-correlation-request-id": "8d90cc97-5778-4bad-b60f-69ff3c196552", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "24f25d71-2cad-44fb-be7b-94e759d78b63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082212Z:8d90cc97-5778-4bad-b60f-69ff3c196552" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7623c7c4-7ae6-4c0c-96e7-af54e0b72895?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a76366c0b51cc6994a98c6ef03a86e68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e62c350a-83d7-4514-ac05-0a44231618d5", + "x-ms-client-request-id": "a76366c0b51cc6994a98c6ef03a86e68", + "x-ms-correlation-request-id": "279c54bc-8263-498f-a0b5-f1a8c1d5822b", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "e2361974-69e9-4884-9c6c-e99956f234d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082213Z:279c54bc-8263-498f-a0b5-f1a8c1d5822b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7623c7c4-7ae6-4c0c-96e7-af54e0b72895?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9296631e526c2b5c598238b119b8a0ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4cd9456-ee70-419e-a3b3-68e8cb9da18f", + "x-ms-client-request-id": "9296631e526c2b5c598238b119b8a0ae", + "x-ms-correlation-request-id": "86225ea6-0625-44d5-80f0-00b66bd16194", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "ca57496a-66c0-4953-99ae-bb76ed71b84c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082214Z:86225ea6-0625-44d5-80f0-00b66bd16194" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7623c7c4-7ae6-4c0c-96e7-af54e0b72895?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9956ae5b940a756b78a5f3d3185264f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7154994b-8cf9-4f51-a1ea-485a58ea1a72", + "x-ms-client-request-id": "e9956ae5b940a756b78a5f3d3185264f", + "x-ms-correlation-request-id": "41fa9d5b-38a4-4cbe-827f-6639bba070b6", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "49c6c604-06b3-4f85-a097-1dec73425836", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082216Z:41fa9d5b-38a4-4cbe-827f-6639bba070b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b3d58fae9c06ed20a374d9a7ce8ad91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "625", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:15 GMT", + "ETag": "W/\u00228462dc53-9ce3-4833-923b-2ecc5bfb6beb\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "489aee76-91c1-4e7b-b13d-9b1c85a6e03a", + "x-ms-client-request-id": "2b3d58fae9c06ed20a374d9a7ce8ad91", + "x-ms-correlation-request-id": "acac87ee-4ea1-429f-af3f-3a3ab593cbd0", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "949c81cf-b178-4877-be5e-92ef2e04e4b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082216Z:acac87ee-4ea1-429f-af3f-3a3ab593cbd0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3704\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228462dc53-9ce3-4833-923b-2ecc5bfb6beb\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/localNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022test\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022566a938c-1df2-455b-bd75-1b1893431bb8\u0022,\r\n", + " \u0022localNetworkAddressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u0022192.168.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayIpAddress\u0022: \u0022192.168.3.4\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "990917f8841265270defdae1f31efad4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "625", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:15 GMT", + "ETag": "W/\u00228462dc53-9ce3-4833-923b-2ecc5bfb6beb\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45e71a5d-f315-4e13-b3cc-395b526a5c02", + "x-ms-client-request-id": "990917f8841265270defdae1f31efad4", + "x-ms-correlation-request-id": "7069dc1c-f60e-4cf0-b160-642f27c56b82", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "fd8f4228-47dd-4e4b-97b3-c2ab69150405", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082216Z:7069dc1c-f60e-4cf0-b160-642f27c56b82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3704\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228462dc53-9ce3-4833-923b-2ecc5bfb6beb\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/localNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022test\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022566a938c-1df2-455b-bd75-1b1893431bb8\u0022,\r\n", + " \u0022localNetworkAddressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u0022192.168.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayIpAddress\u0022: \u0022192.168.3.4\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "757bc1b7fcee2797df096cbb2acfddcd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "publicIPAllocationMethod": "Dynamic", + "dnsSettings": { + "domainNameLabel": "azsmnet6477" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca2c4f41-8127-467a-8661-30013708cb3e?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "796", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "1", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e8c5296-f82f-4020-ada8-62d84fa8c08b", + "x-ms-client-request-id": "757bc1b7fcee2797df096cbb2acfddcd", + "x-ms-correlation-request-id": "f59cab11-7cf6-4622-af13-8d50cd760126", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "ca2c4f41-8127-467a-8661-30013708cb3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082220Z:f59cab11-7cf6-4622-af13-8d50cd760126" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3390\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002241a2fd61-caeb-4048-8fca-28e8d8459790\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00221bda684b-1402-42ad-b434-d30653a738cc\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet6477\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet6477.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca2c4f41-8127-467a-8661-30013708cb3e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb31933d83160d2802eba51ef851c40b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b7c66ace-77f9-43ac-99aa-c624d136c915", + "x-ms-client-request-id": "eb31933d83160d2802eba51ef851c40b", + "x-ms-correlation-request-id": "e8f94c38-e998-4db3-a489-826f6cda25fb", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "294f28ab-7344-42dc-9e69-10e5a64d0cac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082220Z:e8f94c38-e998-4db3-a489-826f6cda25fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfda2504cf5842ad90a3571ceca5acf3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "797", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:19 GMT", + "ETag": "W/\u00222a34353f-a4e6-4976-b275-fa975f1922ec\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0391ee8-590c-4e91-9a14-799dc4181dd4", + "x-ms-client-request-id": "dfda2504cf5842ad90a3571ceca5acf3", + "x-ms-correlation-request-id": "78b7daba-3328-4de7-971f-1304b1358cae", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "4c0033c7-2ac4-4e8e-be13-fe303497656a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082220Z:78b7daba-3328-4de7-971f-1304b1358cae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3390\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00222a34353f-a4e6-4976-b275-fa975f1922ec\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00221bda684b-1402-42ad-b434-d30653a738cc\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet6477\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet6477.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "977df3cbf19ec1b7f16f8a51cf12dfcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "797", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:20 GMT", + "ETag": "W/\u00222a34353f-a4e6-4976-b275-fa975f1922ec\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e44c7656-c807-4ed1-90cf-0fde0352763f", + "x-ms-client-request-id": "977df3cbf19ec1b7f16f8a51cf12dfcb", + "x-ms-correlation-request-id": "db62a47f-ddfa-4c18-8e78-c09edb7884a3", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "8e778652-edca-4513-b11a-4783e62625e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082221Z:db62a47f-ddfa-4c18-8e78-c09edb7884a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3390\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00222a34353f-a4e6-4976-b275-fa975f1922ec\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00221bda684b-1402-42ad-b434-d30653a738cc\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet6477\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet6477.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "740", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d1155ed6e20efe65b722b0c205c3fb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet245", + "id": null, + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "enableBgp": false, + "gatewayDefaultSite": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2722", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09a7dff2-2420-4224-97ba-7fe649844552", + "x-ms-client-request-id": "5d1155ed6e20efe65b722b0c205c3fb1", + "x-ms-correlation-request-id": "fb47a77f-b470-43a6-b64d-8134d7640007", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "eb0c5d6d-0bac-4ad3-a333-fb08acbe7773", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082225Z:fb47a77f-b470-43a6-b64d-8134d7640007" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5778\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002278a6782b-1706-4f5c-89c6-616eca8623ed\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022f9951d82-44ca-4340-a789-ffe0319b3bdd\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet245\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002278a6782b-1706-4f5c-89c6-616eca8623ed\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022SSTP\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 0,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [],\r\n", + " \u0022customBgpIpAddresses\u0022: []\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayDefaultSite\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56b8e80f6ee20fd3b1ae964496e54e2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10fd47db-cf81-41c8-a794-cd82dc32a8f8", + "x-ms-client-request-id": "56b8e80f6ee20fd3b1ae964496e54e2e", + "x-ms-correlation-request-id": "ceac37e1-a17c-4b3f-800c-59c29af54d85", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "6ba3b583-610a-4de4-b3ce-9f4db7cf921b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082226Z:ceac37e1-a17c-4b3f-800c-59c29af54d85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbbf1e12e1f7da96e7f87036298a7cdc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd4f065d-356a-435d-8624-e05b0bff0da9", + "x-ms-client-request-id": "dbbf1e12e1f7da96e7f87036298a7cdc", + "x-ms-correlation-request-id": "b79dbdfa-cd08-42bd-9933-d355758a16b1", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "22dfcd2e-82f8-49a0-8b26-f8208d52f0d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082227Z:b79dbdfa-cd08-42bd-9933-d355758a16b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37fd9fafe8a3e4ce30c47abe7c298208", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87f54e2a-846e-4630-b4ac-68769d219233", + "x-ms-client-request-id": "37fd9fafe8a3e4ce30c47abe7c298208", + "x-ms-correlation-request-id": "ddad2b6a-8305-49f1-85f2-98644b1eb223", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "11730a34-cbda-47c8-b494-248bc6b9aa1b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082228Z:ddad2b6a-8305-49f1-85f2-98644b1eb223" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5449169ae7be2d9451dd6feafe9ce627", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb43f256-481e-4b9f-84d8-3598e4def833", + "x-ms-client-request-id": "5449169ae7be2d9451dd6feafe9ce627", + "x-ms-correlation-request-id": "d9fd3e7b-dff3-4bb0-b389-a2a20bf5eaec", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "b482a418-8407-4b8c-bb44-f71c936a33a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082230Z:d9fd3e7b-dff3-4bb0-b389-a2a20bf5eaec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f694b93217e8298b4fdbaa3366d85ebd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4ff1434-7781-4117-9f6b-99d268b94207", + "x-ms-client-request-id": "f694b93217e8298b4fdbaa3366d85ebd", + "x-ms-correlation-request-id": "d214f2bc-ed6f-4224-8477-942149743641", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "bf509e43-d319-439c-a945-63e9fcda7376", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082231Z:d214f2bc-ed6f-4224-8477-942149743641" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "139c67762840c71d0bcfe5c579e4e693", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c65f753a-cdf1-474f-ad5a-67dbd7554717", + "x-ms-client-request-id": "139c67762840c71d0bcfe5c579e4e693", + "x-ms-correlation-request-id": "80238c0d-b386-489e-910d-d42a7ef9c0b9", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "133eaa4a-becf-426a-92d2-c619c7c1b6d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082232Z:80238c0d-b386-489e-910d-d42a7ef9c0b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c28c53de8c94831f8b2004e33d60c778", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6534854-b1c5-4b97-84a9-b8ae2e26d469", + "x-ms-client-request-id": "c28c53de8c94831f8b2004e33d60c778", + "x-ms-correlation-request-id": "7bb0ba10-3dd1-49c4-b0f1-871427d103de", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "8c797059-77da-4094-a85e-f04c083887f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082234Z:7bb0ba10-3dd1-49c4-b0f1-871427d103de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9674b17ed30009e79bcdea1831c5af6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee82d1e6-ebd6-4279-9e02-b24c1beabb00", + "x-ms-client-request-id": "9674b17ed30009e79bcdea1831c5af6a", + "x-ms-correlation-request-id": "4d30c368-9630-4a78-9161-75ecd92f1a8c", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "6ea2834e-4e53-4c58-8a4d-36a10acb28a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082235Z:4d30c368-9630-4a78-9161-75ecd92f1a8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "135416f59b4ce9284818871f243a8aaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "688c5174-26fb-4758-9729-cd7d0a33bcfd", + "x-ms-client-request-id": "135416f59b4ce9284818871f243a8aaa", + "x-ms-correlation-request-id": "da379e68-5f57-4864-b9fb-6fd258e9e10c", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "6315196f-52e5-4340-afd7-928bdca693ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082236Z:da379e68-5f57-4864-b9fb-6fd258e9e10c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8466c084f700b936b8227c7a10651c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "356c5c13-e215-400e-8ce7-3a070260e5ca", + "x-ms-client-request-id": "c8466c084f700b936b8227c7a10651c6", + "x-ms-correlation-request-id": "f1c4345a-2530-4fa1-9293-5493c15a86f1", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "41528d83-d8ec-4837-81f8-45eb8e5da911", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082238Z:f1c4345a-2530-4fa1-9293-5493c15a86f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27ee9970b30ce22c888a4ee74bc7e561", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e290e71-47cf-4038-8737-69635c3cc931", + "x-ms-client-request-id": "27ee9970b30ce22c888a4ee74bc7e561", + "x-ms-correlation-request-id": "32834824-ebca-44aa-95a5-168ba234ddd9", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "8f3bc699-1f79-4800-a355-28f36cdbf897", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082239Z:32834824-ebca-44aa-95a5-168ba234ddd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5103f42e77ea5fa8349a7ca74614841", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8da4e0a-b3c1-410f-8a36-877a3f8cf6b2", + "x-ms-client-request-id": "c5103f42e77ea5fa8349a7ca74614841", + "x-ms-correlation-request-id": "5ae314ef-374c-40b2-8c24-5ebcfabac3bf", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "ea620497-1272-41ba-9e34-1555992cfdab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082240Z:5ae314ef-374c-40b2-8c24-5ebcfabac3bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8aafc1c7624b549e406340e501abbfa4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce978b24-5c37-4636-a211-87506a83b3f1", + "x-ms-client-request-id": "8aafc1c7624b549e406340e501abbfa4", + "x-ms-correlation-request-id": "0211dc68-63bf-4115-a8fe-40cd86b36211", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "b1b21dc2-056a-4259-a618-667a0e3e5c09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082242Z:0211dc68-63bf-4115-a8fe-40cd86b36211" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6184c59d8cf588479e49a3c20c626e27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef60c28d-b02f-4b1a-9aa0-dbe6bb521ffb", + "x-ms-client-request-id": "6184c59d8cf588479e49a3c20c626e27", + "x-ms-correlation-request-id": "e7a47c64-1613-4a33-91c4-b336d36d856b", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "3a347f86-a553-4a98-8703-f02345b6691e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082243Z:e7a47c64-1613-4a33-91c4-b336d36d856b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89200c425a18e015a1bc841aa714a3d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d66d80a4-229b-4040-b5f6-12d633f60455", + "x-ms-client-request-id": "89200c425a18e015a1bc841aa714a3d7", + "x-ms-correlation-request-id": "9129ccc2-ce92-4497-b27d-eac77a9393c2", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "2319dbb9-71a2-4fd4-a8ce-5a8edb8be165", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082244Z:9129ccc2-ce92-4497-b27d-eac77a9393c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae2c0389e6dc3a4b7926eb02bedc47de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6696faaf-b578-49cf-843d-afc1c90ab527", + "x-ms-client-request-id": "ae2c0389e6dc3a4b7926eb02bedc47de", + "x-ms-correlation-request-id": "1c33b5ac-1282-4a6e-b9fc-66dde4921b39", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "41d2ffcd-fb8f-4159-a3e3-ea0deb4bd28f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082246Z:1c33b5ac-1282-4a6e-b9fc-66dde4921b39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4a318f5368a428cb0a4c039072de18a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cc2e17b-35c5-4801-838c-1f832a2cc18d", + "x-ms-client-request-id": "f4a318f5368a428cb0a4c039072de18a", + "x-ms-correlation-request-id": "8d6f9eb9-7ae8-46f8-bfc4-c05c26360ef7", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "6e7b3261-a414-4778-8ef8-e09476ce7193", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082247Z:8d6f9eb9-7ae8-46f8-bfc4-c05c26360ef7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0938cca5bf355b4ac1e510f16f1321c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddd94d9f-647b-4809-af26-4b01b7ef610f", + "x-ms-client-request-id": "0938cca5bf355b4ac1e510f16f1321c5", + "x-ms-correlation-request-id": "2bd50997-0d90-46bf-b1e4-da5211c0207c", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "6ad0f2a8-cf39-423c-89f4-c1cd24cd5a81", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082248Z:2bd50997-0d90-46bf-b1e4-da5211c0207c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e25a675ae70534c77e9fe372612334c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "737c1f9a-0a58-4869-898c-93ed6e18dbc0", + "x-ms-client-request-id": "8e25a675ae70534c77e9fe372612334c", + "x-ms-correlation-request-id": "a8651e0e-4c0c-4e99-8d6c-b2a7336c9b95", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "673ca981-f1aa-4e56-9340-46b925f00b7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082250Z:a8651e0e-4c0c-4e99-8d6c-b2a7336c9b95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f25c61443ea336a8cd4833a5259ad39c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9618ca96-37c7-4a0c-a811-9c7b236faaad", + "x-ms-client-request-id": "f25c61443ea336a8cd4833a5259ad39c", + "x-ms-correlation-request-id": "35d47fc4-e0d0-412a-9413-49cefbb7a0d7", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "6bbd7114-5a1a-4dd3-9495-4544ac18bf31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082251Z:35d47fc4-e0d0-412a-9413-49cefbb7a0d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61c4fb835208f7197fe5924cc01335af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "adca5d65-7dcd-46e8-a15c-5080eccbdae4", + "x-ms-client-request-id": "61c4fb835208f7197fe5924cc01335af", + "x-ms-correlation-request-id": "1a1b4d8f-93d3-44c1-9bcf-b0f8c6f413b9", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "0e049b15-c8c3-4e71-a0a2-ca3a57563edf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082252Z:1a1b4d8f-93d3-44c1-9bcf-b0f8c6f413b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0eacc3b22eb63721fdeec0287ba72ddc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23546469-4df8-4ae1-808b-3d710e598320", + "x-ms-client-request-id": "0eacc3b22eb63721fdeec0287ba72ddc", + "x-ms-correlation-request-id": "b07e7679-b489-4564-bff4-bf669aff50af", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "61d7efa9-763b-46cc-b5d1-3ad680fd2c5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082253Z:b07e7679-b489-4564-bff4-bf669aff50af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ab36115d14ef244486573bdab5c75ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bacd4435-1208-4341-a7c2-e34979bdf663", + "x-ms-client-request-id": "2ab36115d14ef244486573bdab5c75ba", + "x-ms-correlation-request-id": "6e3eebeb-d965-4a7b-bf54-317c1b09550b", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "104694c9-e834-49c3-90f7-cc090621f110", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082255Z:6e3eebeb-d965-4a7b-bf54-317c1b09550b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62f38412c5ed55e6d98d641991f07bd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "adc51a01-bc9d-487a-b181-3cedb2a99a6b", + "x-ms-client-request-id": "62f38412c5ed55e6d98d641991f07bd8", + "x-ms-correlation-request-id": "b8411af9-7cae-4c8e-b3c0-10f9122a903e", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "4e17203b-e992-4a30-8de0-8c7b2ea10044", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082256Z:b8411af9-7cae-4c8e-b3c0-10f9122a903e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e36b5b70a5fe1617ebac651ba648ba0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2453ab0-ba45-4b1f-afa1-4fdad71c18b1", + "x-ms-client-request-id": "5e36b5b70a5fe1617ebac651ba648ba0", + "x-ms-correlation-request-id": "a5b82e63-f729-455a-b79d-48ea7946023d", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "e4ec11dd-61d5-450f-b6df-6c5940f7334a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082257Z:a5b82e63-f729-455a-b79d-48ea7946023d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7150679cab450ef7b5e50c16c2b6057", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:22:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "defd417b-3e61-4f20-a950-f3bc689749b0", + "x-ms-client-request-id": "f7150679cab450ef7b5e50c16c2b6057", + "x-ms-correlation-request-id": "776564c1-661f-442f-8f24-1bff7d20bb63", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "93ba9b66-af74-4a59-9f90-37a12754eabd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082259Z:776564c1-661f-442f-8f24-1bff7d20bb63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6059be91625085a2211e432ff959a75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "700c05ce-a1df-43cf-8150-a2ba6f70a270", + "x-ms-client-request-id": "f6059be91625085a2211e432ff959a75", + "x-ms-correlation-request-id": "d33ca70c-f6c5-47af-8d3f-1efff1368931", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "e6ab1ff8-2b52-4e14-a3cf-3ef6cfc5e2dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082300Z:d33ca70c-f6c5-47af-8d3f-1efff1368931" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ba0c30184daed23c5e6e201b9a07453", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9c44c10-507c-4c01-8bb0-ef6e3412f40c", + "x-ms-client-request-id": "8ba0c30184daed23c5e6e201b9a07453", + "x-ms-correlation-request-id": "21260d38-655f-4cf4-a1ac-f6e2340c3a89", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "29473158-44ed-4989-a7c0-3a88659caac1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082301Z:21260d38-655f-4cf4-a1ac-f6e2340c3a89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f676e59955e627bac0dd4a2e6bc50e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98fb30ca-0b5d-4d68-8be2-1942ba97037d", + "x-ms-client-request-id": "1f676e59955e627bac0dd4a2e6bc50e6", + "x-ms-correlation-request-id": "28413394-c5d3-4a0b-9356-971dea310ddc", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "e346ec46-743c-4138-ad0e-22bbb16ad2ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082302Z:28413394-c5d3-4a0b-9356-971dea310ddc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8bfdbc3d58b657c7718303f33584e82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d82e675-44cb-4a41-a9bc-517e83aaba73", + "x-ms-client-request-id": "a8bfdbc3d58b657c7718303f33584e82", + "x-ms-correlation-request-id": "f45b91d8-55ac-4c51-92e9-65485636ea1d", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "9c57f1e4-672a-4225-8271-cb4c2c9704a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082304Z:f45b91d8-55ac-4c51-92e9-65485636ea1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90d8919c7b2d6c17483ddfcdb0810608", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cafe75e9-95b4-47e4-8904-e8e2ffb899a7", + "x-ms-client-request-id": "90d8919c7b2d6c17483ddfcdb0810608", + "x-ms-correlation-request-id": "2538fed2-b284-4625-b257-e3de695c2e55", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "2d86b06d-f4b5-45b0-ad5f-682378d4422f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082305Z:2538fed2-b284-4625-b257-e3de695c2e55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de3efc95cce084c7f102a745643b2e53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60a72d70-6a78-464d-9c49-70550dc394ca", + "x-ms-client-request-id": "de3efc95cce084c7f102a745643b2e53", + "x-ms-correlation-request-id": "e24edf42-7e42-4b42-a2cb-f46351d547b8", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "61e59248-6c40-4961-a6b5-f0a3d81f01d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082306Z:e24edf42-7e42-4b42-a2cb-f46351d547b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "550551bfbfe448b8c452604df6afb4f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa712343-3b2d-4a00-9280-4ed61288331e", + "x-ms-client-request-id": "550551bfbfe448b8c452604df6afb4f6", + "x-ms-correlation-request-id": "3e694d82-a0cf-43b2-923a-94f1e35d9593", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "988c6d84-2c64-470f-91cc-884e3db135b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082308Z:3e694d82-a0cf-43b2-923a-94f1e35d9593" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37a927126f1ad0a2c9549f2bd3d1080c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5182bbb1-d8c4-4ebd-95f3-b3b4bd3e31d8", + "x-ms-client-request-id": "37a927126f1ad0a2c9549f2bd3d1080c", + "x-ms-correlation-request-id": "5b6593de-85f6-4bdc-8990-ec75f2116e93", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "e12ed00a-1bdd-46d5-93e8-ed72f0873ccb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082309Z:5b6593de-85f6-4bdc-8990-ec75f2116e93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f0d8b0fb07cd52443f51a8e6b798e42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4739298c-9bf0-427f-b730-b153ad6ab9dd", + "x-ms-client-request-id": "5f0d8b0fb07cd52443f51a8e6b798e42", + "x-ms-correlation-request-id": "04a6c2e5-46bf-4911-b7cd-7e7114649a59", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "bc4f79b9-1dab-447e-90ad-93bfe5102741", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082310Z:04a6c2e5-46bf-4911-b7cd-7e7114649a59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d32b14df6924f39af348c90208c74f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96bdcae2-8b34-4d3c-ba88-7fa692d60dc4", + "x-ms-client-request-id": "3d32b14df6924f39af348c90208c74f2", + "x-ms-correlation-request-id": "c7556785-4cd7-4437-8de0-83eb64232328", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "878cd11a-aed9-4ac9-8c4d-cb9899dd980f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082312Z:c7556785-4cd7-4437-8de0-83eb64232328" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a3e544a55a1627902d4f3245513654f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3bde149-2e90-44eb-b49b-22fc85f78e4b", + "x-ms-client-request-id": "6a3e544a55a1627902d4f3245513654f", + "x-ms-correlation-request-id": "37a811d1-b52b-4cb1-b46c-5425884c82a1", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "92ef0ece-c984-4971-9093-89cb0ceb3f8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082313Z:37a811d1-b52b-4cb1-b46c-5425884c82a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21de5cc5ca9f187a52beaf472494b4b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40c8fa1c-bd06-4739-8aff-3c6a34a5d11b", + "x-ms-client-request-id": "21de5cc5ca9f187a52beaf472494b4b6", + "x-ms-correlation-request-id": "e4eb26a6-de3f-4329-9c2a-441518c574fa", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "8aaff188-ca91-4c17-971f-5b475a992467", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082314Z:e4eb26a6-de3f-4329-9c2a-441518c574fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17432881243bf7a037d03abd0214fa9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23a3c155-eef9-4d53-8d53-3348533af567", + "x-ms-client-request-id": "17432881243bf7a037d03abd0214fa9b", + "x-ms-correlation-request-id": "475470a2-75ea-44ff-82bc-f92020f71493", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "a70cda44-106b-4a92-a2f2-31d4f9fb564d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082315Z:475470a2-75ea-44ff-82bc-f92020f71493" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4ca3ccf53ae7f52d92517e3a5323d6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c3e72a47-57de-42c9-8e41-f3029e9d2690", + "x-ms-client-request-id": "c4ca3ccf53ae7f52d92517e3a5323d6e", + "x-ms-correlation-request-id": "0f985d09-0dc0-456d-8820-7cb84acaa795", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "a3f072b7-8c64-4ba9-8be9-a1c627167f48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082317Z:0f985d09-0dc0-456d-8820-7cb84acaa795" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2da33d1f4dd0a114bbe6e9ce90bc153d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4792e2e5-79c2-401a-8c8d-1b37f7d2fe2f", + "x-ms-client-request-id": "2da33d1f4dd0a114bbe6e9ce90bc153d", + "x-ms-correlation-request-id": "6e7d16e1-137e-4676-8dcd-23e6009a2692", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "eb65e2c7-9c7b-4010-ac3a-1c26676462dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082318Z:6e7d16e1-137e-4676-8dcd-23e6009a2692" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e87813c3f0ca2d07d5c43d150cbd5105", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "216585b6-11ea-434c-b827-87c99c315c9c", + "x-ms-client-request-id": "e87813c3f0ca2d07d5c43d150cbd5105", + "x-ms-correlation-request-id": "62d43564-d688-4f16-8161-ba7f33efea85", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "f47e831f-bfab-4c9d-98ed-f4c309a95be7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082319Z:62d43564-d688-4f16-8161-ba7f33efea85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c59ecc93cd7181cb272908c86984ef1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02e08790-1b77-40eb-bd03-69f4dc0454da", + "x-ms-client-request-id": "c59ecc93cd7181cb272908c86984ef1d", + "x-ms-correlation-request-id": "d63301b4-d84e-47c9-b5b0-019288b28d22", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "07011142-f7e7-4221-a357-004d4b91994d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082321Z:d63301b4-d84e-47c9-b5b0-019288b28d22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "911fd91055b92fa43575570b10fe94fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ded6ae9-b0cd-449d-a420-ea3ad814b630", + "x-ms-client-request-id": "911fd91055b92fa43575570b10fe94fe", + "x-ms-correlation-request-id": "a23ebafd-5f31-44e9-8e65-22128e6ef7b0", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "e791f425-34e3-4d23-a9ad-97fa2fc39034", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082322Z:a23ebafd-5f31-44e9-8e65-22128e6ef7b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c43be4944f1df6cc48f7c0a0e83fc450", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ce6ed54-ef9e-477a-9ee3-2bae9e68f364", + "x-ms-client-request-id": "c43be4944f1df6cc48f7c0a0e83fc450", + "x-ms-correlation-request-id": "bd16f5ec-56c7-499f-b3d1-63580e1d6535", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "4d3a094c-dc00-49c0-b6cd-c8406410f3f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082323Z:bd16f5ec-56c7-499f-b3d1-63580e1d6535" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "330520d5bf9d3d4b286f90fc75bf7128", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d0ce232f-4419-4d29-b0f6-9eac1316b516", + "x-ms-client-request-id": "330520d5bf9d3d4b286f90fc75bf7128", + "x-ms-correlation-request-id": "f345dbca-5655-4f1c-9fde-b98886ee084d", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "8bb3e12f-5e4d-4bae-8400-6ad5c5bbba04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082324Z:f345dbca-5655-4f1c-9fde-b98886ee084d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "843409952b49c0ff0d2949c2940347f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c3794d1f-6b86-4c98-80e5-5166f78590b1", + "x-ms-client-request-id": "843409952b49c0ff0d2949c2940347f6", + "x-ms-correlation-request-id": "22fcdada-8cc6-452e-b6f5-3cc3c2849844", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "044d1e65-26ba-43f9-bf0e-2c30c7c7bad4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082326Z:22fcdada-8cc6-452e-b6f5-3cc3c2849844" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f03606b060f9d46198fd9baebfd08188", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36700679-9cb3-48dc-aab3-8050cef3eeb4", + "x-ms-client-request-id": "f03606b060f9d46198fd9baebfd08188", + "x-ms-correlation-request-id": "41752b91-b01c-4ce7-bced-b47f148ea5b1", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "44b2fb5e-1737-4638-8a92-fd119bb5eea9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082327Z:41752b91-b01c-4ce7-bced-b47f148ea5b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de0b97853f0aa907204426737688a924", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b25471a5-c0a2-46a3-bd7a-4909bd163e46", + "x-ms-client-request-id": "de0b97853f0aa907204426737688a924", + "x-ms-correlation-request-id": "59b33f8a-2ccd-4e7c-bccc-6c7130b1c78f", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "cd17f97c-1a53-4377-ab7a-e4db2bf442ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082328Z:59b33f8a-2ccd-4e7c-bccc-6c7130b1c78f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e4b9a288188342fa760ec4b8f51013c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6292706-ee2f-4b86-a20d-10c18651c30b", + "x-ms-client-request-id": "6e4b9a288188342fa760ec4b8f51013c", + "x-ms-correlation-request-id": "7a15a5a5-fb21-4fce-ba0a-54e20f6ce569", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "829952de-27c9-4a93-b02c-67cd1c183edd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082330Z:7a15a5a5-fb21-4fce-ba0a-54e20f6ce569" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd3dc0a768f771ebfe8dcfb43aed5d0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0344a12-b995-4328-8d62-68c36518ccbb", + "x-ms-client-request-id": "fd3dc0a768f771ebfe8dcfb43aed5d0f", + "x-ms-correlation-request-id": "1718fc3a-f695-44df-8b82-1fe3c9b86906", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "e995327f-13b1-455b-85a6-433a36809a3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082331Z:1718fc3a-f695-44df-8b82-1fe3c9b86906" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24857654128504ff68d736aa53bc1ace", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a747883d-c059-4d82-bdd4-a395208088f6", + "x-ms-client-request-id": "24857654128504ff68d736aa53bc1ace", + "x-ms-correlation-request-id": "f79c1a59-f784-43e0-8ff0-577b82f36ea3", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "2722b160-04bf-45b3-acf1-b5be291300e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082332Z:f79c1a59-f784-43e0-8ff0-577b82f36ea3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5cce943ac4bbf2dafd96ffbb17af9ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3022f21-142a-47b1-961f-5537c0601711", + "x-ms-client-request-id": "b5cce943ac4bbf2dafd96ffbb17af9ba", + "x-ms-correlation-request-id": "d607c505-14da-4bd4-aa36-0db01103d4d9", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "fec4caf5-ac51-4e38-8101-48d75a9d964e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082334Z:d607c505-14da-4bd4-aa36-0db01103d4d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18f7dc02dccb94b7c038952032401e42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36a33e41-f719-4152-8c30-d1d257ef6d7d", + "x-ms-client-request-id": "18f7dc02dccb94b7c038952032401e42", + "x-ms-correlation-request-id": "dc758e21-b83f-4ed5-805e-223e7793ef63", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "82d5ca64-03b8-47be-bd70-d5142a95e822", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082335Z:dc758e21-b83f-4ed5-805e-223e7793ef63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51710172a821a7c349c675aba30453ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb614447-1b69-47d6-937f-9122c59cf4d4", + "x-ms-client-request-id": "51710172a821a7c349c675aba30453ed", + "x-ms-correlation-request-id": "8ef2b360-ea9b-4c76-b85d-df169066c961", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "ed1b4688-b510-4618-ba88-04d71c14e53a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082336Z:8ef2b360-ea9b-4c76-b85d-df169066c961" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76a87cdd01c467033237f413170c8d6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "230c1a81-1f51-4a89-a0e7-717409592d96", + "x-ms-client-request-id": "76a87cdd01c467033237f413170c8d6f", + "x-ms-correlation-request-id": "e6fa9e9f-425f-46b8-8e6f-2829121392e0", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "00711c3f-60a8-4abd-b6f9-184e21c2fdfe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082338Z:e6fa9e9f-425f-46b8-8e6f-2829121392e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af892cbba8095998194fcf05670bf1bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0a814cc-eadb-46fc-9198-ef8c35fc40d0", + "x-ms-client-request-id": "af892cbba8095998194fcf05670bf1bc", + "x-ms-correlation-request-id": "7ad6428f-f37b-4132-8a95-b86906cac1dc", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "e627397a-99f9-4846-899d-d1efdb14ed4a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082339Z:7ad6428f-f37b-4132-8a95-b86906cac1dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b543a8e5a797717efe091feab3b0903d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "147e3995-aa74-46fa-abd7-ca976601cca4", + "x-ms-client-request-id": "b543a8e5a797717efe091feab3b0903d", + "x-ms-correlation-request-id": "d085bdd5-b3bc-4e1b-84b1-e1e0437b2da7", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "24d417cf-f47b-4252-b099-0cf1bb1fa09c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082340Z:d085bdd5-b3bc-4e1b-84b1-e1e0437b2da7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76ef0638a37b35e3e34e5d7432fd0026", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0917d2d5-cb8b-4152-89cf-3ea83a626c6c", + "x-ms-client-request-id": "76ef0638a37b35e3e34e5d7432fd0026", + "x-ms-correlation-request-id": "9a9b7a9f-d235-4df2-947d-d110be711f57", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "949ba1e2-4b56-4d68-83f3-c6c3162855d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082341Z:9a9b7a9f-d235-4df2-947d-d110be711f57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e2e3845d8c913d8ae17b1ff89aea668", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5713d5c1-878d-49e9-9ace-8df8b2a4035c", + "x-ms-client-request-id": "6e2e3845d8c913d8ae17b1ff89aea668", + "x-ms-correlation-request-id": "287d33ae-a2d8-4444-a59f-7edfddd628f3", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "4f0c5a62-bcb1-4909-8597-d67d38015e0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082343Z:287d33ae-a2d8-4444-a59f-7edfddd628f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61cd92be7a1c4141c40dd1484a093e00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73cbd0cc-7adf-4fa9-a63d-aca396dab2e7", + "x-ms-client-request-id": "61cd92be7a1c4141c40dd1484a093e00", + "x-ms-correlation-request-id": "42a3d161-d080-47df-b330-c8bcc2a1c66b", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "41d67068-e42a-44e5-9965-97e9c0d85b1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082344Z:42a3d161-d080-47df-b330-c8bcc2a1c66b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ba4f909218260732ddcc863f1e3ab35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d1e6b7c-7e28-4d3d-9732-82ca5e22b3b1", + "x-ms-client-request-id": "7ba4f909218260732ddcc863f1e3ab35", + "x-ms-correlation-request-id": "da6c01a3-dfbc-447f-8d7b-722f0445a635", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "eb681029-b81d-4225-9201-1a47732291ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082345Z:da6c01a3-dfbc-447f-8d7b-722f0445a635" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0b6f4a89e30cb0af6ecaabb068fc9a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "363df36d-c504-46c2-a9b1-808828349c75", + "x-ms-client-request-id": "a0b6f4a89e30cb0af6ecaabb068fc9a5", + "x-ms-correlation-request-id": "3f366cc9-b5a3-4c8a-b91a-d8df7b039538", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "4a6ae7af-7b39-40c3-af94-15dd1a5918b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082347Z:3f366cc9-b5a3-4c8a-b91a-d8df7b039538" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90f6b0d92b099ce61e6d333fb2de4fe1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1c461ed-c912-4e63-ae97-c7355003e517", + "x-ms-client-request-id": "90f6b0d92b099ce61e6d333fb2de4fe1", + "x-ms-correlation-request-id": "adb9d5c0-7bdf-4ba2-8f2a-37d0b2c06d4d", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "ef69af01-8c69-4458-b7a6-e609bd52932b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082348Z:adb9d5c0-7bdf-4ba2-8f2a-37d0b2c06d4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56a09c629e536ad0efd9849577b85a9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb991612-ec37-4c43-95cf-2d9f951f715c", + "x-ms-client-request-id": "56a09c629e536ad0efd9849577b85a9e", + "x-ms-correlation-request-id": "06437691-429f-4359-9af6-dc29d8b636b7", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "1bbd257d-14d6-4b24-a9e3-2871a4df7272", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082349Z:06437691-429f-4359-9af6-dc29d8b636b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "408922131bed7d2b0e1981c36bca1818", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a094458-20b5-4b3a-a36f-3ec6f2fb99f2", + "x-ms-client-request-id": "408922131bed7d2b0e1981c36bca1818", + "x-ms-correlation-request-id": "836c20c2-5d01-416d-8f57-57733f3916ff", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "5868369a-7071-4620-b6a7-caca2a4b1a40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082351Z:836c20c2-5d01-416d-8f57-57733f3916ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6959c89c73ef3a52e08ba130a6502565", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b3045f5d-c661-4f34-b745-55212d061930", + "x-ms-client-request-id": "6959c89c73ef3a52e08ba130a6502565", + "x-ms-correlation-request-id": "9714a984-c638-4b3d-8780-2fde0f74367e", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "be382ad2-40d5-4dc1-8e16-e7066148a427", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082352Z:9714a984-c638-4b3d-8780-2fde0f74367e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "902c94120f5446f4702247391c0dfe24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "560d6fc9-82d1-4838-9d9b-ebfa5372ba17", + "x-ms-client-request-id": "902c94120f5446f4702247391c0dfe24", + "x-ms-correlation-request-id": "a7586692-b75c-4691-955f-e41577d04805", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "bf335aa3-0617-44ed-b042-8005e66b58e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082353Z:a7586692-b75c-4691-955f-e41577d04805" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aef96cc0f05f9faecf4f60617afbd6bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98b5c569-5b7c-415f-bb13-18f12316fd99", + "x-ms-client-request-id": "aef96cc0f05f9faecf4f60617afbd6bd", + "x-ms-correlation-request-id": "314d11a0-b6fe-47ff-a4aa-fcccfefa8b86", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "bd423591-650f-4566-a851-9ff08974c1b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082354Z:314d11a0-b6fe-47ff-a4aa-fcccfefa8b86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7b01cf3889d8dc3d413f9cc2b181dd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66e27d8c-5b9f-4055-81a2-2cd597a804f7", + "x-ms-client-request-id": "d7b01cf3889d8dc3d413f9cc2b181dd3", + "x-ms-correlation-request-id": "32bafd06-3015-4694-a939-d54c1a331cdb", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "c2077483-52b9-42b2-8811-3f018a558986", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082356Z:32bafd06-3015-4694-a939-d54c1a331cdb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a707c8c76572206e58cc005ae92cb75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "41bd5ab1-1e26-451f-ab14-9880d1549bfe", + "x-ms-client-request-id": "3a707c8c76572206e58cc005ae92cb75", + "x-ms-correlation-request-id": "d5615b33-2896-43b3-ac4d-1f1a01dad5e0", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "6e48b8a3-423c-4f16-9ad8-a07dfb8b5330", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082357Z:d5615b33-2896-43b3-ac4d-1f1a01dad5e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00468a4c275c3787a86bda4cf6e274b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f25a1888-e4e3-4444-946f-acd727cf0071", + "x-ms-client-request-id": "00468a4c275c3787a86bda4cf6e274b7", + "x-ms-correlation-request-id": "7335f6eb-1e7a-4ca5-a877-ec4d6dcc3899", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "ebad6762-26d3-495b-baea-c1ce31998c4a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082358Z:7335f6eb-1e7a-4ca5-a877-ec4d6dcc3899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fed58c319c8a7d66158df110c8bede41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:23:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e1d28e16-c147-414d-aeca-ab7b29861313", + "x-ms-client-request-id": "fed58c319c8a7d66158df110c8bede41", + "x-ms-correlation-request-id": "865bd0e5-620b-424e-8d5a-a4118e27ca24", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "51ac62fb-535c-4a25-b5db-3d1a29e2fb04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082400Z:865bd0e5-620b-424e-8d5a-a4118e27ca24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a08083471dd26476f43891eb9bba2b03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14d88d2b-c0ae-425d-8438-d79472813162", + "x-ms-client-request-id": "a08083471dd26476f43891eb9bba2b03", + "x-ms-correlation-request-id": "2da0aa23-4881-4fcb-9606-1153d524330c", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "9a678d16-9f3f-45af-8b77-c26214b2e4e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082401Z:2da0aa23-4881-4fcb-9606-1153d524330c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21d30818ccbdafea23c8ebcf36766fe9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b9e1d9a-4ceb-4bc4-b810-ed06fbf34385", + "x-ms-client-request-id": "21d30818ccbdafea23c8ebcf36766fe9", + "x-ms-correlation-request-id": "1ba1e170-a98e-4462-80ce-e962d0d0c839", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "cd42d3d1-447f-4b7c-917b-3a56b647aa59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082402Z:1ba1e170-a98e-4462-80ce-e962d0d0c839" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7204988dd36114e5167109520b7be15a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed9b30a2-6cc4-442c-b78f-a62651ed7cbb", + "x-ms-client-request-id": "7204988dd36114e5167109520b7be15a", + "x-ms-correlation-request-id": "95bf9f22-0605-4f3d-af60-3278dc60aacf", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "9450e382-e52e-4851-8b71-391803a58be8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082403Z:95bf9f22-0605-4f3d-af60-3278dc60aacf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bff8ed61bdeb7a8499d07d0932a72e7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "204cfadf-1125-486b-bfe9-81004169efb7", + "x-ms-client-request-id": "bff8ed61bdeb7a8499d07d0932a72e7d", + "x-ms-correlation-request-id": "b4e66635-d220-45be-995a-5effd555f7da", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "576d2d87-4dfc-4c14-8981-fe1abe9cea5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082405Z:b4e66635-d220-45be-995a-5effd555f7da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "025ea7c9b8b644a123bf0b4cc398a4a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f29e6693-42b1-4892-9534-f28b727d237e", + "x-ms-client-request-id": "025ea7c9b8b644a123bf0b4cc398a4a8", + "x-ms-correlation-request-id": "c47f0eeb-54b6-4bdf-a2f4-515e4fe62134", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "c5b498c8-489a-4d22-8bf2-743fed23e426", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082406Z:c47f0eeb-54b6-4bdf-a2f4-515e4fe62134" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "486d90e6af7ed0fe1389d99156dbe26f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12e217e3-a453-4412-8e6b-3702349b0f3d", + "x-ms-client-request-id": "486d90e6af7ed0fe1389d99156dbe26f", + "x-ms-correlation-request-id": "2e5484f7-2a59-428d-8a2e-76982415d907", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "2e8baa6b-715a-452b-a8d6-5db7cca3d056", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082407Z:2e5484f7-2a59-428d-8a2e-76982415d907" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63888b43df1ca9a44cb49c2bb138b701", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b18a633-49c7-4750-a211-49ccc641ef60", + "x-ms-client-request-id": "63888b43df1ca9a44cb49c2bb138b701", + "x-ms-correlation-request-id": "8d7e7f63-f93a-4cb3-b0f7-5c6d8e489b5f", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "90de3023-35bc-44e6-9d16-a711f78b5815", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082409Z:8d7e7f63-f93a-4cb3-b0f7-5c6d8e489b5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a123d42be5391affa88eef2cdf10ed48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4f146b8-3454-4880-b234-cd3e00c4d9d4", + "x-ms-client-request-id": "a123d42be5391affa88eef2cdf10ed48", + "x-ms-correlation-request-id": "0f5d7d64-e956-43d9-b8b9-ed5f11d0178f", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "6032acd9-ed70-4951-bd29-a7da3e226278", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082410Z:0f5d7d64-e956-43d9-b8b9-ed5f11d0178f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37099bdd410f078bebc4fcca12d21edb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0515bd56-7059-464b-bb4e-ae670ee655d4", + "x-ms-client-request-id": "37099bdd410f078bebc4fcca12d21edb", + "x-ms-correlation-request-id": "c0c37690-7ba2-41e2-9980-922e0020296c", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "3ef9e355-98ad-4689-9167-85c90859d7a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082411Z:c0c37690-7ba2-41e2-9980-922e0020296c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8265d7d240b75d358c6eba8eef78c93c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5f0e054-9572-43a6-ac96-59bf727d719b", + "x-ms-client-request-id": "8265d7d240b75d358c6eba8eef78c93c", + "x-ms-correlation-request-id": "deef113c-3459-4c77-bbff-fa9ba2fa4c6c", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "c3d5ca75-2a13-41e6-a30d-b12e26dd3117", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082413Z:deef113c-3459-4c77-bbff-fa9ba2fa4c6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "154e53c67f2feaf2481bb575e83507d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ae9998f-20aa-4c96-81ba-ea6fb78566b1", + "x-ms-client-request-id": "154e53c67f2feaf2481bb575e83507d6", + "x-ms-correlation-request-id": "23248534-a7d9-46a0-bae2-631f666b176a", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "46280d87-1bc3-41c4-b944-49a6a7152815", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082414Z:23248534-a7d9-46a0-bae2-631f666b176a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0759136f6baa9c9166ababa086fc1773", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b01528fa-6a00-43c7-bbc8-4f1937c350b8", + "x-ms-client-request-id": "0759136f6baa9c9166ababa086fc1773", + "x-ms-correlation-request-id": "490a6ac6-d1ca-4928-8a6a-43a75d7ed76e", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "2bcc9b57-265b-4afa-acb6-f333cb99ccb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082415Z:490a6ac6-d1ca-4928-8a6a-43a75d7ed76e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf03c0fa088352abe57b399b8ac07457", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a32d274-7970-4899-84af-0d595b1a2ef1", + "x-ms-client-request-id": "bf03c0fa088352abe57b399b8ac07457", + "x-ms-correlation-request-id": "86235505-8c29-4187-bf39-92dc4e12fdb9", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "1f4be8c0-d615-4c00-b5f4-06f1fe5cc31e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082416Z:86235505-8c29-4187-bf39-92dc4e12fdb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc1fe466c21f5b91c2b2af84d451634b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9703808d-3b41-4724-8a0a-36f3f5ea953a", + "x-ms-client-request-id": "dc1fe466c21f5b91c2b2af84d451634b", + "x-ms-correlation-request-id": "75fd9fac-56b4-49be-9e09-966f000cd031", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "720baf46-847d-4db5-9a31-0d9c132b25e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082418Z:75fd9fac-56b4-49be-9e09-966f000cd031" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "287a4204483166526806212f31f511a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "330d24be-1530-4897-8d5f-5e68460d94e2", + "x-ms-client-request-id": "287a4204483166526806212f31f511a6", + "x-ms-correlation-request-id": "ea052143-5d80-4378-a0b3-3b1c721213d9", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "3b9b00f3-e274-4915-9303-4b9ab1b117ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082419Z:ea052143-5d80-4378-a0b3-3b1c721213d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a23954363bdd38532ea8fcd159267e94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1019a9a-336b-4782-b4de-16499209d579", + "x-ms-client-request-id": "a23954363bdd38532ea8fcd159267e94", + "x-ms-correlation-request-id": "9118e5e8-28c5-4dc2-b3d5-6908cf8883df", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "f9000735-9ea6-4c71-9a91-ed5939dd1349", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082420Z:9118e5e8-28c5-4dc2-b3d5-6908cf8883df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4797ed174c451e2691b87318a06229cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "853c1457-b265-4d21-bfb3-13f38b4b43ba", + "x-ms-client-request-id": "4797ed174c451e2691b87318a06229cd", + "x-ms-correlation-request-id": "bc7afba5-6262-4f6b-bd00-ca6a6535656a", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "4bb6fea0-4719-4981-89da-40f62994d0a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082422Z:bc7afba5-6262-4f6b-bd00-ca6a6535656a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "804d09a0c117c86eef42fa884b800d41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dbfc4324-e13b-453b-a3d6-23062a33cf2d", + "x-ms-client-request-id": "804d09a0c117c86eef42fa884b800d41", + "x-ms-correlation-request-id": "7a606b4d-5b19-488d-a849-c78a832cb82f", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "d5fe7226-5078-44ef-a2f6-53d7f20a771d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082423Z:7a606b4d-5b19-488d-a849-c78a832cb82f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43188c88ca5eea602d1b1025c83b97cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "695d7586-0aa6-4b31-8d57-dadd53fce569", + "x-ms-client-request-id": "43188c88ca5eea602d1b1025c83b97cb", + "x-ms-correlation-request-id": "4e53cbcf-1bf5-4bfa-859a-5517059cade5", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "6df8eed0-4697-44c7-bd88-69591f066c4a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082424Z:4e53cbcf-1bf5-4bfa-859a-5517059cade5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50312f7ffdd8557d7fce5803519ed310", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dbe13aac-0fc6-4de9-9a25-712aa0bd40b1", + "x-ms-client-request-id": "50312f7ffdd8557d7fce5803519ed310", + "x-ms-correlation-request-id": "19e22fbf-9912-41c0-a25a-e9ace9d8c670", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "93ed7b32-60f3-4841-a958-771e4e0f05c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082426Z:19e22fbf-9912-41c0-a25a-e9ace9d8c670" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "149031aae54ad56ea86352fcb04800b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b3490e4-bc5c-409f-8ffd-10c0f2795476", + "x-ms-client-request-id": "149031aae54ad56ea86352fcb04800b4", + "x-ms-correlation-request-id": "8d0cf42d-af05-43ac-a6f2-3789b8a206b9", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "673ecf1f-0c5b-4340-9518-24bb82b35ff8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082427Z:8d0cf42d-af05-43ac-a6f2-3789b8a206b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b082eabbd4f8a690fc2c490715d988f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54916d63-46ea-4c51-9207-94ee8b285607", + "x-ms-client-request-id": "1b082eabbd4f8a690fc2c490715d988f", + "x-ms-correlation-request-id": "3ef3a7a6-1055-43d1-9f97-5daf6a6fc1e3", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "180a9e89-1e02-4407-b24c-f2f008eb8d6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082428Z:3ef3a7a6-1055-43d1-9f97-5daf6a6fc1e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "967a004783aa9a81c15ba775ab81a536", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1197f6fa-d2ff-4f35-9590-f03cbf77f7d9", + "x-ms-client-request-id": "967a004783aa9a81c15ba775ab81a536", + "x-ms-correlation-request-id": "fbac1925-f595-4ae0-8243-9637e8da44f2", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "c75af41b-85a8-4f19-a32e-f324cf0ca8c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082430Z:fbac1925-f595-4ae0-8243-9637e8da44f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2357a4cdb795edc1c805048721de644b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1794499f-7b2d-4228-b9b2-c88a6b76ce8d", + "x-ms-client-request-id": "2357a4cdb795edc1c805048721de644b", + "x-ms-correlation-request-id": "ece7336e-eb6a-478b-a3cc-c5f5c3a1fb07", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "612a7ad9-c15c-4c02-8bdf-656d350559e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082431Z:ece7336e-eb6a-478b-a3cc-c5f5c3a1fb07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0b4c2ca69ce2809ac6e5af416f3df8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a8c5b1a-0ebc-4ca5-906e-3f7c29b1812b", + "x-ms-client-request-id": "b0b4c2ca69ce2809ac6e5af416f3df8e", + "x-ms-correlation-request-id": "f273786c-3650-471a-a7df-1a3684c0818a", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "c3dc1cbf-7bcd-4694-b582-c1225bebda39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082432Z:f273786c-3650-471a-a7df-1a3684c0818a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdc28d1d750590fa3e8dcea47ef978e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00dee94c-4aa6-49d1-9d60-7ae006b865b3", + "x-ms-client-request-id": "cdc28d1d750590fa3e8dcea47ef978e2", + "x-ms-correlation-request-id": "a2a27557-ca40-46f7-b3d1-105e2acd1ba2", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "1fb33d2d-24fe-48ee-a4cd-3519f86cf8f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082434Z:a2a27557-ca40-46f7-b3d1-105e2acd1ba2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8aa5bf6f4cc63689b2f76275ccdd6d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1896586e-e497-4203-bd41-93f12ac5e607", + "x-ms-client-request-id": "e8aa5bf6f4cc63689b2f76275ccdd6d4", + "x-ms-correlation-request-id": "0341aa38-6d49-4575-a908-7fdc80641d21", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "11463945-0f78-4c57-b1f6-ea6b19979394", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082435Z:0341aa38-6d49-4575-a908-7fdc80641d21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "946a7626971b5546c82471409b64a9b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e6777d2-d4ef-48d0-b896-755882b1c9a2", + "x-ms-client-request-id": "946a7626971b5546c82471409b64a9b3", + "x-ms-correlation-request-id": "9c9ea163-bf86-43b5-85d7-350636784253", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "51550c50-850f-4bff-ba88-d7ff9805b330", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082436Z:9c9ea163-bf86-43b5-85d7-350636784253" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bafd78f6f74928c1245f31d5ffd33371", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84efde42-cb08-48bb-9805-f0a626d0d1b5", + "x-ms-client-request-id": "bafd78f6f74928c1245f31d5ffd33371", + "x-ms-correlation-request-id": "1d5f0412-b910-4c30-9f1b-ec0f61c05297", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "fce600b3-4318-4e98-8e04-df3482ee29fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082437Z:1d5f0412-b910-4c30-9f1b-ec0f61c05297" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "077efab6e48e5fc715551fa88227c836", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32732190-ca04-4203-b439-2ef34eab9af7", + "x-ms-client-request-id": "077efab6e48e5fc715551fa88227c836", + "x-ms-correlation-request-id": "1ea0e25c-ed7e-492f-afb7-4737239468cb", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "999b596f-fd4b-4e7e-82e7-3939ce4d7434", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082439Z:1ea0e25c-ed7e-492f-afb7-4737239468cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e430c3861bcf2f8bb5426fbb657055f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e880b46-ce05-4d38-849c-e25084dd8a8b", + "x-ms-client-request-id": "e430c3861bcf2f8bb5426fbb657055f5", + "x-ms-correlation-request-id": "0c953af8-cf2f-48c9-8ffd-c9571cffb4cc", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "1ffdc407-1815-456f-9672-1a294fc25ae4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082440Z:0c953af8-cf2f-48c9-8ffd-c9571cffb4cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a08afff0a1e61224b09da5f3d718a5fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81a3de45-0f75-4c97-a26b-ee4570f350de", + "x-ms-client-request-id": "a08afff0a1e61224b09da5f3d718a5fd", + "x-ms-correlation-request-id": "1f60743c-c452-424c-be0e-ed991eba9e17", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "96c9a8ab-1475-4a73-8d18-edf7bd105d90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082441Z:1f60743c-c452-424c-be0e-ed991eba9e17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c4ffb974ea29aa16f4e524c740bfaa4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0be89ed-f2b2-4c81-ab92-60ecd11d437e", + "x-ms-client-request-id": "3c4ffb974ea29aa16f4e524c740bfaa4", + "x-ms-correlation-request-id": "6771aabe-e20c-4d72-ad54-8effe7b73da3", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "14af7714-397f-4222-a709-81f9544bdb97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082443Z:6771aabe-e20c-4d72-ad54-8effe7b73da3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83b72aff279de44f9e1e34327697589c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ef215fd-4a8d-455f-b9fd-bf457037dd69", + "x-ms-client-request-id": "83b72aff279de44f9e1e34327697589c", + "x-ms-correlation-request-id": "adc78c24-bc4b-4310-a733-bbbd08ad91dc", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "43b0eef3-f78b-4762-b84a-1b15052c16e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082444Z:adc78c24-bc4b-4310-a733-bbbd08ad91dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a24729c1921a2525def30974fd89da5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef2c3e3b-8f79-4a2d-8bbf-e1f8d59787c5", + "x-ms-client-request-id": "6a24729c1921a2525def30974fd89da5", + "x-ms-correlation-request-id": "fcf2082b-398d-4d45-9a34-0833c6f7a8be", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "365a4b5e-5048-4c51-8df5-ae178bb20828", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082445Z:fcf2082b-398d-4d45-9a34-0833c6f7a8be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acf301a322606f5fab6a9d831a6f24d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ba84c39-288b-4325-a20d-e591f3605f52", + "x-ms-client-request-id": "acf301a322606f5fab6a9d831a6f24d7", + "x-ms-correlation-request-id": "bb918409-d3af-411f-b148-ce8514d5dc61", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "f244072d-d1c6-4450-ae40-7774da14f20c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082447Z:bb918409-d3af-411f-b148-ce8514d5dc61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02afb5f690e6e682d71525aef6b795c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b61cb3f-9d24-45c0-b109-e0ea306637e3", + "x-ms-client-request-id": "02afb5f690e6e682d71525aef6b795c6", + "x-ms-correlation-request-id": "6d602279-3652-4a33-b598-a850a3a7e20b", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "327f5183-6b49-47fa-9e3c-87c7343ce780", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082448Z:6d602279-3652-4a33-b598-a850a3a7e20b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "748e8e81aba47a3c12b5beb77ccf87ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bfdd8d3a-c9dc-4541-addc-2cb36bbd513d", + "x-ms-client-request-id": "748e8e81aba47a3c12b5beb77ccf87ee", + "x-ms-correlation-request-id": "cb6238ea-8467-468c-9d43-e3c4bec459c0", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "a03db868-11ee-4a53-bf6a-cbf5fbcc732d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082449Z:cb6238ea-8467-468c-9d43-e3c4bec459c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99a159ca9b2813bf7f0dd44afdb178f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26ce7c6c-824b-4f7d-a26f-c1dcf65cfe1a", + "x-ms-client-request-id": "99a159ca9b2813bf7f0dd44afdb178f3", + "x-ms-correlation-request-id": "75e1f6bf-9a1d-42b5-9050-f70dcb6973f0", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "e122fe63-ce61-4184-98a4-e3b371a0b3e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082450Z:75e1f6bf-9a1d-42b5-9050-f70dcb6973f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b01d6d5b0e04a337934ef30d1cb6908", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cebb582-3093-4ee4-b5a0-3a0089b677f7", + "x-ms-client-request-id": "8b01d6d5b0e04a337934ef30d1cb6908", + "x-ms-correlation-request-id": "99d4b7bd-7e41-49dc-b0d6-795a6c99774d", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "3a8bc26b-fb68-4332-8958-8a4961152bf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082452Z:99d4b7bd-7e41-49dc-b0d6-795a6c99774d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9de4368dfb16e59ecf7bf596d7f17d60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05a36247-730c-485f-8dda-78bc23c1e9a5", + "x-ms-client-request-id": "9de4368dfb16e59ecf7bf596d7f17d60", + "x-ms-correlation-request-id": "224f0d1d-a651-40d6-86c6-58d8417d971a", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "04fc4907-484f-4d37-9f0c-bf469ba5f29a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082453Z:224f0d1d-a651-40d6-86c6-58d8417d971a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6e1cb3dfbcd190d255720f3ab8e42b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be23ead6-0888-486b-9923-11b2cf2aa113", + "x-ms-client-request-id": "a6e1cb3dfbcd190d255720f3ab8e42b3", + "x-ms-correlation-request-id": "8f3f23bd-4356-4959-85eb-c1e665985c45", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "9ade5764-45d0-4112-9421-1d618691fd4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082454Z:8f3f23bd-4356-4959-85eb-c1e665985c45" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6bdcba3dacdd9dd381cbc65ba9d7387", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1bdd44c9-79e0-4b29-a609-792ec21b712d", + "x-ms-client-request-id": "c6bdcba3dacdd9dd381cbc65ba9d7387", + "x-ms-correlation-request-id": "c6e04b99-48ce-4d1b-ad01-aa2e34f585e9", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "a328858e-423c-4d2c-b84c-9c8fef1333a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082456Z:c6e04b99-48ce-4d1b-ad01-aa2e34f585e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06f28eb7c3e9923b29ca78bfdbaa3a40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7001f6b5-d361-43a0-bf96-6bd6ff194fac", + "x-ms-client-request-id": "06f28eb7c3e9923b29ca78bfdbaa3a40", + "x-ms-correlation-request-id": "55b3c50e-dfb1-4fba-ad61-7b2233cfe6ce", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "225383c8-8592-4ff2-9fb1-2e98d82c921c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082457Z:55b3c50e-dfb1-4fba-ad61-7b2233cfe6ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0bf34139b6346393ed086db13fa85f88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6e5c022-7a19-4c4e-be0f-4583847caf37", + "x-ms-client-request-id": "0bf34139b6346393ed086db13fa85f88", + "x-ms-correlation-request-id": "e7e6075b-2087-42c2-8acf-ff80c73010eb", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "20c3f0fd-8308-4f35-bb8b-3c06f42741fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082458Z:e7e6075b-2087-42c2-8acf-ff80c73010eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d3b98e43b9be0ca902a9d03611efd8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:24:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2a552dc-c712-4214-81bd-3e77d8ddf86d", + "x-ms-client-request-id": "1d3b98e43b9be0ca902a9d03611efd8d", + "x-ms-correlation-request-id": "3946533e-86ff-4d94-85e1-f7d1f09e8d36", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "bd68d1dc-40c9-4a91-b14d-a02eb3da1c84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082500Z:3946533e-86ff-4d94-85e1-f7d1f09e8d36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "782b7be167a90153fb8f18e155895280", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cea61d6b-76a5-430b-8a2a-ef01cc6e25a9", + "x-ms-client-request-id": "782b7be167a90153fb8f18e155895280", + "x-ms-correlation-request-id": "6719a845-2b64-4c12-9c84-298241615c9e", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "3ef3b383-4fba-4abb-a55d-b824e99a1aba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082501Z:6719a845-2b64-4c12-9c84-298241615c9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43dbf06b1d6ffda577127a09189001cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8491326c-c85a-4ab3-8d0c-f2e34811aab5", + "x-ms-client-request-id": "43dbf06b1d6ffda577127a09189001cf", + "x-ms-correlation-request-id": "e9744407-6e90-448e-9b4a-d7e5f6c58760", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "65890bb9-4dcd-4029-b0f5-c05622031ba8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082502Z:e9744407-6e90-448e-9b4a-d7e5f6c58760" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3cfe00ae67c7cde4439210b23e88a07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec818258-a223-43a0-97be-1fc9f70e2db9", + "x-ms-client-request-id": "c3cfe00ae67c7cde4439210b23e88a07", + "x-ms-correlation-request-id": "1c08311a-0a59-4c33-b23c-c1aea8a5ca04", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "de2abdb7-8aef-4f63-b275-8eb2aa7ed683", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082503Z:1c08311a-0a59-4c33-b23c-c1aea8a5ca04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71981cd7ba43c41ed62d0097ed4ae86b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf0b316c-bb89-4848-9e11-a0dd6866103c", + "x-ms-client-request-id": "71981cd7ba43c41ed62d0097ed4ae86b", + "x-ms-correlation-request-id": "a5b0e6f4-8d92-4cba-9449-f18fc90ab1b0", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "63db5512-5f4f-47da-b0e8-e3ad4a4c037b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082505Z:a5b0e6f4-8d92-4cba-9449-f18fc90ab1b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75d6488d8fb98404125efe35fb99d98f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02595f94-e794-42a6-bc03-55e64510132d", + "x-ms-client-request-id": "75d6488d8fb98404125efe35fb99d98f", + "x-ms-correlation-request-id": "41cd93ee-1343-4816-9bb4-30f4efea3bad", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "13aeefff-e028-4375-81ad-e998f5fb2763", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082506Z:41cd93ee-1343-4816-9bb4-30f4efea3bad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb31738890f7508cc10aed4ee5478ffa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2d3091d-c5b4-4ab3-b7d8-ec757046b27c", + "x-ms-client-request-id": "fb31738890f7508cc10aed4ee5478ffa", + "x-ms-correlation-request-id": "71879901-f7b4-446c-b169-d6f7326b0af7", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "a419c055-822a-4539-86b7-99bd1d6b8c09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082507Z:71879901-f7b4-446c-b169-d6f7326b0af7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db7db6501412484d18135ee4bbe9c93c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14caec88-0dbd-40bf-8a07-2ec5069a652f", + "x-ms-client-request-id": "db7db6501412484d18135ee4bbe9c93c", + "x-ms-correlation-request-id": "bf2b5e15-8cea-4dc1-9dc0-60e79c383c10", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "9ef84434-b20a-4afd-93ce-354778ac9d11", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082509Z:bf2b5e15-8cea-4dc1-9dc0-60e79c383c10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a0e7153ec18fd73bb86b4aea1b59fcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12ef6912-a6d8-416b-af44-5d7c002600bc", + "x-ms-client-request-id": "7a0e7153ec18fd73bb86b4aea1b59fcb", + "x-ms-correlation-request-id": "813f6048-e597-4cf5-8590-1b0f6c6b7631", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "d7600949-7367-453f-b68e-60ba8d253436", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082510Z:813f6048-e597-4cf5-8590-1b0f6c6b7631" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44e404cffe1b737c25e8e3e431a894d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cee5eeeb-52b5-47b2-b4c7-18c362ecbef4", + "x-ms-client-request-id": "44e404cffe1b737c25e8e3e431a894d7", + "x-ms-correlation-request-id": "0c36d822-8936-404e-80ca-3c03e75cfdc6", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "b6f87887-3cb5-42cb-a11b-dce47ab99f2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082511Z:0c36d822-8936-404e-80ca-3c03e75cfdc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73fab141143863e243801f8b609ea763", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cace3873-2899-4df2-84ce-0bdd51a29f23", + "x-ms-client-request-id": "73fab141143863e243801f8b609ea763", + "x-ms-correlation-request-id": "1e868e06-5174-45df-bd83-705f49a707db", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "5f2176fe-d47c-404d-b1b9-350a2a998656", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082512Z:1e868e06-5174-45df-bd83-705f49a707db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b715937484055520f59a542f098ecb13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13f6303c-25a6-458a-ac53-d9080b6dbe9e", + "x-ms-client-request-id": "b715937484055520f59a542f098ecb13", + "x-ms-correlation-request-id": "d17f4396-2794-406b-b4dd-196d59affb64", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "56a8e192-7e39-44cf-8d4a-d2a752561f92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082514Z:d17f4396-2794-406b-b4dd-196d59affb64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef6ddcf22bbaba922180019adef11386", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e1e35d18-7896-49a1-80f1-596615ca7fe9", + "x-ms-client-request-id": "ef6ddcf22bbaba922180019adef11386", + "x-ms-correlation-request-id": "529a0d90-91c0-4056-aed0-b8126dc98c81", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "47ccdc93-286c-4ab0-ae0e-b278b57110d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082515Z:529a0d90-91c0-4056-aed0-b8126dc98c81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d707f41dc92bcd290a57e9dc0b25ab4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89489318-ef35-43d0-bf9c-914dcf0efbcd", + "x-ms-client-request-id": "9d707f41dc92bcd290a57e9dc0b25ab4", + "x-ms-correlation-request-id": "698c27d5-f32e-42bd-af4d-2fa177969c78", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "b3b6b804-c0f1-4821-af2a-a5da0bcc8701", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082516Z:698c27d5-f32e-42bd-af4d-2fa177969c78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84990cb5b73148a9015a968583857604", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12c17283-38e8-4a1f-8852-39f9cc10d7e2", + "x-ms-client-request-id": "84990cb5b73148a9015a968583857604", + "x-ms-correlation-request-id": "75c9542c-e906-42ea-af50-059215820f3b", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "1ca8b036-5420-4ef3-a2af-ac65faed7d58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082518Z:75c9542c-e906-42ea-af50-059215820f3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8aedce872d1e158009b05f14adf5fa6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1df6bc73-4de3-4804-a6cf-535ac983739c", + "x-ms-client-request-id": "8aedce872d1e158009b05f14adf5fa6e", + "x-ms-correlation-request-id": "12f98ecd-8d8f-4f92-af0c-38e8a567573e", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "08346608-0075-45d4-8b07-15573ee3bfbe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082519Z:12f98ecd-8d8f-4f92-af0c-38e8a567573e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2e54c258f578955d6279c38464d380a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3325135b-00bc-4298-b822-f4dc84723f55", + "x-ms-client-request-id": "d2e54c258f578955d6279c38464d380a", + "x-ms-correlation-request-id": "f22d710e-9303-46a8-bbfd-ed7acb7f9687", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "e86e3dda-4e70-4380-9259-0d92287ccd4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082520Z:f22d710e-9303-46a8-bbfd-ed7acb7f9687" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2167a2fcfc487958b847a8057949b0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "623e17c6-fbeb-4327-91f2-20c1293eeee1", + "x-ms-client-request-id": "f2167a2fcfc487958b847a8057949b0c", + "x-ms-correlation-request-id": "bd8f5b1e-b8e5-4442-9426-96f8a8403320", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "76273c2b-fd41-4596-abef-012a3b88b0e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082522Z:bd8f5b1e-b8e5-4442-9426-96f8a8403320" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "375f2760a3a0f8ac7863b4f79048cebc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac531676-eacf-4ec5-a637-898bad62f0e7", + "x-ms-client-request-id": "375f2760a3a0f8ac7863b4f79048cebc", + "x-ms-correlation-request-id": "ec1bc640-b9e9-474c-a1e9-39eade76eec1", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "ff903082-2f8b-4e8d-9551-f5a8d3847ade", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082523Z:ec1bc640-b9e9-474c-a1e9-39eade76eec1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33e5557708df56a9b65e47d315d43241", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3196beea-4009-44b7-8db1-355ba7fc4a78", + "x-ms-client-request-id": "33e5557708df56a9b65e47d315d43241", + "x-ms-correlation-request-id": "10eb0523-d18c-41ed-8dd2-b32974afc80e", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "124daa03-b886-4987-a030-e102c0b9a1a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082524Z:10eb0523-d18c-41ed-8dd2-b32974afc80e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fd7908c01ee8b6acd1e79601b9ef643", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "921d158c-a22a-4467-874e-992c55fdfc42", + "x-ms-client-request-id": "1fd7908c01ee8b6acd1e79601b9ef643", + "x-ms-correlation-request-id": "e017e893-70a6-4212-9ee5-e179c98a2748", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "b2e2d660-9fc0-429a-8cf3-790eefa2a5b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082526Z:e017e893-70a6-4212-9ee5-e179c98a2748" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0208bdb568af582d7d0981415cd9e2a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ab64277-e6bc-4e90-8fdc-ddc954955c41", + "x-ms-client-request-id": "0208bdb568af582d7d0981415cd9e2a4", + "x-ms-correlation-request-id": "3b02174d-f649-48bb-be92-a8d74aac5260", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "df35984b-c97c-4b74-8919-0d15f5f9bf3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082527Z:3b02174d-f649-48bb-be92-a8d74aac5260" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "006b7231af7076ceea5965c08e483a17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a520fd20-fba2-4c6f-9fb9-6c2f7e5524f3", + "x-ms-client-request-id": "006b7231af7076ceea5965c08e483a17", + "x-ms-correlation-request-id": "a315f913-cecc-4dbb-ae7f-6eaf283e47cd", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "7ed5038d-d190-4785-a74d-d8b297c33cd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082528Z:a315f913-cecc-4dbb-ae7f-6eaf283e47cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "571e03672fcc2391637fa2e480282ef4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb648070-dd1d-4139-89cd-6fe53fa9b903", + "x-ms-client-request-id": "571e03672fcc2391637fa2e480282ef4", + "x-ms-correlation-request-id": "22d2aa9f-2a33-428d-9a64-f84638185628", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "ca54f8e3-de2e-4872-a4a1-a2faff9b435d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082530Z:22d2aa9f-2a33-428d-9a64-f84638185628" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a92ed53bf63305d2ef921855026cc934", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a51349e0-bf73-49d7-993f-3df5b6fabe33", + "x-ms-client-request-id": "a92ed53bf63305d2ef921855026cc934", + "x-ms-correlation-request-id": "eb8cb4f2-1ff3-4943-a1bf-70a10d5456de", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "9ee4e069-9413-4476-ab8b-c9d1ef369303", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082531Z:eb8cb4f2-1ff3-4943-a1bf-70a10d5456de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58d969cf8bba02d7e1479cf10de9f6c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d37d7cd-fefd-4eab-8e18-959509c9d7d2", + "x-ms-client-request-id": "58d969cf8bba02d7e1479cf10de9f6c2", + "x-ms-correlation-request-id": "f0117bc0-f67f-408c-96b5-f93f79f2c44c", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "c1ceee0e-1f0b-4e48-8dac-fd37a242a100", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082532Z:f0117bc0-f67f-408c-96b5-f93f79f2c44c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b985702a911971e431186739163b20f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a2ba244-91ea-44b6-8efe-6d9f7673c78d", + "x-ms-client-request-id": "b985702a911971e431186739163b20f7", + "x-ms-correlation-request-id": "47153948-ee6e-48e5-8ce0-c52fe36e2ef9", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "af239bec-bc6c-4078-85b6-d0552055e40d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082533Z:47153948-ee6e-48e5-8ce0-c52fe36e2ef9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17156db6d64eaf39fd2cc7eb59e1f805", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d7c95ee-5b00-4b40-9f38-b4efd2ab542b", + "x-ms-client-request-id": "17156db6d64eaf39fd2cc7eb59e1f805", + "x-ms-correlation-request-id": "b7c193e6-4a61-4321-abca-46ead3fc7f37", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "caf665ae-af95-48aa-ae2f-3707b21f4954", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082535Z:b7c193e6-4a61-4321-abca-46ead3fc7f37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "922a569c0fe63e1a846827a2239eeba5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aaf621eb-0d5b-43b9-8523-dd1d53bd71d7", + "x-ms-client-request-id": "922a569c0fe63e1a846827a2239eeba5", + "x-ms-correlation-request-id": "5009990c-1697-4e28-a66b-43190972522c", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "ee494453-f66f-42b6-9062-8bfb5c661327", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082536Z:5009990c-1697-4e28-a66b-43190972522c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f3ba426ded4547337d6bcedc9f8174f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac548da3-a849-4248-b599-b5585fe2aee6", + "x-ms-client-request-id": "9f3ba426ded4547337d6bcedc9f8174f", + "x-ms-correlation-request-id": "dd17088b-575b-4fd0-aff6-777ebbef00d2", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "3a3f5730-a02d-41cf-b579-56cdcb218729", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082537Z:dd17088b-575b-4fd0-aff6-777ebbef00d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c09d62208e10a61153d792e6ae978b5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40d53e18-7030-437a-9eb7-df5c4b633f21", + "x-ms-client-request-id": "c09d62208e10a61153d792e6ae978b5f", + "x-ms-correlation-request-id": "148f05f5-f39e-4020-9d22-40acf8000bb5", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "e3cd1bf8-6954-496f-9fae-9915f978c612", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082539Z:148f05f5-f39e-4020-9d22-40acf8000bb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4c5224058a6bd31e2d65a0f532c748b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f882dd89-56c6-49fb-8714-49a2bdf6f0c1", + "x-ms-client-request-id": "b4c5224058a6bd31e2d65a0f532c748b", + "x-ms-correlation-request-id": "d97ce0aa-4381-4dde-9660-1327d0a44f62", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "cbd8ff13-4c06-4f44-a53f-6d5eb1557ce0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082540Z:d97ce0aa-4381-4dde-9660-1327d0a44f62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c181d8502a00979493944cfc4c8ca69f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a813cdc-4c21-4a45-86c3-e19fff207c56", + "x-ms-client-request-id": "c181d8502a00979493944cfc4c8ca69f", + "x-ms-correlation-request-id": "6f0f31a5-5821-4ab6-88f3-92c102550946", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "f7e72e22-f8fa-4b4e-938e-31a9f7827f98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082541Z:6f0f31a5-5821-4ab6-88f3-92c102550946" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6ad5d4b6233c8a930e0de3a34025326", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ef61027-3f36-4fcc-b7eb-c3938fbfba1f", + "x-ms-client-request-id": "a6ad5d4b6233c8a930e0de3a34025326", + "x-ms-correlation-request-id": "45642d0c-1b00-4436-baf8-6ba079915bc1", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "0170ba85-edea-4e95-9b16-6d26c608de55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082543Z:45642d0c-1b00-4436-baf8-6ba079915bc1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6950662c915155e8e2e21110b347055", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed7fc3b3-7b4b-4e8c-af7d-cab7c7abc898", + "x-ms-client-request-id": "d6950662c915155e8e2e21110b347055", + "x-ms-correlation-request-id": "6ac037e2-e723-492f-bf13-c832bf906c84", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "f0760dff-4181-45bc-86cf-cd83b4a4b352", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082544Z:6ac037e2-e723-492f-bf13-c832bf906c84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5c4ba30ce7fed582fb990204c596391", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5a598c2-0a2b-4fe7-aabf-73f95ca2ca81", + "x-ms-client-request-id": "f5c4ba30ce7fed582fb990204c596391", + "x-ms-correlation-request-id": "fb859bac-b1ed-4158-bc67-aae660bc81e7", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "030881a0-73da-4cd4-9e69-0adda9044bb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082545Z:fb859bac-b1ed-4158-bc67-aae660bc81e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "459a2541cff7818afe9718054197bcfc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8f25b87-d01a-4692-9ed2-218df0cecb32", + "x-ms-client-request-id": "459a2541cff7818afe9718054197bcfc", + "x-ms-correlation-request-id": "9858a904-2fba-4617-9500-49765aad3cc0", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "7839b0da-ed2c-4371-98d6-77e7db1ca9f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082546Z:9858a904-2fba-4617-9500-49765aad3cc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "790a886f5d3d94a7aea7a75c393ec834", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a24da52-c67c-4a66-98c7-d0419f3b2666", + "x-ms-client-request-id": "790a886f5d3d94a7aea7a75c393ec834", + "x-ms-correlation-request-id": "4b7ad9fa-a361-4aaf-86dc-f249caefe728", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "e32dce24-ec78-4822-a58e-b8ed3d3233b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082548Z:4b7ad9fa-a361-4aaf-86dc-f249caefe728" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6cf8fca2b9a605e3042f7e7b653ac97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66344356-62cb-487c-b7c1-a38902501f3c", + "x-ms-client-request-id": "e6cf8fca2b9a605e3042f7e7b653ac97", + "x-ms-correlation-request-id": "62c5d68a-aa96-4091-90be-7df0e43b1d6a", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "22a17553-161a-4a6a-81d1-eb8e85d901b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082549Z:62c5d68a-aa96-4091-90be-7df0e43b1d6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4b094fdea4fe4537e06974f282d48c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e1e156e-60ec-49a8-86e0-42d71e3b0822", + "x-ms-client-request-id": "c4b094fdea4fe4537e06974f282d48c0", + "x-ms-correlation-request-id": "f1d04679-f2ac-4a7b-bdbf-5277da43db68", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "a06a01b3-6d9c-4a81-9ef5-03c572610134", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082550Z:f1d04679-f2ac-4a7b-bdbf-5277da43db68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b13ae3cfd5c7436129a948fa65c0dd5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a81b7d1c-73c3-4524-a927-79ba41f00020", + "x-ms-client-request-id": "b13ae3cfd5c7436129a948fa65c0dd5a", + "x-ms-correlation-request-id": "8d71e87e-44c6-427b-98e3-a7645396d3c6", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "64971a4a-990f-4784-a4b3-c3bbe498e481", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082552Z:8d71e87e-44c6-427b-98e3-a7645396d3c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a45f0ffb038de0e53ceb6894940f3802", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "07fbcd64-6bb9-478f-8bc1-87a67e412f16", + "x-ms-client-request-id": "a45f0ffb038de0e53ceb6894940f3802", + "x-ms-correlation-request-id": "ec71bcb9-8d75-49aa-ad38-51362458150c", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "aa5712dd-18f7-4cdb-94fe-4292054cf640", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082553Z:ec71bcb9-8d75-49aa-ad38-51362458150c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d31836fafa1927d0336d9ba5a1587ebd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8c16733-4ee7-4169-b52a-4deceea9419a", + "x-ms-client-request-id": "d31836fafa1927d0336d9ba5a1587ebd", + "x-ms-correlation-request-id": "8fa07703-175c-4d1f-99d6-16a96cf2151d", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "d3df7fba-beb8-4d53-a539-ac3c1b568963", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082554Z:8fa07703-175c-4d1f-99d6-16a96cf2151d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18533c28a4cecb33fd5975db6dcdaf19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cbb7614c-8838-4490-a057-deb56ad981ed", + "x-ms-client-request-id": "18533c28a4cecb33fd5975db6dcdaf19", + "x-ms-correlation-request-id": "1b680427-3f6d-4000-bb1d-9249f9a0866d", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "fff877e1-968e-4382-ae17-724cdef68f16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082556Z:1b680427-3f6d-4000-bb1d-9249f9a0866d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f0045710aa800413f38702068403fe3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "729f8cda-f51e-462e-ad3c-5859cfd76bcb", + "x-ms-client-request-id": "2f0045710aa800413f38702068403fe3", + "x-ms-correlation-request-id": "a4d44190-79ab-4236-b92e-20b24071c77e", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "c383ca00-7219-4f75-a06a-81258baa1801", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082557Z:a4d44190-79ab-4236-b92e-20b24071c77e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "576baa6c1fbc5634034cd6bf85f4b966", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd1a0156-9e15-48f6-9b83-fdfb23ccbc50", + "x-ms-client-request-id": "576baa6c1fbc5634034cd6bf85f4b966", + "x-ms-correlation-request-id": "322ac2b5-e2fe-4478-bf04-9c0704cfa6dd", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "b79c159b-af6e-4f15-93f5-e861c1e38697", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082558Z:322ac2b5-e2fe-4478-bf04-9c0704cfa6dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b3382bd4f581e15fb52d996331262bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:25:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e3a40d4-0d66-41bc-944f-f5e57974915d", + "x-ms-client-request-id": "5b3382bd4f581e15fb52d996331262bc", + "x-ms-correlation-request-id": "91c6141f-527e-40de-a80a-565650e0dd8f", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "34bb1bb9-55e5-4964-af4a-ec7ca6e6434c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082559Z:91c6141f-527e-40de-a80a-565650e0dd8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c36f911a5761525c11a92b5b34817b4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "906e8e8d-0853-4aed-b064-260513d21f88", + "x-ms-client-request-id": "c36f911a5761525c11a92b5b34817b4a", + "x-ms-correlation-request-id": "3f04aca2-6feb-487d-9d27-73fb5a09a678", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "53a5e4aa-268c-4ca4-a0e5-26fba0f7d1bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082601Z:3f04aca2-6feb-487d-9d27-73fb5a09a678" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6620a7ee30d1d8a944d5c6a469d23f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af25b31e-d3fb-4c5a-b5b4-290bc5c66a81", + "x-ms-client-request-id": "e6620a7ee30d1d8a944d5c6a469d23f0", + "x-ms-correlation-request-id": "badd0cc4-6e98-4594-840c-43edfada988d", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "7cf2330e-c844-4a92-9cd5-59bc9afdf952", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082602Z:badd0cc4-6e98-4594-840c-43edfada988d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3a519eaf685650425e149ae23baea79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36467ccc-aaf3-433f-af9d-12acd070a026", + "x-ms-client-request-id": "f3a519eaf685650425e149ae23baea79", + "x-ms-correlation-request-id": "04028d92-2e99-4c43-85db-cc827163da48", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "8eebffba-d4df-4e8d-b22e-989695addcdd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082603Z:04028d92-2e99-4c43-85db-cc827163da48" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28188ed67caf36ae06512f14fbf20c74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ad06aa3-0352-431c-876e-4543b9404e0c", + "x-ms-client-request-id": "28188ed67caf36ae06512f14fbf20c74", + "x-ms-correlation-request-id": "2cac3e1a-dad6-4e1c-af26-2cba4365a4ae", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "17a04583-15c0-41e3-83ae-23fddde00b79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082605Z:2cac3e1a-dad6-4e1c-af26-2cba4365a4ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a703a8688db88c506fcc02c99dcfad9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60e5cb64-5cb8-4138-930b-62b2e767f483", + "x-ms-client-request-id": "1a703a8688db88c506fcc02c99dcfad9", + "x-ms-correlation-request-id": "f7f8d878-9bf4-4a2b-95cf-f95eb64c81d5", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "914d3bbb-3f6d-4edc-bfd8-8a5a0a29b567", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082606Z:f7f8d878-9bf4-4a2b-95cf-f95eb64c81d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b793e263fb856d416a6eec33c6f06a32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92fdf25a-397c-4c05-8912-5dd3dde22ec4", + "x-ms-client-request-id": "b793e263fb856d416a6eec33c6f06a32", + "x-ms-correlation-request-id": "b93615b3-53bb-429f-97ee-a479fb4d81ac", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "7f5607f0-0112-4c2a-9f3f-b2bb7d23b49e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082607Z:b93615b3-53bb-429f-97ee-a479fb4d81ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e828d5d4cf4a4e9ec98f21b2bb829c2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8ede8f4-3a6b-4e89-a26e-29c608a5d62f", + "x-ms-client-request-id": "e828d5d4cf4a4e9ec98f21b2bb829c2a", + "x-ms-correlation-request-id": "5805ee57-4a4d-4469-9878-2145d5be7a71", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "b7af9313-0fd5-4b93-bae5-a1a7530c8c48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082608Z:5805ee57-4a4d-4469-9878-2145d5be7a71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18b05557545f8beef903af6c9b91c116", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd7f0ae7-5b47-4ca8-bf87-038c84a4059d", + "x-ms-client-request-id": "18b05557545f8beef903af6c9b91c116", + "x-ms-correlation-request-id": "ef4730a5-1c31-4f50-bef8-2f51c55311e5", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "c6864d7e-43e1-4bf8-b3bc-5b86e2c765ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082610Z:ef4730a5-1c31-4f50-bef8-2f51c55311e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4578e9211b4938f4444eef5d98eb2e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65fe7f2c-a3aa-4ab7-afd8-0585f2ec2f3a", + "x-ms-client-request-id": "c4578e9211b4938f4444eef5d98eb2e8", + "x-ms-correlation-request-id": "a8521157-027a-4aed-bb17-1f467e9f823a", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "ae611faf-2724-4176-9a1d-4aec6f69d9ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082611Z:a8521157-027a-4aed-bb17-1f467e9f823a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70dcc2d2513f7fd3e79cee472031b337", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72672db3-b970-41e8-a197-da6ba71244b6", + "x-ms-client-request-id": "70dcc2d2513f7fd3e79cee472031b337", + "x-ms-correlation-request-id": "ae8d9979-a161-4306-99cf-8194f3cf1bb3", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "10841cc8-15f4-48b1-94fc-d44c1ad3444f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082612Z:ae8d9979-a161-4306-99cf-8194f3cf1bb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d200bced82a4676c61dd41b66f8b26b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73146167-f097-4a30-b310-54011e1e7402", + "x-ms-client-request-id": "2d200bced82a4676c61dd41b66f8b26b", + "x-ms-correlation-request-id": "18bdb50b-5401-433f-9a4a-954dde446d38", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "2883e496-4980-458c-b5bf-3491cbab8142", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082614Z:18bdb50b-5401-433f-9a4a-954dde446d38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d99ac75050b540d6bad7dc1722487313", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "677c8f85-1d11-49f9-87e3-c5b028d95b4d", + "x-ms-client-request-id": "d99ac75050b540d6bad7dc1722487313", + "x-ms-correlation-request-id": "2727eab9-7f87-43b7-8a58-78d5588e584c", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "53506d15-de27-4c9f-8daa-10820b06547e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082615Z:2727eab9-7f87-43b7-8a58-78d5588e584c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd27b690846df9bd4b96aa217db719ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72a43015-3ad8-41a9-a9a5-ce8cd92b4869", + "x-ms-client-request-id": "cd27b690846df9bd4b96aa217db719ee", + "x-ms-correlation-request-id": "b1157bf6-f784-4b92-b56f-a2730559d91e", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "2ca9760b-0edb-4206-b1a6-9ad0a518df9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082616Z:b1157bf6-f784-4b92-b56f-a2730559d91e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58f683eada967d8135df7253fb5e237e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e3f4d4f-21d4-4f57-8213-e4315d962c7e", + "x-ms-client-request-id": "58f683eada967d8135df7253fb5e237e", + "x-ms-correlation-request-id": "419c7d0d-972d-4143-a8e8-ae2a3c93e484", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "60d98215-dcea-4a73-a626-8cf8bf435514", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082618Z:419c7d0d-972d-4143-a8e8-ae2a3c93e484" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b08ac1aae4d1ccfd09a18d1fa6b4c303", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a79834f-136d-4891-9992-a2c7daeaa18e", + "x-ms-client-request-id": "b08ac1aae4d1ccfd09a18d1fa6b4c303", + "x-ms-correlation-request-id": "d51a3cf0-84ce-4d90-bd6e-dc12a1142209", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "423f84ab-05e2-4336-841d-e91af14289b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082619Z:d51a3cf0-84ce-4d90-bd6e-dc12a1142209" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f2deebe1a51b67c34aa988d126afded", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15387339-c18c-495e-a8a6-0b984aa897d6", + "x-ms-client-request-id": "9f2deebe1a51b67c34aa988d126afded", + "x-ms-correlation-request-id": "cff01e61-069f-4fb6-81d4-633540576b71", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "6fca455f-fa0b-42b3-a7c3-6977b6672b53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082620Z:cff01e61-069f-4fb6-81d4-633540576b71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb772b72692d061c852a4ff54c62d680", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74e1a3ab-a188-4884-9016-79e019f26471", + "x-ms-client-request-id": "bb772b72692d061c852a4ff54c62d680", + "x-ms-correlation-request-id": "168d7433-eef9-48d4-87ba-ac345ce48f9a", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "9f0ed0f5-eb1d-4cd5-bca3-aad8a7294bb0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082621Z:168d7433-eef9-48d4-87ba-ac345ce48f9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c946f1c84318f2c44d37b274b6fb99f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8ea7e0e-cd57-4d29-999c-faa6e7669113", + "x-ms-client-request-id": "0c946f1c84318f2c44d37b274b6fb99f", + "x-ms-correlation-request-id": "0bab0800-054d-4a4f-9294-5ba7f31d5196", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "f9d95351-b65b-4565-8287-b2152666de9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082623Z:0bab0800-054d-4a4f-9294-5ba7f31d5196" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bac9fa3073c55d5d2271a27cb8769d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d539a36-dba4-4e19-80d3-e16085f71026", + "x-ms-client-request-id": "7bac9fa3073c55d5d2271a27cb8769d2", + "x-ms-correlation-request-id": "d2b9d1d9-08dc-44bf-9b3c-bdb9952cad03", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "1820934d-3bb6-486d-918f-2f054fffe8b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082624Z:d2b9d1d9-08dc-44bf-9b3c-bdb9952cad03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a27118d3f0d5eebcfee77759edf5ba15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "19b6af80-2c38-40c7-ba18-042717632ad9", + "x-ms-client-request-id": "a27118d3f0d5eebcfee77759edf5ba15", + "x-ms-correlation-request-id": "8a1fd824-83da-4e05-8b19-daa1a14b9ade", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "77336f6f-2da1-48f0-a1e6-e3b43c043c68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082625Z:8a1fd824-83da-4e05-8b19-daa1a14b9ade" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac51af705bb61543993f3a096904c4bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ceea5e3-36f7-43ba-9148-28a92e7eb499", + "x-ms-client-request-id": "ac51af705bb61543993f3a096904c4bd", + "x-ms-correlation-request-id": "2868ddd9-2265-4e2a-9c42-99ea7e00d52a", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "32712644-b44c-4a94-bf25-a8707d43f1ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082627Z:2868ddd9-2265-4e2a-9c42-99ea7e00d52a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3354a96916feb2cae3bd7c54907b67dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0406b28b-6f55-46a1-ae36-5fa7a72a1c0b", + "x-ms-client-request-id": "3354a96916feb2cae3bd7c54907b67dc", + "x-ms-correlation-request-id": "6c2cc83a-45dc-476b-868d-f205e1e37f78", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "8b4b62a2-95cf-4189-af91-b21c6eaf3037", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082628Z:6c2cc83a-45dc-476b-868d-f205e1e37f78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bb7046dbd35771bd45b0895b5b284fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3d0770b-4d44-4a4a-a3f1-826df8f21bc3", + "x-ms-client-request-id": "1bb7046dbd35771bd45b0895b5b284fa", + "x-ms-correlation-request-id": "9af020ba-d4a7-4948-88e3-8454acd7779b", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "4e2eaf1a-566d-497c-943a-26c807792458", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082629Z:9af020ba-d4a7-4948-88e3-8454acd7779b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44efb92386a15916e49ec9f8dfee851e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df5eb66d-7a05-4c4e-877f-79af5540a8cd", + "x-ms-client-request-id": "44efb92386a15916e49ec9f8dfee851e", + "x-ms-correlation-request-id": "956acbea-6645-4899-a0ff-eca716c02d8d", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "7e75565d-0058-4a68-a60a-9619e0bd6a57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082630Z:956acbea-6645-4899-a0ff-eca716c02d8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "659c5ed8a84cac888ddc5fa20d35fd31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bd0e656-ae34-40e1-892a-37573ea77900", + "x-ms-client-request-id": "659c5ed8a84cac888ddc5fa20d35fd31", + "x-ms-correlation-request-id": "4468f3aa-f52e-42db-a771-7898e23fbf33", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "2b5b5ece-9a8f-441c-80bd-8a7fd243270d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082632Z:4468f3aa-f52e-42db-a771-7898e23fbf33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6318139228be63bed5e3796f32397e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2fbf137c-2b8b-480d-b344-570d9041e77d", + "x-ms-client-request-id": "d6318139228be63bed5e3796f32397e5", + "x-ms-correlation-request-id": "7376c469-e44a-4e7e-bb22-e330e838111c", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "98e85f02-5879-4066-8009-8c7d8f5ef4c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082633Z:7376c469-e44a-4e7e-bb22-e330e838111c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57bcead61f157aad3143b6c427744baf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f951c4de-7596-4cec-b83d-c03c11d189ca", + "x-ms-client-request-id": "57bcead61f157aad3143b6c427744baf", + "x-ms-correlation-request-id": "612fcd65-6666-40db-a55d-82971954616a", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "b5ab1793-1949-4034-b692-e8118a4c3474", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082634Z:612fcd65-6666-40db-a55d-82971954616a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5dbf97a1aebdb59222b677ee71f1b869", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ffd6a5c9-363b-470e-84f8-3737afdbe5e5", + "x-ms-client-request-id": "5dbf97a1aebdb59222b677ee71f1b869", + "x-ms-correlation-request-id": "81d90b6d-3232-4af3-b963-c3c055e9e51f", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "80a76ea0-5438-4b56-bce8-de7691d621a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082636Z:81d90b6d-3232-4af3-b963-c3c055e9e51f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23cb7944a578191bd4b6a5486b76bf79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db4f7bb5-e338-420f-b43a-de4767cb7ad8", + "x-ms-client-request-id": "23cb7944a578191bd4b6a5486b76bf79", + "x-ms-correlation-request-id": "d424316b-b0f2-411b-bcc0-d4a471bbdf42", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "18787ac3-877b-4058-8aab-75616e99e2bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082637Z:d424316b-b0f2-411b-bcc0-d4a471bbdf42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cf487133a6428285807355fa7be093f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43b41c2f-6eae-4a55-bf09-4d32b8598b14", + "x-ms-client-request-id": "5cf487133a6428285807355fa7be093f", + "x-ms-correlation-request-id": "1f9b8611-3059-4b3f-a412-95a3a8219c0b", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "28382d47-986f-45d8-89ac-7838a824bb38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082638Z:1f9b8611-3059-4b3f-a412-95a3a8219c0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad804d8a28a8fc377ba58906084949ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8090458e-c180-4322-aa10-cfba6c3239c8", + "x-ms-client-request-id": "ad804d8a28a8fc377ba58906084949ab", + "x-ms-correlation-request-id": "f9648302-4744-43b6-81a5-254fb5f034bb", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "bd75cb92-bb0c-4aa0-aa37-6e1064f29372", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082639Z:f9648302-4744-43b6-81a5-254fb5f034bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9dbfef65cfc0a0551a3ca7070bc7215", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f33e2ae4-3270-4f5a-9593-db01b5862860", + "x-ms-client-request-id": "e9dbfef65cfc0a0551a3ca7070bc7215", + "x-ms-correlation-request-id": "3a056cf2-b877-402b-80f4-fe3449a92b1f", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "eb6c4adb-9d47-4fc3-a7b5-d369b1532491", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082641Z:3a056cf2-b877-402b-80f4-fe3449a92b1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ebe66ad12f6ead050f8e0beb0221f0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9261faa-c952-4e01-90c3-17dc056f0c9e", + "x-ms-client-request-id": "1ebe66ad12f6ead050f8e0beb0221f0e", + "x-ms-correlation-request-id": "b745a4b9-67c3-4d1f-a4cc-d7786b9515f6", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "319ed2f4-f678-4969-827f-591b4fa6044a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082642Z:b745a4b9-67c3-4d1f-a4cc-d7786b9515f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a86889bd1fe32d4247765c055dc68bbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b7ea78b-b558-44dd-86d2-2070b784592e", + "x-ms-client-request-id": "a86889bd1fe32d4247765c055dc68bbf", + "x-ms-correlation-request-id": "ec601c30-1e85-4328-bb8a-49c86524942d", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "20dea665-3122-4e1a-831d-8bd3bb75439e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082643Z:ec601c30-1e85-4328-bb8a-49c86524942d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a25873332a8be4b52ef099047c46592e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9801c7d-059b-475b-96bc-05e9deb71adc", + "x-ms-client-request-id": "a25873332a8be4b52ef099047c46592e", + "x-ms-correlation-request-id": "0d92d631-0cf1-4e7c-957f-95bd50ee17b4", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "db0bf845-4584-45ab-81be-febc8c1d5df0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082644Z:0d92d631-0cf1-4e7c-957f-95bd50ee17b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6b2bc83c9548e322490d780b6ca8d89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17c0a37d-753c-4801-b6e5-e304d5c681db", + "x-ms-client-request-id": "e6b2bc83c9548e322490d780b6ca8d89", + "x-ms-correlation-request-id": "4459e3ee-4a0d-4f58-88d9-f4cc94418f66", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "581317dc-54d2-44cb-a72a-db75559c94be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082646Z:4459e3ee-4a0d-4f58-88d9-f4cc94418f66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d8b216c7dca9383d4847af2853eb100", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86cf4655-3c18-4447-8c67-a47509583d71", + "x-ms-client-request-id": "3d8b216c7dca9383d4847af2853eb100", + "x-ms-correlation-request-id": "521dc0ed-a94d-41ac-bb0e-ac14d38e35f4", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "deebdd60-7144-4f74-b5fb-fda38419e8f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082647Z:521dc0ed-a94d-41ac-bb0e-ac14d38e35f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1822d1ca513696a41c97efb53342e63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6856374-1af2-454b-b258-d7622bb57570", + "x-ms-client-request-id": "a1822d1ca513696a41c97efb53342e63", + "x-ms-correlation-request-id": "b95287ba-91c7-45d5-acc0-1478f7806da8", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "6516175a-0dc8-4482-a4a1-54c3dc5d7b8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082648Z:b95287ba-91c7-45d5-acc0-1478f7806da8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a9710621cbb0564391f12d04f3f09e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f401f76b-e0d3-4546-883e-ae59d13adb3e", + "x-ms-client-request-id": "5a9710621cbb0564391f12d04f3f09e5", + "x-ms-correlation-request-id": "f136de82-15fc-4dcd-89a8-032ba8761695", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "eb62664d-dca5-41b0-ae22-756d5282f2b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082650Z:f136de82-15fc-4dcd-89a8-032ba8761695" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8863d7deec48c775b621fb00ff88409f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17cffbe9-786d-475b-85b0-2b2e7106a1c3", + "x-ms-client-request-id": "8863d7deec48c775b621fb00ff88409f", + "x-ms-correlation-request-id": "2f5cc4b0-868f-40ba-98b3-113d8463df0a", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "eb6536b2-4eda-487b-bac8-b60f2708022b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082651Z:2f5cc4b0-868f-40ba-98b3-113d8463df0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7590165657a70045c87d68f4929a1a02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2988cc1f-39b0-4751-8395-bf597cfa81e3", + "x-ms-client-request-id": "7590165657a70045c87d68f4929a1a02", + "x-ms-correlation-request-id": "db5919ed-0eb0-4db5-b74e-a51f98880293", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "fbc622f0-709b-428e-9939-2b42da411821", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082652Z:db5919ed-0eb0-4db5-b74e-a51f98880293" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b1c98c0a5d0761b9acfa499206305b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f229903-051b-4381-92d1-559269470f0b", + "x-ms-client-request-id": "7b1c98c0a5d0761b9acfa499206305b1", + "x-ms-correlation-request-id": "5c2071ea-8e7c-4b34-be40-28b776b9b7df", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "378b3c4d-2482-4c82-be95-b3f883abab68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082653Z:5c2071ea-8e7c-4b34-be40-28b776b9b7df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "387973de94af873e9163bfcb8481351b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0847e1d-ccb5-4391-87e5-9dcecd4ddd23", + "x-ms-client-request-id": "387973de94af873e9163bfcb8481351b", + "x-ms-correlation-request-id": "c9c458a7-02d0-4d62-8ec1-9a761d1d1873", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "57a9a2c6-bee2-4b5a-98ce-e51c4ed2daeb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082655Z:c9c458a7-02d0-4d62-8ec1-9a761d1d1873" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6740f907c46bb0cefb19dad7b2abe065", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d8c2d7b-9e1a-47d1-b056-21a2df56b149", + "x-ms-client-request-id": "6740f907c46bb0cefb19dad7b2abe065", + "x-ms-correlation-request-id": "0c22429f-39d2-402e-b7ac-de55a53948ac", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "09d347e1-0b6f-4bcd-88a4-c6a8754cf9b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082656Z:0c22429f-39d2-402e-b7ac-de55a53948ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f15b677e1202c525a94ea6de54ff119", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21e39ad5-5ff7-4c2c-a7af-8443e02a522d", + "x-ms-client-request-id": "1f15b677e1202c525a94ea6de54ff119", + "x-ms-correlation-request-id": "299c2933-c690-45dd-bda4-6a9dc87241ec", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "6700eb4d-f7fd-4182-ae4b-df99a11d07f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082657Z:299c2933-c690-45dd-bda4-6a9dc87241ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2691889a9d231a45a4c93d95b966d4e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:26:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0fcad5c-5733-4a87-a17e-ea5e1287b47c", + "x-ms-client-request-id": "2691889a9d231a45a4c93d95b966d4e6", + "x-ms-correlation-request-id": "8e691a7b-a9c0-4552-a8dd-42ee5d69b58b", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "0b79000d-6acb-4d96-91c5-8127358a67bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082658Z:8e691a7b-a9c0-4552-a8dd-42ee5d69b58b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd535a83156b26fba6140dd6da60caab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29895b90-e451-471e-a450-3cdbb1ecc489", + "x-ms-client-request-id": "cd535a83156b26fba6140dd6da60caab", + "x-ms-correlation-request-id": "10ddca40-4fae-4fb0-923b-ea822f0a23b2", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "dac0ab2d-b52a-40b9-abb4-ce5202010b25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082700Z:10ddca40-4fae-4fb0-923b-ea822f0a23b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a3dc128b91ada4171fb7a57a3bd72f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab1280ba-fc63-4936-8d6b-9383b05a1ef4", + "x-ms-client-request-id": "2a3dc128b91ada4171fb7a57a3bd72f3", + "x-ms-correlation-request-id": "0cf8cf9d-921e-4d0c-a605-0dd1efefaf90", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "92060eec-abbf-45f7-8fe3-419d893d4a04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082701Z:0cf8cf9d-921e-4d0c-a605-0dd1efefaf90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bea04c024fc84ad8d6b7f0f906f4044", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43faa37b-d3e2-4ea0-be9f-58d9f34566c0", + "x-ms-client-request-id": "8bea04c024fc84ad8d6b7f0f906f4044", + "x-ms-correlation-request-id": "73d9cd88-de44-40aa-82e5-bb06bcfe56fa", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "5c376f82-c2c4-49ee-b476-3d5c75bb2106", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082702Z:73d9cd88-de44-40aa-82e5-bb06bcfe56fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f76d91ffaa29c9cc19795c709ba382e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "814ec31e-7ecc-4bfa-92c2-cc0ba31d2d0f", + "x-ms-client-request-id": "f76d91ffaa29c9cc19795c709ba382e9", + "x-ms-correlation-request-id": "b484be7e-293c-42f1-8954-24237fa5e5ec", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "d1786a08-5ec7-4f33-b91f-f0802b74251e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082704Z:b484be7e-293c-42f1-8954-24237fa5e5ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6161aa13f7604af13b89dae39324902", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "394bd28c-19af-406f-b411-8fcaa683f862", + "x-ms-client-request-id": "d6161aa13f7604af13b89dae39324902", + "x-ms-correlation-request-id": "76882620-d18d-4597-bbbd-c4592ddb312f", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "9be17981-86a9-4dd0-bb43-56d3b9b8a654", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082705Z:76882620-d18d-4597-bbbd-c4592ddb312f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "115836bb7a5016c937207282c73de8e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac06ba78-2992-4d1f-bd19-921513781437", + "x-ms-client-request-id": "115836bb7a5016c937207282c73de8e9", + "x-ms-correlation-request-id": "f46e83d8-2a86-4669-be35-bdcd1f44e76d", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "3b9799d4-8463-4b58-b0f6-56f4fd01ad47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082707Z:f46e83d8-2a86-4669-be35-bdcd1f44e76d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "756d96e86958c0cde268e3700c1d8fe7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77733d1e-cbb2-4406-8783-ebbdb630be2d", + "x-ms-client-request-id": "756d96e86958c0cde268e3700c1d8fe7", + "x-ms-correlation-request-id": "daf64f19-dd69-433c-80a5-499009122977", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "691a19a1-61cf-4f4f-8eea-be5a0e1a31c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082708Z:daf64f19-dd69-433c-80a5-499009122977" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65b5592f704b269850009e55cc2c3cd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae462924-cc58-40c5-b102-7c78ac203d87", + "x-ms-client-request-id": "65b5592f704b269850009e55cc2c3cd6", + "x-ms-correlation-request-id": "1b8826bd-6da4-4d63-bccd-f042ab07abea", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "065bff3c-5d26-43a7-8a22-ab481aa3cc35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082709Z:1b8826bd-6da4-4d63-bccd-f042ab07abea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3c6b4d0d3c451a968982ee79659091a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c1476977-81d6-4bc7-97e5-cdcdbf7d2125", + "x-ms-client-request-id": "a3c6b4d0d3c451a968982ee79659091a", + "x-ms-correlation-request-id": "8c6f1b3b-1dbf-455d-8e8a-38c41ae64697", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "92b4c8c5-8450-420e-9cca-fa3efdc58bf1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082710Z:8c6f1b3b-1dbf-455d-8e8a-38c41ae64697" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d538b918387779dfd462558cb78f3b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "923866b9-1b9e-4f1c-8def-10acad9d1936", + "x-ms-client-request-id": "6d538b918387779dfd462558cb78f3b6", + "x-ms-correlation-request-id": "912719c1-573a-41da-a12c-c15837146af0", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "9c8135b0-c541-4281-9353-22785e96f42a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082712Z:912719c1-573a-41da-a12c-c15837146af0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58a00d2cec565b22b064fdb341b08ff7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81589f31-45a6-4d51-b6f8-9778beac585b", + "x-ms-client-request-id": "58a00d2cec565b22b064fdb341b08ff7", + "x-ms-correlation-request-id": "37019362-4792-4a18-b01a-ea0e5bec86a0", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "ac084935-d40d-44aa-b515-da4d8ec14457", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082713Z:37019362-4792-4a18-b01a-ea0e5bec86a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41c483f6ced84d4e164ea57dae5085ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fcac237c-9dcb-459f-afd7-362d96ad1b67", + "x-ms-client-request-id": "41c483f6ced84d4e164ea57dae5085ef", + "x-ms-correlation-request-id": "43a977d4-bd77-4c9d-accb-e60fd50d0cc4", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "16611abd-7351-486a-b95f-7001945a9b75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082714Z:43a977d4-bd77-4c9d-accb-e60fd50d0cc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89bb78a4b1b8a4c368f7bd2385ea354c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71bf5dfc-b3f1-47d6-803a-9489ac9306be", + "x-ms-client-request-id": "89bb78a4b1b8a4c368f7bd2385ea354c", + "x-ms-correlation-request-id": "bde545ad-e14b-4fcf-b360-ad46859672f1", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "f0b59beb-a8c0-4fb0-b099-da25c45f5f51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082716Z:bde545ad-e14b-4fcf-b360-ad46859672f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47622db7b1b45dddbe53410846a5ad5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aafaa606-5248-4c00-afc5-7a6cbf7b3d78", + "x-ms-client-request-id": "47622db7b1b45dddbe53410846a5ad5f", + "x-ms-correlation-request-id": "d7b8dfe8-c973-46b7-92f8-286776e1dafd", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "30a89a5f-2e26-42e8-ab7a-d27b730667f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082717Z:d7b8dfe8-c973-46b7-92f8-286776e1dafd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c90e0ede06f5453fbf1fd8e1102bc72c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4c403cb-a495-40b4-b9c7-0b1cadae7a09", + "x-ms-client-request-id": "c90e0ede06f5453fbf1fd8e1102bc72c", + "x-ms-correlation-request-id": "39448fbd-3423-4236-9a7b-0a2ac3e312e5", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "5b757725-a84b-4f8e-a3aa-363866c68d40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082718Z:39448fbd-3423-4236-9a7b-0a2ac3e312e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80c659183deef33b9a5dcb646fbb5dc3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "890a81c1-3bd8-4e7b-8955-e55fe250a1ff", + "x-ms-client-request-id": "80c659183deef33b9a5dcb646fbb5dc3", + "x-ms-correlation-request-id": "be740bdd-6f6d-4aae-9cd3-dd46c732c823", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "d6b784ec-1ddf-4055-8668-9d361f811ec7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082720Z:be740bdd-6f6d-4aae-9cd3-dd46c732c823" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77455e4a6cdbb057ee1c8894d8fc4d93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54a63a82-7ee3-4e0b-9e25-c35d3d0b07f3", + "x-ms-client-request-id": "77455e4a6cdbb057ee1c8894d8fc4d93", + "x-ms-correlation-request-id": "d0f0b3f7-4246-43bf-93e2-59346f467981", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "8ca45c3e-b117-413d-a675-1276b4882d0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082721Z:d0f0b3f7-4246-43bf-93e2-59346f467981" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edef158b2cdfa071d21b2f973adad604", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b99e70c-fcda-4f68-8cdd-b81f0ad47347", + "x-ms-client-request-id": "edef158b2cdfa071d21b2f973adad604", + "x-ms-correlation-request-id": "df9a52e3-e19c-4822-9f9b-3ee30424701e", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "fe1ff350-1a55-4ac2-bd0e-af57f180714a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082722Z:df9a52e3-e19c-4822-9f9b-3ee30424701e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b29715c150e6ac50011592d1b5a71a9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5589da1e-334a-415e-9553-06c32ccc4e08", + "x-ms-client-request-id": "b29715c150e6ac50011592d1b5a71a9d", + "x-ms-correlation-request-id": "0efb9511-9ab2-415d-a4c3-3d7f502c72ff", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "b52f5c7a-9519-4395-bc28-656116fd5cd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082723Z:0efb9511-9ab2-415d-a4c3-3d7f502c72ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ad9381070cc1de4eca4a4c03cbf7514", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04a7f682-26cc-47d3-a091-25abc5d9c389", + "x-ms-client-request-id": "5ad9381070cc1de4eca4a4c03cbf7514", + "x-ms-correlation-request-id": "aa6d66f5-e424-4e9a-a50c-45e9562102c6", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "7c00481c-d803-40fe-bfd8-af602957270a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082725Z:aa6d66f5-e424-4e9a-a50c-45e9562102c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3d283469a653badc442ebc99a9fea2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65fcdce4-4869-48ad-b221-79806b3933f9", + "x-ms-client-request-id": "c3d283469a653badc442ebc99a9fea2b", + "x-ms-correlation-request-id": "da64bb29-9ae6-433d-bad8-9ee606998db3", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "edbcd829-2e0d-4585-8fc1-fcac341a3a82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082726Z:da64bb29-9ae6-433d-bad8-9ee606998db3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "028791017b0051383179c541ac907042", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c978a89f-dbde-4aa4-b9dd-2f796791b3c7", + "x-ms-client-request-id": "028791017b0051383179c541ac907042", + "x-ms-correlation-request-id": "62b0dc8c-9b4d-4c31-aca9-85a094bfa56f", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "a2b304f3-f887-4bf9-9c3f-b13b4d007cb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082727Z:62b0dc8c-9b4d-4c31-aca9-85a094bfa56f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "328a7d9f57d476388b9e9589841a834d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f469eed-c61c-4fc2-90ae-429924e76d56", + "x-ms-client-request-id": "328a7d9f57d476388b9e9589841a834d", + "x-ms-correlation-request-id": "eaba3810-6354-412e-ad36-ea7be17173c2", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "b90b9361-876b-4980-be30-988d86400d78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082729Z:eaba3810-6354-412e-ad36-ea7be17173c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abbe78b97337ca134b8091ebd46b8f33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9fb1dd68-4686-42fe-9072-2155310be378", + "x-ms-client-request-id": "abbe78b97337ca134b8091ebd46b8f33", + "x-ms-correlation-request-id": "2fc7ac0c-e9b5-4b9b-9e6c-85052a9829df", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "3251e00f-f8ea-4a36-bf4c-b65c1177adac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082730Z:2fc7ac0c-e9b5-4b9b-9e6c-85052a9829df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c2aa8d2b814a95658117762e6aecc17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a0f564c-625f-4b13-9805-654afbd74b02", + "x-ms-client-request-id": "1c2aa8d2b814a95658117762e6aecc17", + "x-ms-correlation-request-id": "7a2d1f03-b864-4179-9f09-94b41a46c903", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "a8db02c9-4a83-4b00-ad19-5bf4be62c66e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082731Z:7a2d1f03-b864-4179-9f09-94b41a46c903" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "338778f6c4d22c0a6abfe653c64da11f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cce5e164-fbe9-406d-be78-ec4f243811a1", + "x-ms-client-request-id": "338778f6c4d22c0a6abfe653c64da11f", + "x-ms-correlation-request-id": "508ce621-def7-459d-b585-aa4fc41d3d8a", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "588b1de3-c0db-4303-b585-229dce8cb8e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082733Z:508ce621-def7-459d-b585-aa4fc41d3d8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dcb6620e66ef013821145226fbb0e49c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6346908-8f9b-439d-ba9c-eef305a0fdea", + "x-ms-client-request-id": "dcb6620e66ef013821145226fbb0e49c", + "x-ms-correlation-request-id": "77a1b399-396b-4dbf-9a89-043338209f24", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "8461b3bd-fe6a-4741-ab68-2107369c872d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082734Z:77a1b399-396b-4dbf-9a89-043338209f24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cf579b45ce30e619dfeb254d102e30b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2b62f51-69ab-4943-b9ca-d98b8de7b818", + "x-ms-client-request-id": "5cf579b45ce30e619dfeb254d102e30b", + "x-ms-correlation-request-id": "38b8d0ee-f33d-4de0-82db-7ed67f29e96e", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "7ca8f7be-f710-4ac3-a476-585503b506d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082735Z:38b8d0ee-f33d-4de0-82db-7ed67f29e96e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8454586ff0f88f273f8611bd71e430b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7865c816-9c84-4100-8230-007cfef6d304", + "x-ms-client-request-id": "8454586ff0f88f273f8611bd71e430b9", + "x-ms-correlation-request-id": "4bde1879-4308-4253-94ea-377182b68327", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "b9970fbc-f1cb-43e0-9e7a-c688fb259908", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082737Z:4bde1879-4308-4253-94ea-377182b68327" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c9f4adb4557b23b00a83ef1b3e42f1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e9b580f-9712-451e-9b46-6ab2a0da8f4d", + "x-ms-client-request-id": "4c9f4adb4557b23b00a83ef1b3e42f1f", + "x-ms-correlation-request-id": "355fd20a-2eba-4915-9677-9377be06c93c", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "112965d0-4575-4c9c-b52c-c217b872b310", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082738Z:355fd20a-2eba-4915-9677-9377be06c93c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3b74731605cc3a452651c5d4aa49cb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77ed77c8-b646-4154-8767-81ac23d4e4bc", + "x-ms-client-request-id": "a3b74731605cc3a452651c5d4aa49cb9", + "x-ms-correlation-request-id": "ce4495ba-bf2d-4aa1-8526-a154cd260aee", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "d59c2467-e434-4ef9-8667-345e12931437", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082739Z:ce4495ba-bf2d-4aa1-8526-a154cd260aee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8779f9cd97632ab31ca1834fb235db5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d7f6e8e-a583-4bb1-9b87-d611aa3f7a8b", + "x-ms-client-request-id": "8779f9cd97632ab31ca1834fb235db5b", + "x-ms-correlation-request-id": "98fee074-7169-487a-8724-45bf8bcb699b", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "fd0987f2-2424-45db-b1ef-7360c8ac9e14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082740Z:98fee074-7169-487a-8724-45bf8bcb699b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a8cf2568d2d7b5ca6dcf9f228dd675c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b166cd0-4b80-4874-a14f-87f6907fee3b", + "x-ms-client-request-id": "2a8cf2568d2d7b5ca6dcf9f228dd675c", + "x-ms-correlation-request-id": "469e2411-9e79-49df-ac64-7851a6451b0c", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "82006cc5-ed9e-46de-bb84-129c5a82cfad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082742Z:469e2411-9e79-49df-ac64-7851a6451b0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba24840ca76a99bb938c87bbdc54101c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef0a6f87-25e2-45f9-a713-cf0ea208dbc1", + "x-ms-client-request-id": "ba24840ca76a99bb938c87bbdc54101c", + "x-ms-correlation-request-id": "aa1e49bb-cccb-491a-b12f-111cbb30793b", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "f7b5d89c-f6f9-44a4-8b9b-528a10a6d661", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082743Z:aa1e49bb-cccb-491a-b12f-111cbb30793b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5807c1897218408c9cfee1869dc1013e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d66ea88-d8b0-4b2b-86b1-fe116affda43", + "x-ms-client-request-id": "5807c1897218408c9cfee1869dc1013e", + "x-ms-correlation-request-id": "d9201820-cc73-45ed-9a2f-1f5012bcb6f6", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "a8537457-a198-4ba2-b55f-8c5a1a033c1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082744Z:d9201820-cc73-45ed-9a2f-1f5012bcb6f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e4327392111aef036f296a005a19e51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a7be2cb6-256d-4f5b-be02-33d7bd857a5f", + "x-ms-client-request-id": "2e4327392111aef036f296a005a19e51", + "x-ms-correlation-request-id": "14b0f787-366b-482f-aa60-c434a0b75fa8", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "b9fbab2f-b08c-40ab-888e-d8c30694e0e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082746Z:14b0f787-366b-482f-aa60-c434a0b75fa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6668ddcb0fd69a43f7e31e6cc635fbd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2207164d-b3fb-4100-a421-876b09358c59", + "x-ms-client-request-id": "6668ddcb0fd69a43f7e31e6cc635fbd2", + "x-ms-correlation-request-id": "68ce9c31-9569-44ac-9b19-42fedfcb789a", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "1d0cd612-3a1a-40cc-891c-bdccb3322f5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082747Z:68ce9c31-9569-44ac-9b19-42fedfcb789a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b581488ae211680bd1582225dbec3afa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73193e89-efe1-4760-a778-9f60a7ae336a", + "x-ms-client-request-id": "b581488ae211680bd1582225dbec3afa", + "x-ms-correlation-request-id": "5c4b66d2-a946-4f8e-a847-f8ec5d51b36c", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "333f5a0c-a210-4ffa-91d2-42b0c33af615", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082748Z:5c4b66d2-a946-4f8e-a847-f8ec5d51b36c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0ba90609b582a67e3a9362d0283e800", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd5e1b04-2a7c-45bb-82ce-17d7e9fad36f", + "x-ms-client-request-id": "c0ba90609b582a67e3a9362d0283e800", + "x-ms-correlation-request-id": "2ba69f2c-96b8-4199-ace5-e9755b7d10b7", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "0c968619-f56c-4391-8f5e-5d5e9e968a58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082750Z:2ba69f2c-96b8-4199-ace5-e9755b7d10b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc15c4f7e81fe940d200957eec1ebe0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c99c7da-e21b-4934-bee2-6a0829f985f1", + "x-ms-client-request-id": "bc15c4f7e81fe940d200957eec1ebe0b", + "x-ms-correlation-request-id": "e3f8644e-3bf2-4eda-81ae-30cbe618ada7", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "65baa283-93aa-4a84-a3b2-c9bd244d0864", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082751Z:e3f8644e-3bf2-4eda-81ae-30cbe618ada7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "360c24a93b7aef79e157d268acdd654d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a69ea575-cee8-4da2-926d-88049676990f", + "x-ms-client-request-id": "360c24a93b7aef79e157d268acdd654d", + "x-ms-correlation-request-id": "3c20a3fa-d99a-453d-a2a3-f70f8afc7b8e", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "307df907-81ee-488a-8e9a-8764bfa004fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082752Z:3c20a3fa-d99a-453d-a2a3-f70f8afc7b8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "172e21707dd677da4fd1ee5805e93dc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8dc3ed0f-c391-487b-90a4-f102f39a48be", + "x-ms-client-request-id": "172e21707dd677da4fd1ee5805e93dc5", + "x-ms-correlation-request-id": "d4d023b2-61b0-483c-ba4c-86fc1e459048", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "e8967ed8-7847-4bfd-9e85-7ebd3aa2bfa1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082753Z:d4d023b2-61b0-483c-ba4c-86fc1e459048" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de842aeab177bc864a25dbc816d83cf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac539c73-2a3e-46e2-baca-0f102b95a7f8", + "x-ms-client-request-id": "de842aeab177bc864a25dbc816d83cf5", + "x-ms-correlation-request-id": "a1de94f8-dfd1-47b5-8e46-2ce5dafe3573", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "ff09f379-472a-4b24-9e93-762bf84c4131", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082755Z:a1de94f8-dfd1-47b5-8e46-2ce5dafe3573" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca0d479aa7f02b354995e6a84c20e9f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4bbd58b-5575-490e-8d05-0d6582e050b6", + "x-ms-client-request-id": "ca0d479aa7f02b354995e6a84c20e9f7", + "x-ms-correlation-request-id": "a911dbc2-7d1a-4d89-803d-4eda52c489af", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "195c2123-465a-4fe6-91cf-f72a2e4d881a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082757Z:a911dbc2-7d1a-4d89-803d-4eda52c489af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "817d0c198758bed69a72ccb0a2126077", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96524e6e-c4ce-41d7-8c02-4625b7b13fd3", + "x-ms-client-request-id": "817d0c198758bed69a72ccb0a2126077", + "x-ms-correlation-request-id": "2299f9dd-588d-4842-8505-5c352f20ab79", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "b2923666-1d65-48ad-b803-ae3ae9dcc5a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082758Z:2299f9dd-588d-4842-8505-5c352f20ab79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bebef99472db42d4f55994e1cbde6f2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:27:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61e17402-59ba-4bae-a6e6-060220b644b2", + "x-ms-client-request-id": "bebef99472db42d4f55994e1cbde6f2a", + "x-ms-correlation-request-id": "71304424-d62a-4573-81e1-40cce6c43a30", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "49a05526-949e-4ee0-8890-acc7d9dd50e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082759Z:71304424-d62a-4573-81e1-40cce6c43a30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09aee33bbb5a129c714f307eda848837", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78d1583b-e238-420d-94d9-6fd81896b783", + "x-ms-client-request-id": "09aee33bbb5a129c714f307eda848837", + "x-ms-correlation-request-id": "1a48b487-0a22-4350-bd6f-abf3b1151919", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "8a9625df-3288-4563-9526-9aad7173c980", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082801Z:1a48b487-0a22-4350-bd6f-abf3b1151919" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53136f342b61a61c383a8cfef2f4f3bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d5f457b-bf9c-4c13-83a9-4181b0fb6172", + "x-ms-client-request-id": "53136f342b61a61c383a8cfef2f4f3bc", + "x-ms-correlation-request-id": "3be4463c-f69f-48fe-b6b0-a26ca09b15ff", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "a8d8d6d8-6e5f-41c3-b124-88a72458a695", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082802Z:3be4463c-f69f-48fe-b6b0-a26ca09b15ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be75a2025663d91c5cac4d8c42566870", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d02963ee-fc86-419a-871e-f678b69b6329", + "x-ms-client-request-id": "be75a2025663d91c5cac4d8c42566870", + "x-ms-correlation-request-id": "77db619f-066f-4b9c-a45e-3ca719a37a26", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "696156b7-1c05-4d06-bbbb-796a339a5ed2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082803Z:77db619f-066f-4b9c-a45e-3ca719a37a26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cac5dd01bca0fc8c708d1202e9d1f7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "726bfee6-70b8-4a8e-8ee3-d11073f881b4", + "x-ms-client-request-id": "5cac5dd01bca0fc8c708d1202e9d1f7c", + "x-ms-correlation-request-id": "ef38a5a7-a816-4ce1-ba8b-3dad702b5faf", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "224ba640-64e3-4cf2-a8d4-4d02a3cb9190", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082805Z:ef38a5a7-a816-4ce1-ba8b-3dad702b5faf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "387b735cca0fded4523af7b5de8f64e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5f2ce66-ab86-4e88-920b-bdc92475c9d3", + "x-ms-client-request-id": "387b735cca0fded4523af7b5de8f64e1", + "x-ms-correlation-request-id": "d5932997-c2c8-41f8-b318-756a61435210", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "9ddc699e-62d1-439f-9764-9012886e1d7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082806Z:d5932997-c2c8-41f8-b318-756a61435210" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "952e1bd29747e7f2d965f65b84fcaabe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "729659a8-4376-4947-8b32-703776772a6e", + "x-ms-client-request-id": "952e1bd29747e7f2d965f65b84fcaabe", + "x-ms-correlation-request-id": "a005ff46-011e-402a-975a-70935892f749", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "f94758ad-7396-4bda-817f-c474fef9d663", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082807Z:a005ff46-011e-402a-975a-70935892f749" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf30d08c2fdb066188ce098f23133137", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e04baffa-7d76-4377-82f9-23f54531a7d3", + "x-ms-client-request-id": "cf30d08c2fdb066188ce098f23133137", + "x-ms-correlation-request-id": "813e021f-deca-40b8-b40a-6073eee52641", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "4c0bb2e7-cece-4a0d-9569-588d15b7a14a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082808Z:813e021f-deca-40b8-b40a-6073eee52641" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "134df0a3896fc53480945fa9d3795956", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f1953d8-79ce-4a03-83e9-b5eeaa3c0778", + "x-ms-client-request-id": "134df0a3896fc53480945fa9d3795956", + "x-ms-correlation-request-id": "2b0942c9-4248-4e8b-aaf6-90b0eaa6afd8", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "544c66a8-dd22-43d0-8054-164d956cc975", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082810Z:2b0942c9-4248-4e8b-aaf6-90b0eaa6afd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e28398f945fa205b9270d798d62c3c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1655d8f5-1511-4731-b30d-87764d76e8d5", + "x-ms-client-request-id": "0e28398f945fa205b9270d798d62c3c5", + "x-ms-correlation-request-id": "9d9aff50-784d-4a2e-b098-84d42a8d4433", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "7853558a-5bd0-49b2-8332-249d5df85083", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082811Z:9d9aff50-784d-4a2e-b098-84d42a8d4433" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94b7bf3396af024e9b6b4f47d0b8320f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be16205d-15d3-4e4c-901d-7d6344f26c3b", + "x-ms-client-request-id": "94b7bf3396af024e9b6b4f47d0b8320f", + "x-ms-correlation-request-id": "3749cf2e-c58b-4b29-85ae-715c669e122d", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "0f1b1453-9be4-4a99-8a41-5c7b5a03df74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082812Z:3749cf2e-c58b-4b29-85ae-715c669e122d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eaffb37523eb0fd8eaaa5a477cbb371d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5893c53c-b98d-4254-ae8d-72a2b3d33bcb", + "x-ms-client-request-id": "eaffb37523eb0fd8eaaa5a477cbb371d", + "x-ms-correlation-request-id": "3fa849f5-2037-4a2c-9f43-f1d7e7bb7476", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "ae7d4914-3bfe-4b8e-b559-848e1999ef85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082814Z:3fa849f5-2037-4a2c-9f43-f1d7e7bb7476" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "147599d0c5c2f8a7ea2572f445bed201", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f35a901b-790c-458e-8a6d-394af3538e30", + "x-ms-client-request-id": "147599d0c5c2f8a7ea2572f445bed201", + "x-ms-correlation-request-id": "c2555b2d-d9b8-4c05-a2c5-a17f78c86ce0", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "2224255b-0af3-4a23-ba05-ed2fdf734c2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082815Z:c2555b2d-d9b8-4c05-a2c5-a17f78c86ce0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da03fdf5d86210dae6a7a9043c0785e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d00bc2c5-a6f1-471f-b26b-eb5eb2031310", + "x-ms-client-request-id": "da03fdf5d86210dae6a7a9043c0785e0", + "x-ms-correlation-request-id": "af0dcb34-5a51-48bb-9fa1-5389da5a6d95", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "70e87e39-6f05-4edc-b8b5-8d65013dd556", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082816Z:af0dcb34-5a51-48bb-9fa1-5389da5a6d95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "367631331d42b04d0c0700c5b0e3ca2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4415484c-c7d4-4272-a8e3-9e8d6af487e2", + "x-ms-client-request-id": "367631331d42b04d0c0700c5b0e3ca2c", + "x-ms-correlation-request-id": "44b063c0-586c-4e57-a771-fefa6b6e3bbd", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "d14e8cd9-964b-437a-9e10-7ab8f34da949", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082817Z:44b063c0-586c-4e57-a771-fefa6b6e3bbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e5258d85cb7f7babf652d1a1ba2bce3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "11600aed-0d71-4162-896f-319c8e74fd9a", + "x-ms-client-request-id": "7e5258d85cb7f7babf652d1a1ba2bce3", + "x-ms-correlation-request-id": "59ffea83-3e42-497a-b4e3-1e7d299a3e07", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "50b97ca8-8ce9-4be9-b8aa-10002bac00d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082819Z:59ffea83-3e42-497a-b4e3-1e7d299a3e07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13c092a09c47d7bfb053ce5bd8156002", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab0d694d-4ff4-4f6b-b73a-afd48e24443f", + "x-ms-client-request-id": "13c092a09c47d7bfb053ce5bd8156002", + "x-ms-correlation-request-id": "ebf65916-363a-42ba-9fc8-51da04412e47", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "752a28a2-a6ed-4318-9707-5b55437ca7dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082820Z:ebf65916-363a-42ba-9fc8-51da04412e47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e42c7ddd06b4d728767e77ddf0329469", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf259dc7-dbef-46ad-9e52-db3f94c180e0", + "x-ms-client-request-id": "e42c7ddd06b4d728767e77ddf0329469", + "x-ms-correlation-request-id": "213bb6d3-4c80-43b3-8654-44e3c62830d4", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "325451a7-03ff-4cad-b80e-329d24a0130b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082821Z:213bb6d3-4c80-43b3-8654-44e3c62830d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e251d4bb6233ce4997ace638e5e1fa9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef06b1a2-15d0-4daf-8717-1168fed16e94", + "x-ms-client-request-id": "1e251d4bb6233ce4997ace638e5e1fa9", + "x-ms-correlation-request-id": "882a65f9-6eca-4adb-9f48-9b3fea89bdab", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "94508ead-63ff-4d89-be63-8071e45f6a41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082823Z:882a65f9-6eca-4adb-9f48-9b3fea89bdab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e3c2a04d776992e69e99cc824e2e77d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cec3859d-d9d1-4d25-ac17-10922e45ebdc", + "x-ms-client-request-id": "9e3c2a04d776992e69e99cc824e2e77d", + "x-ms-correlation-request-id": "9b97882a-4428-4110-a66d-59ba5f06c857", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "5d6fb827-6534-4533-a024-c3c06ecb47ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082824Z:9b97882a-4428-4110-a66d-59ba5f06c857" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba1064bf41f026df98f04b3938c44817", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eea8fa2d-454a-4361-b34d-cb4930f8c7f7", + "x-ms-client-request-id": "ba1064bf41f026df98f04b3938c44817", + "x-ms-correlation-request-id": "69bb8da1-fc57-4221-be78-73c92574e42a", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "09290f24-8753-4a4a-8410-1a5c0f7c826d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082825Z:69bb8da1-fc57-4221-be78-73c92574e42a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5d8cd5ff6f673f2ee8bb43a191c17b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f62ba32-3809-4130-a803-2a02918fd5cb", + "x-ms-client-request-id": "c5d8cd5ff6f673f2ee8bb43a191c17b7", + "x-ms-correlation-request-id": "a4c5989a-3b3f-472c-bb2a-02be6502a140", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "6be019ca-91e7-44b2-b5f3-d6fe6175f10c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082826Z:a4c5989a-3b3f-472c-bb2a-02be6502a140" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29a45093644ec3b94b1505868cf460a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "07572259-b364-40ab-8d52-4c4db104c924", + "x-ms-client-request-id": "29a45093644ec3b94b1505868cf460a5", + "x-ms-correlation-request-id": "023addd8-21bf-4b44-99d3-35ce79f07ae6", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "0b198e2c-7be3-4603-8f99-d345f635ba68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082828Z:023addd8-21bf-4b44-99d3-35ce79f07ae6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "576984a02109c887729dcc648ca50c7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3cdfffbc-fce7-421c-bc6b-8137813a5341", + "x-ms-client-request-id": "576984a02109c887729dcc648ca50c7c", + "x-ms-correlation-request-id": "4cb89d53-b074-477d-9d68-e0158be38d5c", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "414b85e7-feaa-48c0-8441-d8c98bf19e8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082829Z:4cb89d53-b074-477d-9d68-e0158be38d5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8a693d81e1ffac914147ae0f16ce6fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "055be32e-7003-454a-99d4-d19234a86a2c", + "x-ms-client-request-id": "e8a693d81e1ffac914147ae0f16ce6fa", + "x-ms-correlation-request-id": "4b7965ae-39d8-43ad-a2e9-19d743484225", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "991636f6-7e65-4d51-aa0d-9e48e136426c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082830Z:4b7965ae-39d8-43ad-a2e9-19d743484225" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95990e2bc0b271adc8dcb7b0985536a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a436f46c-9436-4720-a942-374fce341fea", + "x-ms-client-request-id": "95990e2bc0b271adc8dcb7b0985536a6", + "x-ms-correlation-request-id": "f6ecb99a-3071-4034-9e0e-bfa016e7a858", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "bb0bcde0-30e4-429d-9260-1f1ba7e75486", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082831Z:f6ecb99a-3071-4034-9e0e-bfa016e7a858" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8ad8909784e8185bb6f43f5a7a7d705", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9ca85b2-c565-4118-8ed0-9bf0dd5573b0", + "x-ms-client-request-id": "f8ad8909784e8185bb6f43f5a7a7d705", + "x-ms-correlation-request-id": "101714ce-281b-4789-bfb4-7a02077acdcf", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "b0996d97-2ad1-4c61-ac99-f5314b4cdbbe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082833Z:101714ce-281b-4789-bfb4-7a02077acdcf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e39d1b6770b18c9e6341f43671861bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f5c1356-ac05-4215-93b2-e94d4c32613e", + "x-ms-client-request-id": "7e39d1b6770b18c9e6341f43671861bf", + "x-ms-correlation-request-id": "cb95efc1-3c36-4fbf-a9b2-c240d7cfec21", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "39bbba2a-8420-40b0-b1af-7d78d0c6fb86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082834Z:cb95efc1-3c36-4fbf-a9b2-c240d7cfec21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67d7d3deeebeb2ac8817da437db8c921", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d55b167-7080-4ec8-ac67-bbd592e381ec", + "x-ms-client-request-id": "67d7d3deeebeb2ac8817da437db8c921", + "x-ms-correlation-request-id": "49e3af60-e78f-4789-8670-fd06b4479977", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "b1c2ba89-7616-4a7b-8ef8-7f1a28fb7e13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082835Z:49e3af60-e78f-4789-8670-fd06b4479977" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6fab104b81b919abf95121959421aa2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "208ff86c-a121-4b57-9db3-db3dc2761131", + "x-ms-client-request-id": "c6fab104b81b919abf95121959421aa2", + "x-ms-correlation-request-id": "a6a3a0e8-f787-4079-9515-eb461bdd640e", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "1a0eeb6c-ef7e-4fed-8531-c51ee5734522", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082836Z:a6a3a0e8-f787-4079-9515-eb461bdd640e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d417840e6fd0c8472586f5f49d869b2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d001cc93-3cde-4f29-b1df-94784e1e3171", + "x-ms-client-request-id": "d417840e6fd0c8472586f5f49d869b2e", + "x-ms-correlation-request-id": "7cb453e2-0085-49a0-a2e4-c7445dc599b9", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "259f869b-2493-40d1-b82d-7a205e55b583", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082838Z:7cb453e2-0085-49a0-a2e4-c7445dc599b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b63efd6b9a1e25a33945a829dc925946", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee5a9803-cfe1-47f7-a11a-80a05c56b1da", + "x-ms-client-request-id": "b63efd6b9a1e25a33945a829dc925946", + "x-ms-correlation-request-id": "a0e6b3e3-c599-42d3-b07b-cc586e12b37f", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "fbeb71e4-b6af-4e43-8af7-a744cd434a8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082839Z:a0e6b3e3-c599-42d3-b07b-cc586e12b37f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f93537fdf5a195506a31a195c3a6f338", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "884aa25a-20c5-4f66-a986-fc4a9808eab4", + "x-ms-client-request-id": "f93537fdf5a195506a31a195c3a6f338", + "x-ms-correlation-request-id": "64e04b6d-6503-4e9e-bfb1-d182bde998d7", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "821bd019-fbcb-4550-bd55-737c1d0e278f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082840Z:64e04b6d-6503-4e9e-bfb1-d182bde998d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5baee3f964047384e0f19a8ac71dec92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c2e80cc6-e38a-45c4-9b1c-a19ffdb739fb", + "x-ms-client-request-id": "5baee3f964047384e0f19a8ac71dec92", + "x-ms-correlation-request-id": "e41b8366-1814-4fbc-b45d-259819d1d69f", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "9a3ed8f8-13f4-4f6b-8c11-2b45a976fa02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082842Z:e41b8366-1814-4fbc-b45d-259819d1d69f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65f6ae2da251758daca94becf90d6293", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6514b49-9cd3-4bec-9063-a41090702150", + "x-ms-client-request-id": "65f6ae2da251758daca94becf90d6293", + "x-ms-correlation-request-id": "af4b9a99-7014-47c1-a9d9-82f0337e5314", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "affd1d3a-57c5-4678-809c-f10d36251204", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082843Z:af4b9a99-7014-47c1-a9d9-82f0337e5314" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f82f6f51fde49941b3c118af5bc6cd4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61b1a137-dd7f-4b5a-ae10-709be4ad35c7", + "x-ms-client-request-id": "f82f6f51fde49941b3c118af5bc6cd4c", + "x-ms-correlation-request-id": "da63e4fb-5d08-4d8f-b2bf-ed06da42d6df", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "c6cc2fc0-d778-44a8-95ea-44db17b29f06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082844Z:da63e4fb-5d08-4d8f-b2bf-ed06da42d6df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14670e458daf57e75638af5b18977ad3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79a0e1dd-264d-4d30-a9a0-7bf68c865419", + "x-ms-client-request-id": "14670e458daf57e75638af5b18977ad3", + "x-ms-correlation-request-id": "8b583cc6-b746-4697-99e8-0e8aee252a89", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "8c9bce21-558f-4d64-b292-bf9c20764982", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082846Z:8b583cc6-b746-4697-99e8-0e8aee252a89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5738078ef3ed30ae6d5db29089dd1ae6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b62d3ec5-d26a-4b0e-bf64-4da679bb0408", + "x-ms-client-request-id": "5738078ef3ed30ae6d5db29089dd1ae6", + "x-ms-correlation-request-id": "0939087e-c956-415b-acaf-390d6523956e", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "ae76c77a-fb0b-4a51-9f32-26916ec831bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082847Z:0939087e-c956-415b-acaf-390d6523956e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eba6fedb4da5c4e388d8a2ac4de6801c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5db13ce4-d64b-44c4-8402-8c73b57169e4", + "x-ms-client-request-id": "eba6fedb4da5c4e388d8a2ac4de6801c", + "x-ms-correlation-request-id": "c0c839ad-790a-47ee-8612-b05c2d2c9706", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "e56eb7fd-a9cf-4bf3-894d-e880114810af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082848Z:c0c839ad-790a-47ee-8612-b05c2d2c9706" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53204547758d515e5f37a751db57cd78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6bdda2e-2bd7-4f50-93f4-d41c89accfe8", + "x-ms-client-request-id": "53204547758d515e5f37a751db57cd78", + "x-ms-correlation-request-id": "7d6eeeb5-85f3-4160-b121-b7e66a916fe6", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "b784f89d-322c-4cbe-a382-24219a73d76f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082849Z:7d6eeeb5-85f3-4160-b121-b7e66a916fe6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "197fc81e8ef0402d2374cf155102e286", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc9c16d4-4e4f-40aa-8072-df4f82c799d0", + "x-ms-client-request-id": "197fc81e8ef0402d2374cf155102e286", + "x-ms-correlation-request-id": "df783057-06f4-4b20-ad98-0c68969d8ecc", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "bbf669eb-b8ef-4370-91ef-553f5ae1a4b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082851Z:df783057-06f4-4b20-ad98-0c68969d8ecc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "444896dcc6bc6559a0548b6ea691e831", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16989501-fd1c-46a6-a18c-9e6e1829661e", + "x-ms-client-request-id": "444896dcc6bc6559a0548b6ea691e831", + "x-ms-correlation-request-id": "6f11ec22-f1b2-4e02-a245-c0b99dbe572b", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "42dc39e9-1db9-4451-a18b-61b66aeca1d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082852Z:6f11ec22-f1b2-4e02-a245-c0b99dbe572b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "858d290a6767b82b18df3018a648005d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4693738-860a-4a84-900f-b29785a7426c", + "x-ms-client-request-id": "858d290a6767b82b18df3018a648005d", + "x-ms-correlation-request-id": "2e62a183-1bf8-4326-a39b-2514ce893342", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "52df20a2-b32a-4711-b42f-e31a5a419c6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082853Z:2e62a183-1bf8-4326-a39b-2514ce893342" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45752155880e58bb6f19799b03bf9a91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f0621b6-916b-4005-83cc-b16fb79dd5b2", + "x-ms-client-request-id": "45752155880e58bb6f19799b03bf9a91", + "x-ms-correlation-request-id": "5589e343-433b-47a7-bca4-5a61988de9f8", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "4553ac5d-d028-4838-946f-39dea1f03180", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082854Z:5589e343-433b-47a7-bca4-5a61988de9f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "270b9e8c5d74751f6b8f2cdc9640bf57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63634cf8-4464-4f98-a8d6-b29c9e96b589", + "x-ms-client-request-id": "270b9e8c5d74751f6b8f2cdc9640bf57", + "x-ms-correlation-request-id": "65700bf5-961f-4564-8233-4567a35d3704", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "595d7d95-8f5c-4a0f-823c-c4aa6529bf67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082856Z:65700bf5-961f-4564-8233-4567a35d3704" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85182d54a31c81226e35154ded8fb559", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "474e0c5f-3a82-40f7-81ed-c0bae336b75e", + "x-ms-client-request-id": "85182d54a31c81226e35154ded8fb559", + "x-ms-correlation-request-id": "c1b27a14-5746-4052-b88e-266a6ec0c289", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "4a0033c5-bd44-4bdc-9a1a-69d02fe8cae5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082857Z:c1b27a14-5746-4052-b88e-266a6ec0c289" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "078c9e45d93df8e901ffda7e5cdec12f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:28:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04e96a09-264b-4b3a-8ea1-840b2bb63959", + "x-ms-client-request-id": "078c9e45d93df8e901ffda7e5cdec12f", + "x-ms-correlation-request-id": "c4a5be0e-143d-42cd-8e31-ea6a0fe4d0ca", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "bb3ea6e0-939f-4264-aab1-14ce1a37b000", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082858Z:c4a5be0e-143d-42cd-8e31-ea6a0fe4d0ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d547225a14a6e8757b89b93f47d287db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd0d6e3a-d45f-4037-86f2-d45c942d1242", + "x-ms-client-request-id": "d547225a14a6e8757b89b93f47d287db", + "x-ms-correlation-request-id": "33aeeef6-c509-4539-ad82-2d8d19f35608", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "7c88af52-941f-43cd-9d5d-2f7103c7f4ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082900Z:33aeeef6-c509-4539-ad82-2d8d19f35608" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f897d3dab7b47b194420831cc9a4258f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c19ed8ac-6163-4a4f-a34d-e9a8f1014b9a", + "x-ms-client-request-id": "f897d3dab7b47b194420831cc9a4258f", + "x-ms-correlation-request-id": "ce211d1c-84ea-421f-86ec-123310fb4e0f", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "06861381-dd74-4301-b616-236516f911b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082901Z:ce211d1c-84ea-421f-86ec-123310fb4e0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbf2e673df4730b228a38bb420aab02f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa288a2a-ac4f-4606-85b8-cf4d8e213b4a", + "x-ms-client-request-id": "cbf2e673df4730b228a38bb420aab02f", + "x-ms-correlation-request-id": "4745d2b8-00da-4703-9e17-3e1b34952581", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "6f444d5a-f2fd-490d-b84f-5145f6d33d57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082902Z:4745d2b8-00da-4703-9e17-3e1b34952581" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88a4fe78c947a27b08cc918691581fd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f64adac8-06f2-4d38-80f9-5b3f36bd3cd3", + "x-ms-client-request-id": "88a4fe78c947a27b08cc918691581fd7", + "x-ms-correlation-request-id": "9fb7dd8f-2160-4be2-bac9-170b60c6e54c", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "483169d5-f7f4-486c-ae03-6e66ccbb5a82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082903Z:9fb7dd8f-2160-4be2-bac9-170b60c6e54c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61cb2963bbdffa942166cf102c645b9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2eea0e1b-ff6b-4edf-84b8-1fa8ff12f3cf", + "x-ms-client-request-id": "61cb2963bbdffa942166cf102c645b9a", + "x-ms-correlation-request-id": "acf59567-2da6-4f1a-88d5-f93769ffd73e", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "fa7af311-f417-4f2f-a56e-b45badbe4a8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082905Z:acf59567-2da6-4f1a-88d5-f93769ffd73e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "caa4536f9c00aa476a4fc37b4e2b9fd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d211884-b010-4983-8008-c37357da90b2", + "x-ms-client-request-id": "caa4536f9c00aa476a4fc37b4e2b9fd0", + "x-ms-correlation-request-id": "c8c04a81-126a-42ed-a059-e272f548b3a3", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "2425cf18-fe47-431f-b7cb-c965acf9276d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082906Z:c8c04a81-126a-42ed-a059-e272f548b3a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f650b3844edebc506aa967e0fa6b76a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1548f976-7934-4158-ae3d-0f08e875c818", + "x-ms-client-request-id": "f650b3844edebc506aa967e0fa6b76a3", + "x-ms-correlation-request-id": "d41759ad-b0cf-4b12-9716-995050b5cf42", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "966f7d67-d971-4c3d-81ac-ac231c814a94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082907Z:d41759ad-b0cf-4b12-9716-995050b5cf42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d17f77154b4c7d7e221f68ff819acf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b646c2d-d6e8-4593-8c90-3464e3f74eb1", + "x-ms-client-request-id": "3d17f77154b4c7d7e221f68ff819acf5", + "x-ms-correlation-request-id": "cafc94bc-39bb-4044-a1a5-9b035fb0d9fe", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "a9d432f1-e1ff-49b4-b92a-9ddec8b07f02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082908Z:cafc94bc-39bb-4044-a1a5-9b035fb0d9fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "788bffc7651420bb03e860563566afff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0528429-f884-432f-87c4-869fc87faa38", + "x-ms-client-request-id": "788bffc7651420bb03e860563566afff", + "x-ms-correlation-request-id": "efd5d8d7-63aa-48dc-9465-6087be8ad4e9", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "0f68e6f3-6fa6-4d04-a6c1-ef35b59acf5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082910Z:efd5d8d7-63aa-48dc-9465-6087be8ad4e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57091fd96114301bdb8913bd57c1c351", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "551be5aa-9228-4037-96d4-49f1f7ece2c0", + "x-ms-client-request-id": "57091fd96114301bdb8913bd57c1c351", + "x-ms-correlation-request-id": "a8f4c948-473e-46c0-912b-c1f78e199a89", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "8b0ccc8c-8abd-4a82-8418-d02471cd55a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082911Z:a8f4c948-473e-46c0-912b-c1f78e199a89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa1872fcfedf0c8f3bf63acbf381927b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b89ff3d-740b-4c7a-805a-d935d1fcc684", + "x-ms-client-request-id": "fa1872fcfedf0c8f3bf63acbf381927b", + "x-ms-correlation-request-id": "001a5303-913a-4b69-ab26-d073068430cb", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "44bf4cd2-4be3-4bf1-a0f4-cf0f4bfda68f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082912Z:001a5303-913a-4b69-ab26-d073068430cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9b6f671540f66e0e35b9c8a51fec841", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "455effc2-caec-4165-89b7-98471ea7241d", + "x-ms-client-request-id": "d9b6f671540f66e0e35b9c8a51fec841", + "x-ms-correlation-request-id": "70cedb4b-3221-44f5-be71-8c9b6e4aeb1d", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "99322d6c-8488-4ed6-9a93-fc27814bffc2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082914Z:70cedb4b-3221-44f5-be71-8c9b6e4aeb1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2590f24b44ddb208ffd1c1e26503c5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46e56ae9-071d-464e-805d-4468cf19c017", + "x-ms-client-request-id": "c2590f24b44ddb208ffd1c1e26503c5a", + "x-ms-correlation-request-id": "d48e5588-064b-412a-95ab-6a877f772b32", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "b2f332a0-27a5-4c04-acb6-8847437dd407", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082915Z:d48e5588-064b-412a-95ab-6a877f772b32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "614b98f7ea0ba84192b217846104bb3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a2a45c1-6555-434d-9087-17a6d9842aad", + "x-ms-client-request-id": "614b98f7ea0ba84192b217846104bb3c", + "x-ms-correlation-request-id": "2d6b6cf1-67a0-452b-9849-121e9f5edf39", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "1010b5a6-b277-42b5-b61d-696345d54671", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082916Z:2d6b6cf1-67a0-452b-9849-121e9f5edf39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4a7f82dcf27bc2dd6db491138c14093", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aba4f9da-95d6-4cd2-8533-b05b7dbaf5f6", + "x-ms-client-request-id": "e4a7f82dcf27bc2dd6db491138c14093", + "x-ms-correlation-request-id": "6dfe2ad7-d983-41ac-a226-8a8b2dd53c44", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "166fa9f7-6347-4ee3-a2c8-cc641531f0d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082917Z:6dfe2ad7-d983-41ac-a226-8a8b2dd53c44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b993411f67b33a36cdb1309b9d9c798a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "688d02fa-7559-47bf-9605-23784d42acc7", + "x-ms-client-request-id": "b993411f67b33a36cdb1309b9d9c798a", + "x-ms-correlation-request-id": "b6e06c0e-f191-47f0-a405-324eeaad0549", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "a05f3b2c-f340-48e0-9e73-922e6824fd05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082919Z:b6e06c0e-f191-47f0-a405-324eeaad0549" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2df1df4258a828336a8e8a2fa02f6fd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf2d4ee3-74ff-47ff-a1f8-ab7257c5ca98", + "x-ms-client-request-id": "2df1df4258a828336a8e8a2fa02f6fd0", + "x-ms-correlation-request-id": "d9f4e172-b732-4619-a54f-6b66e6d6c6f4", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "bdd2248d-a610-4327-9b9d-6c02442fc024", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082920Z:d9f4e172-b732-4619-a54f-6b66e6d6c6f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "206584720171c589c16c16759e921f3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b29afc13-97d0-45cf-90d8-2c3a32153ca8", + "x-ms-client-request-id": "206584720171c589c16c16759e921f3a", + "x-ms-correlation-request-id": "9c1775d0-35ca-4f4a-b681-01fa5abae333", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "9b08be04-13cb-4199-a4bb-55ee7667876e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082921Z:9c1775d0-35ca-4f4a-b681-01fa5abae333" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58cfbf6112d0c6ea0e6b4e24dc069a9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1db97ed8-88c1-45c5-b2fb-e1b257e6c49f", + "x-ms-client-request-id": "58cfbf6112d0c6ea0e6b4e24dc069a9e", + "x-ms-correlation-request-id": "033aeea6-706d-4aba-9573-9cc60f60b8c9", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "98a44602-5324-445a-b75d-1c83995113b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082923Z:033aeea6-706d-4aba-9573-9cc60f60b8c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1829604258364019562b6b3b42bd89d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38061b64-edd4-4095-82c8-759ed9518d21", + "x-ms-client-request-id": "1829604258364019562b6b3b42bd89d8", + "x-ms-correlation-request-id": "151c2b81-6f78-4040-a7ad-30d92530669e", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "a0d9a52f-2181-4b87-adb1-ae67fd448710", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082924Z:151c2b81-6f78-4040-a7ad-30d92530669e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1ce506f16605fff999e1206b364e8ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b2c2e2c-56d7-437c-88ec-cec83345db46", + "x-ms-client-request-id": "e1ce506f16605fff999e1206b364e8ba", + "x-ms-correlation-request-id": "0174195e-fe0e-4fe1-95a4-3c9fa3d4046f", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "3e26180b-a0c0-4e54-b18b-febdd52bf9e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082925Z:0174195e-fe0e-4fe1-95a4-3c9fa3d4046f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e3378d206680803a58e02a5a6ae8450", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "202c6e6f-3063-424d-863d-0cd62d181cbf", + "x-ms-client-request-id": "3e3378d206680803a58e02a5a6ae8450", + "x-ms-correlation-request-id": "477f419b-7712-425f-bec8-bdae2b3d0f25", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "733dd197-7a0f-4867-91c3-63255b9ca526", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082927Z:477f419b-7712-425f-bec8-bdae2b3d0f25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cb576e1b9382c3d61c97e9846128df2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d29a427c-960c-4807-91a3-ef928b0dea1f", + "x-ms-client-request-id": "8cb576e1b9382c3d61c97e9846128df2", + "x-ms-correlation-request-id": "e2d8d2e4-e55a-4391-9cb7-ed70cdffa8ed", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "a13e36c1-2bf8-48b2-a65a-205ef59685d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082928Z:e2d8d2e4-e55a-4391-9cb7-ed70cdffa8ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c969b1424b8a686f4cc53bd11459b8eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d8d778f-6a79-4d52-979d-6ed03eb812c1", + "x-ms-client-request-id": "c969b1424b8a686f4cc53bd11459b8eb", + "x-ms-correlation-request-id": "507b7e7c-d472-467f-ada5-dfe3478328c4", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "0e1dfe29-397e-4192-8ffc-881c27ed4e73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082929Z:507b7e7c-d472-467f-ada5-dfe3478328c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c24c1195cae19823a06dc9e886ac292", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f38afea4-bd54-4b27-a4f2-f3416e54d577", + "x-ms-client-request-id": "3c24c1195cae19823a06dc9e886ac292", + "x-ms-correlation-request-id": "fdabc1eb-047d-4575-b0a9-35a7ce3a2741", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "72fd4465-ed9e-49be-ada3-e1bb06d51a42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082931Z:fdabc1eb-047d-4575-b0a9-35a7ce3a2741" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5630f01ba4596c5074d3f737d6b1808", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d0b2a8d-3cba-4bca-af7e-cdd8464a85a7", + "x-ms-client-request-id": "f5630f01ba4596c5074d3f737d6b1808", + "x-ms-correlation-request-id": "f8087536-e8ef-43ec-9dea-6b903e67a70d", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "5f705534-9cb6-4e11-82ff-52e264ce3c2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082932Z:f8087536-e8ef-43ec-9dea-6b903e67a70d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "847e931150eee5432f508f836ed0e0e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a55d2806-5a8d-437f-b8ae-84e459d4e9f7", + "x-ms-client-request-id": "847e931150eee5432f508f836ed0e0e2", + "x-ms-correlation-request-id": "783dde7e-eb69-481d-8ec9-eb5dc85b2a6b", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "9f122d00-9e72-4e3c-8fc2-9c69025d0578", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082933Z:783dde7e-eb69-481d-8ec9-eb5dc85b2a6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04d0a803c3f55ea5fc8e35611c0e9bce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "610ae39d-88c6-4d1d-86ec-a28e976c8e58", + "x-ms-client-request-id": "04d0a803c3f55ea5fc8e35611c0e9bce", + "x-ms-correlation-request-id": "557317de-9660-4604-b1aa-d5d0abf14f47", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "104537af-a8af-4f02-b27f-eaacfd13628d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082935Z:557317de-9660-4604-b1aa-d5d0abf14f47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f48dd4ee3decb0a4cc7dc6f52b412736", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f38deacb-ca85-42b7-ab66-f8b6a4687b5e", + "x-ms-client-request-id": "f48dd4ee3decb0a4cc7dc6f52b412736", + "x-ms-correlation-request-id": "fcd88192-7e62-4214-8d3b-ec24cb3e2c29", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "b605a89e-0df4-40f0-8e37-ef4a16f4e43f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082936Z:fcd88192-7e62-4214-8d3b-ec24cb3e2c29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d56f5d6d139b4d12ed1f885f1be1c820", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0838f96-48cf-4d41-afb9-75a92b9e2970", + "x-ms-client-request-id": "d56f5d6d139b4d12ed1f885f1be1c820", + "x-ms-correlation-request-id": "a787b50c-3eb2-4b91-bd41-c4dbe73eaa03", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "466521fd-8df2-4866-8319-a4a67df30173", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082937Z:a787b50c-3eb2-4b91-bd41-c4dbe73eaa03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a94c1b4eb42c6f5031f3777fcb033ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f5b540e-9507-4b8b-85e7-d0374bd4c983", + "x-ms-client-request-id": "9a94c1b4eb42c6f5031f3777fcb033ba", + "x-ms-correlation-request-id": "d25d6ce7-b394-447c-908d-28759c43f4ff", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "ed61c7ba-6d58-4a3f-a0d7-0ec10507f9f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082938Z:d25d6ce7-b394-447c-908d-28759c43f4ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bff4fe66c59eda32c23f06ccb44495ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6f88ff0-c40c-4f83-8d22-e0c43dfcbcfb", + "x-ms-client-request-id": "bff4fe66c59eda32c23f06ccb44495ea", + "x-ms-correlation-request-id": "54bdd58a-f9c5-4469-a738-7de922f05678", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "60c25010-3537-4a07-a023-408bde01299c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082940Z:54bdd58a-f9c5-4469-a738-7de922f05678" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a40a6b58dac81f467a9d17cdc9a503d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2dff8381-151e-4522-a8ca-e2e847541e6e", + "x-ms-client-request-id": "6a40a6b58dac81f467a9d17cdc9a503d", + "x-ms-correlation-request-id": "3b1bccf9-c595-40e2-b83d-473e9d039025", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "6454ad79-c67e-4bc2-b622-c68f70f3e9be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082941Z:3b1bccf9-c595-40e2-b83d-473e9d039025" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cf9ceec09edee818ebad702e52911be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8b91e55-855b-4b40-8244-45de778ce992", + "x-ms-client-request-id": "1cf9ceec09edee818ebad702e52911be", + "x-ms-correlation-request-id": "165997a3-f147-4410-b69f-0387dbbbb3b4", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "ba9237cf-f173-4e3e-9a28-92dc9a3579b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082942Z:165997a3-f147-4410-b69f-0387dbbbb3b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56c24c89c96fd90d0a7257f5f4b5fe27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c96ef8ea-0c92-46cd-a071-f3ca253147cf", + "x-ms-client-request-id": "56c24c89c96fd90d0a7257f5f4b5fe27", + "x-ms-correlation-request-id": "575c3635-e43b-4cd3-8adc-7a94057dc6ac", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "6f66ee51-06d5-4747-aed8-671a16861dbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082943Z:575c3635-e43b-4cd3-8adc-7a94057dc6ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6dfc8ee794babfd2451dbf2b5f19c3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf9f668a-a2aa-4c93-bc7b-c31159723857", + "x-ms-client-request-id": "e6dfc8ee794babfd2451dbf2b5f19c3d", + "x-ms-correlation-request-id": "854dbbec-d0fe-4e9a-b5e9-7b2fe8d4ffc7", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "9e575d7d-4556-4a5c-9fbf-2abc5fb2c68b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082945Z:854dbbec-d0fe-4e9a-b5e9-7b2fe8d4ffc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ff31297fad722cec01f117ab18cfad8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20971a8e-15d3-4526-b380-f85604c81b7a", + "x-ms-client-request-id": "8ff31297fad722cec01f117ab18cfad8", + "x-ms-correlation-request-id": "27dea6d9-ed26-4033-b603-2ce5a0b30207", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "ea12ae7a-cc2b-4e3e-827b-6f19482dc073", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082946Z:27dea6d9-ed26-4033-b603-2ce5a0b30207" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c13b0bb2b4910734f16321ded1a2319", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9ffefd6-326c-4e5e-8a4e-3af66e62d064", + "x-ms-client-request-id": "1c13b0bb2b4910734f16321ded1a2319", + "x-ms-correlation-request-id": "85b312bf-2851-4140-93bf-46679c648992", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "9a87aa9a-8165-4b9b-b4ca-e3d3753ba609", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082947Z:85b312bf-2851-4140-93bf-46679c648992" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e15d19d66ec2f44ffabc252b6783f997", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5dbb8ee-7869-4741-bca5-51141b4aa91b", + "x-ms-client-request-id": "e15d19d66ec2f44ffabc252b6783f997", + "x-ms-correlation-request-id": "848abeff-87af-4b0a-a3ab-408fc5d47ee3", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "962cb04c-68d6-479b-b488-0fb65b1c72a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082949Z:848abeff-87af-4b0a-a3ab-408fc5d47ee3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0537035780dd6cf39fe340c0c7b035a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ef9b16e-8aa8-49c0-a962-2753cbb3f110", + "x-ms-client-request-id": "0537035780dd6cf39fe340c0c7b035a5", + "x-ms-correlation-request-id": "e55c62c1-44f4-49f7-adb4-c2478af7b590", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "3abe4a26-8d75-49ab-a883-5df0512875c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082950Z:e55c62c1-44f4-49f7-adb4-c2478af7b590" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97a3f8fc192f4c15601e218d0547a8cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e9b9550-b4a2-45ce-b34f-e2b3b5cd6737", + "x-ms-client-request-id": "97a3f8fc192f4c15601e218d0547a8cb", + "x-ms-correlation-request-id": "75a5ecb8-da79-4385-afc0-ad03e11e2a4f", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "17b63504-60fa-4255-9d28-6639e15738a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082951Z:75a5ecb8-da79-4385-afc0-ad03e11e2a4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eac69b1d1de3553b25f141df2e8e2d4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ebc79b3-32e9-44a8-bf7f-f9f2f6c15057", + "x-ms-client-request-id": "eac69b1d1de3553b25f141df2e8e2d4a", + "x-ms-correlation-request-id": "26d0e3f1-61d9-41ab-97dc-b261efa7e3c9", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "126aec90-1b05-48ec-a368-166c1462cd5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082952Z:26d0e3f1-61d9-41ab-97dc-b261efa7e3c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e2f7f8761df3e68edeaa5be5f666658", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9fe7a29b-1cdd-4a4c-998a-191b46e469db", + "x-ms-client-request-id": "6e2f7f8761df3e68edeaa5be5f666658", + "x-ms-correlation-request-id": "7506f15e-6565-4e04-8549-f54f91832f15", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "434a53a9-a445-422d-b661-edb5ac93a489", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082954Z:7506f15e-6565-4e04-8549-f54f91832f15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ca3753a4aeadec2bd4d713ed7361ed1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "414b32e3-77ac-4c74-b29b-cd075cac10a5", + "x-ms-client-request-id": "2ca3753a4aeadec2bd4d713ed7361ed1", + "x-ms-correlation-request-id": "8b188666-9534-475e-9913-7d4ef234bc43", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "cc5e1d36-df53-4421-815b-85549d5b796e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082955Z:8b188666-9534-475e-9913-7d4ef234bc43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8605d7f13a17bbeb3288fdf8787cf6bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c3ffc8c-08ee-447e-926c-efbbc2bb0c47", + "x-ms-client-request-id": "8605d7f13a17bbeb3288fdf8787cf6bf", + "x-ms-correlation-request-id": "11ed8b41-b6c6-40fc-8115-cdb8982e2b97", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "5c1543c0-4238-4cf2-a321-ef2c8b4ea990", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082956Z:11ed8b41-b6c6-40fc-8115-cdb8982e2b97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9a5e98a00ea3d60bd51b191f02966b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ae042af-23da-45e3-ab0a-8e5ad2673575", + "x-ms-client-request-id": "b9a5e98a00ea3d60bd51b191f02966b6", + "x-ms-correlation-request-id": "6b1366c3-b48d-44ad-bf20-3d3821976a6f", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "249711c1-5539-49f8-8108-6ef0dbd4e5d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082957Z:6b1366c3-b48d-44ad-bf20-3d3821976a6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88cdd3cce061004089e8f9624dc96541", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:29:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f191adcc-ed91-4904-8310-89d843ee95d1", + "x-ms-client-request-id": "88cdd3cce061004089e8f9624dc96541", + "x-ms-correlation-request-id": "da9c4348-13ce-43cf-b244-aedcfc296a23", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "720475ad-25b1-4d89-8b29-2347721a4223", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T082959Z:da9c4348-13ce-43cf-b244-aedcfc296a23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eeb3b2566591f1e676c8c9c68959cb09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d3da9c3-571f-44c9-987b-30f69fa65d9a", + "x-ms-client-request-id": "eeb3b2566591f1e676c8c9c68959cb09", + "x-ms-correlation-request-id": "66bb3913-7c6b-4bdf-a268-09bed0e42140", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "41eaac43-1c5a-4a75-9478-778cb8d39b2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083000Z:66bb3913-7c6b-4bdf-a268-09bed0e42140" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a52c46216eafaa5da8a5300206fdeff3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9587f1d6-c33e-4490-929b-6a37c76df4ad", + "x-ms-client-request-id": "a52c46216eafaa5da8a5300206fdeff3", + "x-ms-correlation-request-id": "b22fbc9b-bad0-4346-bb31-6a69e797cb3a", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "c64a8c8f-01fb-4159-a6fd-93252f9d5b5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083001Z:b22fbc9b-bad0-4346-bb31-6a69e797cb3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d3a6feb78756625ecdc1199167a772f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff609e15-b0aa-4179-a5d3-e68b2177983e", + "x-ms-client-request-id": "3d3a6feb78756625ecdc1199167a772f", + "x-ms-correlation-request-id": "84846607-7901-447a-a186-6d52861d705c", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "7f544ec5-bf57-4320-abdf-9922912f17e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083003Z:84846607-7901-447a-a186-6d52861d705c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0640f01dc09ce892550945ec35e4ea79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bac60fe-953b-4510-9127-2e71ccd46efa", + "x-ms-client-request-id": "0640f01dc09ce892550945ec35e4ea79", + "x-ms-correlation-request-id": "f835ff28-dff8-45c0-b4cc-d3333f2b7f10", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "fcddbe4b-bae6-4c93-90c9-b375c0afe7ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083004Z:f835ff28-dff8-45c0-b4cc-d3333f2b7f10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19dbd5d88d1ea89320c5b8d25dc4932e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28dbad9e-b5c6-4b17-995e-51cedafce504", + "x-ms-client-request-id": "19dbd5d88d1ea89320c5b8d25dc4932e", + "x-ms-correlation-request-id": "bf94dd51-bf2a-4fee-bd94-e5f8390f27d8", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "dd9b365d-0134-4e79-841f-28c6cf69de94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083006Z:bf94dd51-bf2a-4fee-bd94-e5f8390f27d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16e4002de9bd2b56dd52e86c32393107", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d34f931e-5fd9-452c-92be-b2d8f8325598", + "x-ms-client-request-id": "16e4002de9bd2b56dd52e86c32393107", + "x-ms-correlation-request-id": "347a524a-dd47-459d-b30a-bdc07d6c8f65", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "e3b1ab66-be5e-44a4-96a2-4834ed2e493b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083007Z:347a524a-dd47-459d-b30a-bdc07d6c8f65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41c098f25e9e8f105c97e5d607bf8a90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05113708-2e38-4549-900a-93b5d8a8814e", + "x-ms-client-request-id": "41c098f25e9e8f105c97e5d607bf8a90", + "x-ms-correlation-request-id": "2b72cf59-5467-4b77-bd82-014afb3b01f3", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "ad674838-4756-4264-b214-5803f8457a49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083008Z:2b72cf59-5467-4b77-bd82-014afb3b01f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34be1775d300efbc7eb03bcca52676e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2fd87d31-5dfe-4610-8bd4-77ac6037ec64", + "x-ms-client-request-id": "34be1775d300efbc7eb03bcca52676e7", + "x-ms-correlation-request-id": "e6172631-28dd-4d3c-bac5-f9e7d3e39f39", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "11dd271e-7e3c-4195-9bde-7b3be5abd500", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083009Z:e6172631-28dd-4d3c-bac5-f9e7d3e39f39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5e0b0945204cf8ff054ba25037f231e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10c2c774-e66b-406d-ab23-7ca4fd5e7e1c", + "x-ms-client-request-id": "c5e0b0945204cf8ff054ba25037f231e", + "x-ms-correlation-request-id": "59db4569-b9a3-4ca0-a625-a63affd5e9fa", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "100b09df-c31f-4b45-bbec-e9e6f397ff3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083011Z:59db4569-b9a3-4ca0-a625-a63affd5e9fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bf757c8fd7b1e07dbd1c2ee2244e935", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b8ed4ff-1132-4d2b-9831-a27f69cb45bd", + "x-ms-client-request-id": "1bf757c8fd7b1e07dbd1c2ee2244e935", + "x-ms-correlation-request-id": "8f7599b3-cb94-42c8-89c6-59e57df78ccc", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "98a5fee2-4b72-46a8-883d-dff04f7360c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083012Z:8f7599b3-cb94-42c8-89c6-59e57df78ccc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5642fe21c4de228c87ee43ab1996ebfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6f0ea11-711f-4646-9729-d2ad9673e2df", + "x-ms-client-request-id": "5642fe21c4de228c87ee43ab1996ebfe", + "x-ms-correlation-request-id": "4c072657-613e-4868-89b2-d29a0df41c01", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "238a3933-2c22-41b8-a88d-df545d15f339", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083014Z:4c072657-613e-4868-89b2-d29a0df41c01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e031c8c5a2f966ca9c1e9328fa0acac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f12294f1-4349-48f1-9331-c9ff47aa8afc", + "x-ms-client-request-id": "4e031c8c5a2f966ca9c1e9328fa0acac", + "x-ms-correlation-request-id": "6aefd17d-4cbd-416b-83c9-3aba9f559b75", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "86c34b19-2e69-49b6-864a-01df223e6960", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083016Z:6aefd17d-4cbd-416b-83c9-3aba9f559b75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0503846acd3d033fcbd4938cba5c0545", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "050e1913-63ed-426d-bafb-8392c3045b80", + "x-ms-client-request-id": "0503846acd3d033fcbd4938cba5c0545", + "x-ms-correlation-request-id": "76af362b-609a-4e04-a54c-8634f32cd2f8", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "564efbc2-0d25-45b2-8790-432dc7d6ba80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083017Z:76af362b-609a-4e04-a54c-8634f32cd2f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0662c3e59b40c70692acad1ddb5993e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "982ada6f-2f78-41c0-b74b-baf74f78f281", + "x-ms-client-request-id": "0662c3e59b40c70692acad1ddb5993e7", + "x-ms-correlation-request-id": "96da0316-9b1e-4fe5-a85d-932f5b0941b4", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "bece8876-0f73-4611-937e-6bc4dfcb1e2c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083018Z:96da0316-9b1e-4fe5-a85d-932f5b0941b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95409641e593bfc1dc00825ac6dfdc4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a86c592e-2803-472e-9bd5-33d60d232233", + "x-ms-client-request-id": "95409641e593bfc1dc00825ac6dfdc4c", + "x-ms-correlation-request-id": "e32eebfa-f17b-460f-bf9a-12a3eb1e12e1", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "51042923-946c-43ed-a1de-e054106a3844", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083019Z:e32eebfa-f17b-460f-bf9a-12a3eb1e12e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb4ca4bca63ecf6c7d3b739020222872", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c96e0cf-124d-47dc-80ec-6b69e06cc0fb", + "x-ms-client-request-id": "cb4ca4bca63ecf6c7d3b739020222872", + "x-ms-correlation-request-id": "32234881-5142-4b55-9c7b-a88127abcdea", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "fdf21f94-02a9-44b4-b51e-5790eddbc915", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083021Z:32234881-5142-4b55-9c7b-a88127abcdea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "234bac41701c00b102a3294018ab00b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81c0e9ac-d98a-42f0-bdb7-42890f74b380", + "x-ms-client-request-id": "234bac41701c00b102a3294018ab00b2", + "x-ms-correlation-request-id": "0937d9f2-765e-4960-a211-31e47378ab51", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "44273c92-6ea8-468e-a73a-8911817eae2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083022Z:0937d9f2-765e-4960-a211-31e47378ab51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "366060d0c70c9ba82a71175772319eb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5118c19a-07b5-44d4-85ac-07176511a570", + "x-ms-client-request-id": "366060d0c70c9ba82a71175772319eb9", + "x-ms-correlation-request-id": "b8899f9a-d969-4b3e-9937-e68f0abc87bd", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "bfeb248f-4d8f-419f-b616-2434be9c0a5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083023Z:b8899f9a-d969-4b3e-9937-e68f0abc87bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a1910d7b9944b30f34cc99b7c2cb6d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c758b88e-d8f0-4526-8941-a126d58a2e6e", + "x-ms-client-request-id": "1a1910d7b9944b30f34cc99b7c2cb6d1", + "x-ms-correlation-request-id": "6044096e-3723-4a96-8944-9915f18528ee", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "66192928-da8e-4201-8dd2-2db45f4a023e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083024Z:6044096e-3723-4a96-8944-9915f18528ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0c0c03bf1c1796504aff8aa58598ed1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c184e9e-fb8d-41d8-bde1-e03099205fae", + "x-ms-client-request-id": "c0c0c03bf1c1796504aff8aa58598ed1", + "x-ms-correlation-request-id": "9bef5293-9ebf-4b89-8758-df1e04bf73a0", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "02d62e8b-2d97-4e48-8797-bfac9b9f389d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083026Z:9bef5293-9ebf-4b89-8758-df1e04bf73a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08687004e692161e2f1543bffd0d1efe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93ed05e5-0152-4fe8-b2d1-a3cc1c9b40c0", + "x-ms-client-request-id": "08687004e692161e2f1543bffd0d1efe", + "x-ms-correlation-request-id": "21b3a8ea-4857-4b03-94b9-6f2fb886610b", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "442ef4d4-f27b-4783-8dba-13af98fcb558", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083027Z:21b3a8ea-4857-4b03-94b9-6f2fb886610b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b11c46bade70e6f7aa9f16e4c085f399", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23b7afa5-ac5a-4922-8f02-8e9be0477c45", + "x-ms-client-request-id": "b11c46bade70e6f7aa9f16e4c085f399", + "x-ms-correlation-request-id": "ac1efc62-4c6b-4e15-99fc-d6c18dae3adc", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "7d294c63-4de4-4a3a-875f-905fe6e3e991", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083028Z:ac1efc62-4c6b-4e15-99fc-d6c18dae3adc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c97f8beaec4553ea1a990acaea67bf6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6f3f969-d831-4aa9-bd48-8e3d30df9de7", + "x-ms-client-request-id": "0c97f8beaec4553ea1a990acaea67bf6", + "x-ms-correlation-request-id": "3831de7e-a7a0-4e73-81b5-87db6de1b1d3", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "50cf2290-0150-4d0f-b379-daf361ef3b74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083030Z:3831de7e-a7a0-4e73-81b5-87db6de1b1d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12f0f991dc3d256078815df2d03a56a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "894022e3-4a9e-4d73-8b2c-bee9157bcfc4", + "x-ms-client-request-id": "12f0f991dc3d256078815df2d03a56a9", + "x-ms-correlation-request-id": "d77192f6-8188-4d5e-902d-723e487d99c2", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "ee852e38-c89b-4304-a79b-7f593db8b8db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083031Z:d77192f6-8188-4d5e-902d-723e487d99c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0500a92211760c3a07c60fc74e4b3704", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "035041d1-6b13-4009-9a48-9e10ccafe04b", + "x-ms-client-request-id": "0500a92211760c3a07c60fc74e4b3704", + "x-ms-correlation-request-id": "14e8cc5f-a192-4caa-91d4-955998122f01", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "83cefee8-1122-4df2-93c8-b44ac3dc3e03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083032Z:14e8cc5f-a192-4caa-91d4-955998122f01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6521f23e195e25c97719442504c8566", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53c53c65-e3d4-4db1-895a-c81b56d30df5", + "x-ms-client-request-id": "c6521f23e195e25c97719442504c8566", + "x-ms-correlation-request-id": "6d60bb28-9d17-46fd-b1eb-ad8eae4723ef", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "b0947ef2-dcdc-4857-b4e2-adb13dbb4d86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083033Z:6d60bb28-9d17-46fd-b1eb-ad8eae4723ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "048ae75376a57f80bfe30a76cc99d72d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d5dda0f-8a59-4fe2-b426-345b11f8bf83", + "x-ms-client-request-id": "048ae75376a57f80bfe30a76cc99d72d", + "x-ms-correlation-request-id": "1c697bbc-a1fd-45bb-bb2f-1728afd32a65", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "db129e63-0b86-4826-a26c-5f8726c510d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083035Z:1c697bbc-a1fd-45bb-bb2f-1728afd32a65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1ce584a8fe841134d1e6d047df8bbbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f345d4a-a80d-450b-846b-dd8cdd5db82c", + "x-ms-client-request-id": "b1ce584a8fe841134d1e6d047df8bbbb", + "x-ms-correlation-request-id": "9cf0c8fc-6df0-407f-b75d-642a0565ad9d", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "e0d81703-9a42-45e5-8ebe-0be23d019313", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083036Z:9cf0c8fc-6df0-407f-b75d-642a0565ad9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6673a94133c0ad5f9ed207b1d6e515fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9ee2a48-b7fa-4546-b586-2ac54072f5a4", + "x-ms-client-request-id": "6673a94133c0ad5f9ed207b1d6e515fe", + "x-ms-correlation-request-id": "5d18e5cc-6508-4564-9e8b-4943d1fdba39", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "3a3d2ecf-939e-401b-bbf4-6aabfb07e815", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083037Z:5d18e5cc-6508-4564-9e8b-4943d1fdba39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8f8679ad37dc37ed349b786087c02c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea23226f-215c-45df-8e5a-212a23173483", + "x-ms-client-request-id": "f8f8679ad37dc37ed349b786087c02c7", + "x-ms-correlation-request-id": "9e1f94a2-dbd9-4f58-853f-6636431c4f3c", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "da30c65c-8423-42b5-9455-4b7e61bd8111", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083039Z:9e1f94a2-dbd9-4f58-853f-6636431c4f3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23344f277025166cf921121588616a67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f617dc1-2bc2-4d30-a715-3e3a11d27157", + "x-ms-client-request-id": "23344f277025166cf921121588616a67", + "x-ms-correlation-request-id": "0e4bed33-bc97-4fc7-9960-8fcedfaa609b", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "22631cd3-2df5-493f-86fd-2a271c2a6010", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083040Z:0e4bed33-bc97-4fc7-9960-8fcedfaa609b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16696f08c3006d3e2aaf92777bd8a521", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3bded378-9227-4671-8d68-0d8b267ce51c", + "x-ms-client-request-id": "16696f08c3006d3e2aaf92777bd8a521", + "x-ms-correlation-request-id": "2fe10277-aa1a-4a66-aa50-2e8f95183397", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "0f9dbdfb-0a5d-43ae-927b-fea289e1a1d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083041Z:2fe10277-aa1a-4a66-aa50-2e8f95183397" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "878a3fd0f2b129d8fae1ff5bc0683b72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56b48ac9-bcd4-462f-9cf3-fff0e194bfd6", + "x-ms-client-request-id": "878a3fd0f2b129d8fae1ff5bc0683b72", + "x-ms-correlation-request-id": "dfc870ab-779e-4bf4-afd8-3620be8691a4", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "9c066911-ac8e-4e24-84c0-ad09a385a44e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083042Z:dfc870ab-779e-4bf4-afd8-3620be8691a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "997d4fdeeb1264c710c6f875def49a20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9270dd75-8320-4bcc-ad30-a0069d86edae", + "x-ms-client-request-id": "997d4fdeeb1264c710c6f875def49a20", + "x-ms-correlation-request-id": "456b91b9-5d0a-4750-b201-b2534c85974b", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "e2fb93b8-5f1d-43b5-bde3-96e371ae8ab4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083044Z:456b91b9-5d0a-4750-b201-b2534c85974b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4844f17ce3d716b596401b1ec4e2adc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "01ee1c2c-accd-4bad-90e2-ca8d41ee6f7c", + "x-ms-client-request-id": "4844f17ce3d716b596401b1ec4e2adc1", + "x-ms-correlation-request-id": "4f8de373-242d-4f6e-b70f-0835f633ee9a", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "de2767ec-6b3c-4983-b881-53daf5f1386b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083045Z:4f8de373-242d-4f6e-b70f-0835f633ee9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c9820740b5ae50e782576eaf9624b05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6382b45-6772-448c-9736-55e660f46f43", + "x-ms-client-request-id": "2c9820740b5ae50e782576eaf9624b05", + "x-ms-correlation-request-id": "609fa89c-0d07-4261-a9ae-bb1f0c360728", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "387c0799-296a-4ce2-a236-318b72e4843d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083046Z:609fa89c-0d07-4261-a9ae-bb1f0c360728" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfdfde46f323fb9a996702d2cfa89f2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27b19de8-2bf1-4c87-81a3-68686e9225d9", + "x-ms-client-request-id": "cfdfde46f323fb9a996702d2cfa89f2d", + "x-ms-correlation-request-id": "d1200782-6bfb-4940-986e-07d5c97c9dd3", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "5c577ec2-dc96-400f-90f3-e879fb5a8e87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083048Z:d1200782-6bfb-4940-986e-07d5c97c9dd3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be0136196e5c70c5e25fcfb16cca1d33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a2278c37-698a-4faa-927e-6f7d6fcc6fa3", + "x-ms-client-request-id": "be0136196e5c70c5e25fcfb16cca1d33", + "x-ms-correlation-request-id": "72a1091e-cd7b-48fe-bc5a-ebf603937d2e", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "5af8e109-d5b1-44d2-962e-68a46f5c0c06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083049Z:72a1091e-cd7b-48fe-bc5a-ebf603937d2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5d816f4dd03819d859d92f3093c15d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fbc3f7a3-2b4b-4c75-bca3-4e3123194bc1", + "x-ms-client-request-id": "e5d816f4dd03819d859d92f3093c15d0", + "x-ms-correlation-request-id": "f94d325a-06cd-461b-b6e6-481b13a0faa6", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "7e9a3544-8fa2-4a29-b260-f9cb108326fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083051Z:f94d325a-06cd-461b-b6e6-481b13a0faa6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2d149868d61d7a9196fedc423e98fcf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71344206-7205-4bcd-80f8-fe85387cf592", + "x-ms-client-request-id": "c2d149868d61d7a9196fedc423e98fcf", + "x-ms-correlation-request-id": "d51f7b35-44f2-4ddc-9b9c-6ff1014d2474", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "a9b69d26-5093-4186-b67d-6fd7799bdfe2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083052Z:d51f7b35-44f2-4ddc-9b9c-6ff1014d2474" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9ddce49bacf3b2a988038bedcd166a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f4a6548-2d3e-4df8-8caa-f457f9120635", + "x-ms-client-request-id": "b9ddce49bacf3b2a988038bedcd166a5", + "x-ms-correlation-request-id": "c3b19503-40c9-4582-a534-6e40ec9f0767", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "abce6930-fa7c-4c2f-9ed8-77f592d9456e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083053Z:c3b19503-40c9-4582-a534-6e40ec9f0767" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "222bff4a5bf967d26c01cc93f0d95d9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4b8d1aa0-b26e-462c-9b26-cf4b3a7b7e27", + "x-ms-client-request-id": "222bff4a5bf967d26c01cc93f0d95d9b", + "x-ms-correlation-request-id": "7ed0de13-36de-4a26-b46c-02552299f179", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "7b89e943-77a2-4fe5-97b3-9c1afaa61804", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083055Z:7ed0de13-36de-4a26-b46c-02552299f179" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3aaac30e5c5ecb011e9529e154eafa47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f3b8a95-e67f-48cc-9211-e28fd25e5d89", + "x-ms-client-request-id": "3aaac30e5c5ecb011e9529e154eafa47", + "x-ms-correlation-request-id": "37a6235f-46ce-418d-978e-f20c67b90fd4", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "7d972246-b755-4049-9a04-f69a1e75c98a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083056Z:37a6235f-46ce-418d-978e-f20c67b90fd4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "247a47086cbdeed5fc764ccded974bbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b8bac40-5bc1-44b0-90fc-4ed9bd8be80d", + "x-ms-client-request-id": "247a47086cbdeed5fc764ccded974bbf", + "x-ms-correlation-request-id": "bda7824d-df65-498c-b950-b52ec9c89bdb", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "043db331-ab1c-4500-9574-17c940da1f25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083057Z:bda7824d-df65-498c-b950-b52ec9c89bdb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19b09d222b27ed47fe5f046331f01281", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "acd80ac7-d0d5-46cf-9a69-6858c378a83f", + "x-ms-client-request-id": "19b09d222b27ed47fe5f046331f01281", + "x-ms-correlation-request-id": "3ba892f7-a016-4aac-8b1c-c6bec2e1afb0", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "5044e7b2-4679-4db1-bc2d-5fa3e7c8c234", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083059Z:3ba892f7-a016-4aac-8b1c-c6bec2e1afb0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a88a8406395fa1ddedbb3ee80f33de87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:30:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b933404d-d6b1-4364-baa2-ce6b37c88713", + "x-ms-client-request-id": "a88a8406395fa1ddedbb3ee80f33de87", + "x-ms-correlation-request-id": "b3ab54f4-fa86-4a57-aae6-a3b547dba46e", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "27c445c0-a7d7-4276-8ab5-3d9ac7893681", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083100Z:b3ab54f4-fa86-4a57-aae6-a3b547dba46e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7bf6a49e03add20008c265e6771bc0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d34ec45-7e88-42e2-9609-c91b0de31b1f", + "x-ms-client-request-id": "b7bf6a49e03add20008c265e6771bc0b", + "x-ms-correlation-request-id": "f48043fe-5639-4da0-b439-eb493009a7fd", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "34f590e2-8d97-406a-81fa-3747c8e2dc89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083101Z:f48043fe-5639-4da0-b439-eb493009a7fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69c7ca63a20ce85fbf0e2c6bed5eddcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef601d75-536c-41f1-b258-b297322f88f4", + "x-ms-client-request-id": "69c7ca63a20ce85fbf0e2c6bed5eddcb", + "x-ms-correlation-request-id": "5561447a-9ab6-4407-aedc-07df5217ae9f", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "adcbe378-2c92-4abf-bbd1-590f29120b37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083102Z:5561447a-9ab6-4407-aedc-07df5217ae9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7197d815b31264763ada8d3137f397b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9e24b51-37fc-4b80-92a0-ad9da1cbb37b", + "x-ms-client-request-id": "c7197d815b31264763ada8d3137f397b", + "x-ms-correlation-request-id": "8b05359f-afb1-4423-93cc-bcb0ecaa6cc6", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "2ad85c00-0379-441c-86c0-90b76fe3676b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083104Z:8b05359f-afb1-4423-93cc-bcb0ecaa6cc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "458433fe746ba77b0ad6f72bb4b5f0a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ce4e4ac-b004-4344-8225-5450fac49999", + "x-ms-client-request-id": "458433fe746ba77b0ad6f72bb4b5f0a1", + "x-ms-correlation-request-id": "126eb194-1996-46b8-8ecc-f082464d2c7a", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "85ac882e-1ad2-4445-8e32-1423486d0f28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083105Z:126eb194-1996-46b8-8ecc-f082464d2c7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eadc5aaef55707d983a0055ef98cd53f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78b97429-b750-41b1-bd23-76fdec52bbf6", + "x-ms-client-request-id": "eadc5aaef55707d983a0055ef98cd53f", + "x-ms-correlation-request-id": "3e55043c-df46-4feb-b2be-225cdd60eea6", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "54df6cd4-cdc9-4295-bb71-815c418c5066", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083106Z:3e55043c-df46-4feb-b2be-225cdd60eea6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b96cb0d498da0c5f0172bc5b631b71ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e59f92b-4589-4b1c-925b-c57c73b377e6", + "x-ms-client-request-id": "b96cb0d498da0c5f0172bc5b631b71ae", + "x-ms-correlation-request-id": "a2513875-5aa7-4651-b5f9-7194741ce512", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "985e66c7-10f9-425a-a683-8a4ee1f6e657", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083107Z:a2513875-5aa7-4651-b5f9-7194741ce512" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b82407bd4ea20923597cc1cb6f1cad7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3527bdff-9444-4e60-9819-54f3827f44e0", + "x-ms-client-request-id": "b82407bd4ea20923597cc1cb6f1cad7e", + "x-ms-correlation-request-id": "a662d291-237c-417d-93fe-ea36e52b515c", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "d81b2285-4ab5-4c97-bff8-9a887dcf152c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083109Z:a662d291-237c-417d-93fe-ea36e52b515c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0357b800364816c6fbd0e8e5387ea368", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5637c189-635f-470a-bb84-a292b19f732f", + "x-ms-client-request-id": "0357b800364816c6fbd0e8e5387ea368", + "x-ms-correlation-request-id": "ee9c6291-14ef-4d40-be11-48656406e943", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "ba9f29d9-6621-40c7-a921-65cdde3c96bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083110Z:ee9c6291-14ef-4d40-be11-48656406e943" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2a1562f1c67859d8c62605dd6949ce5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7da25974-faf3-4f0a-9e8d-0af305e582d8", + "x-ms-client-request-id": "f2a1562f1c67859d8c62605dd6949ce5", + "x-ms-correlation-request-id": "6fe69f1c-e050-4389-86d8-1e66bc227980", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "aeb78609-e2ca-4e19-8160-f7a321a15bb1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083111Z:6fe69f1c-e050-4389-86d8-1e66bc227980" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab5a3ec56dc48765400dbcd2653ed0db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bcf1e0e5-be16-41ef-b74a-5221c18c6e69", + "x-ms-client-request-id": "ab5a3ec56dc48765400dbcd2653ed0db", + "x-ms-correlation-request-id": "e7b5fa4b-2737-45b5-a862-33ed7725c5aa", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "743bf8d6-cdd2-4ada-a82d-7e72a7c308fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083113Z:e7b5fa4b-2737-45b5-a862-33ed7725c5aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "189b59d8bb7be3161bd176e5d6694067", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3dafef83-534d-46b9-8a58-b66504ba4991", + "x-ms-client-request-id": "189b59d8bb7be3161bd176e5d6694067", + "x-ms-correlation-request-id": "96cd3f1b-33e3-4c12-bc7c-186efb5c7ba6", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "7c1f00e3-d415-41fa-b46f-96d6e67854f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083114Z:96cd3f1b-33e3-4c12-bc7c-186efb5c7ba6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa1f0333f823c1a3f019b15a5fcb1f4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3d58aca-fb58-4b7a-b475-6f4b3a7d1ae6", + "x-ms-client-request-id": "fa1f0333f823c1a3f019b15a5fcb1f4e", + "x-ms-correlation-request-id": "def2cf84-f0cd-4719-a165-6818629b1fc7", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "9b88f0ab-a371-447f-b15f-31d1e9dff5d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083115Z:def2cf84-f0cd-4719-a165-6818629b1fc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c84849283f80a69277690f3f67fb1d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e40e3207-492d-4084-a617-7dba48b41d75", + "x-ms-client-request-id": "7c84849283f80a69277690f3f67fb1d7", + "x-ms-correlation-request-id": "b3885ff0-b326-484d-8965-a2f6236280e5", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "437e7dfa-ce76-479e-a00e-42f6b1653a80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083116Z:b3885ff0-b326-484d-8965-a2f6236280e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "629e55cdd51ee0b8b6da276109bc8450", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32e271c2-0883-4873-91e2-1372f7d90822", + "x-ms-client-request-id": "629e55cdd51ee0b8b6da276109bc8450", + "x-ms-correlation-request-id": "39de5c95-69f4-44f2-9c3c-e72588224219", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "af4bb02b-91c3-4a7e-bb18-a6db07d17bd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083118Z:39de5c95-69f4-44f2-9c3c-e72588224219" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "515328b1c3e4b06e9915d3ac67b0ca71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "03aaa59f-d7de-40d9-8011-d0120a171b4b", + "x-ms-client-request-id": "515328b1c3e4b06e9915d3ac67b0ca71", + "x-ms-correlation-request-id": "914ebb37-3e6d-412e-9401-e836a75fbafa", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "4b7e17c1-609b-4cad-bffd-5132fc0b69d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083119Z:914ebb37-3e6d-412e-9401-e836a75fbafa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a8cd968bd2cbd2fcca3c61e5c08006a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60b353d0-f659-499e-8a8a-91e7cf1fdfe1", + "x-ms-client-request-id": "0a8cd968bd2cbd2fcca3c61e5c08006a", + "x-ms-correlation-request-id": "7d0eb370-c506-4523-b317-5ac0895f990c", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "7ac76f6a-da8f-4f34-a61b-ed6e48c686ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083120Z:7d0eb370-c506-4523-b317-5ac0895f990c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce4140f25f2c09f2e6eec808010b7905", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15d7e350-a527-47ac-aca4-cfa6311b1e90", + "x-ms-client-request-id": "ce4140f25f2c09f2e6eec808010b7905", + "x-ms-correlation-request-id": "e31d3d38-8569-4b61-b2c4-52170513fcb7", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "23148a2a-5b7f-4b77-889e-be2c441ac99a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083121Z:e31d3d38-8569-4b61-b2c4-52170513fcb7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30f8b60f7930f323f8968441fd505491", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ee2c1b0-b067-457a-a3c4-3cded4b69509", + "x-ms-client-request-id": "30f8b60f7930f323f8968441fd505491", + "x-ms-correlation-request-id": "b3f27f54-13a3-40c2-a43f-60a05fd4b7fc", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "f7527611-5ed4-4d0c-ba92-0ca9bc7a96d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083123Z:b3f27f54-13a3-40c2-a43f-60a05fd4b7fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26b96815fb6f0944e682233ef427bbc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57cf2bc0-c408-4052-82f2-645c98a4a348", + "x-ms-client-request-id": "26b96815fb6f0944e682233ef427bbc1", + "x-ms-correlation-request-id": "464ea3bd-3301-4841-9e38-fb1b86259b4a", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "6df3d4ad-e8cc-4900-b1c1-bc1178b7f6ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083124Z:464ea3bd-3301-4841-9e38-fb1b86259b4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a50ec02acf0f783a1d4dd696dab10c95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f10167e-1b43-443d-adfe-39ae3dc91910", + "x-ms-client-request-id": "a50ec02acf0f783a1d4dd696dab10c95", + "x-ms-correlation-request-id": "1940de36-5040-4a3c-8a87-589de939347d", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "b750f4fb-fb68-4ff4-afed-5addf8b8abd8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083125Z:1940de36-5040-4a3c-8a87-589de939347d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99f237995251139672ef49ad56e4ffd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f971070-5d9f-4f09-ba16-d68ad76a4e9b", + "x-ms-client-request-id": "99f237995251139672ef49ad56e4ffd1", + "x-ms-correlation-request-id": "10136118-1648-451d-a596-51b6a09e27cf", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "4ae7e357-5c7a-4de0-a590-2f5732d382d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083127Z:10136118-1648-451d-a596-51b6a09e27cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c16c3dbae4245822e41092125ae2e34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b26b289-c624-4593-acac-25a1060a5b07", + "x-ms-client-request-id": "3c16c3dbae4245822e41092125ae2e34", + "x-ms-correlation-request-id": "dc98b0a9-db86-41aa-a525-3d5644b12adf", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "1df903c5-89c0-470e-9e84-11b9bf0a38ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083128Z:dc98b0a9-db86-41aa-a525-3d5644b12adf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bda48d752234d76f2afa331f868c2239", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00917cec-ef78-42b7-8554-afd2325d6ae7", + "x-ms-client-request-id": "bda48d752234d76f2afa331f868c2239", + "x-ms-correlation-request-id": "39680a3e-56ea-4897-a430-dd91ab863169", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "1b375e69-0420-4ce9-9c77-7a8ff1aac958", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083129Z:39680a3e-56ea-4897-a430-dd91ab863169" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17ba044ecf9aeb53b5ac6a104974edc3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84e1efc2-3be4-4c7f-8332-493cda726ebb", + "x-ms-client-request-id": "17ba044ecf9aeb53b5ac6a104974edc3", + "x-ms-correlation-request-id": "471ec5ba-0684-48c2-a8e6-fa3818c2bb51", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "412c4407-3837-4cbb-a642-fa69839bbb16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083130Z:471ec5ba-0684-48c2-a8e6-fa3818c2bb51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c83814c1413fb99c533f12477b62bfa1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d54df52-3a2f-4e61-81f1-f82759a9cf29", + "x-ms-client-request-id": "c83814c1413fb99c533f12477b62bfa1", + "x-ms-correlation-request-id": "ddee76b0-cf1c-4356-805f-a804b601212b", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "eda80aa0-4a51-4eef-ae95-819da5f6c788", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083132Z:ddee76b0-cf1c-4356-805f-a804b601212b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21d2cf1e16f3a69a3ab90887b75f8db5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b81d66bc-628c-446b-a386-c216a132fada", + "x-ms-client-request-id": "21d2cf1e16f3a69a3ab90887b75f8db5", + "x-ms-correlation-request-id": "d0c85af3-dd4c-4b5f-9298-0c18b94f2d83", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "be11a0c2-c834-416c-8fd4-b77a2173e1ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083133Z:d0c85af3-dd4c-4b5f-9298-0c18b94f2d83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "715e6f0c5a540dfa6701c45bbd0b6f52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7ba43cc-ddae-4c83-b165-7328ee2bb592", + "x-ms-client-request-id": "715e6f0c5a540dfa6701c45bbd0b6f52", + "x-ms-correlation-request-id": "0e00405a-939a-45fd-834a-ab41e9c0b1f8", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "15e06ab1-29d6-4f9c-a91d-febdd372fa30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083134Z:0e00405a-939a-45fd-834a-ab41e9c0b1f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79f1c8edcca1aacf7a918d85381501f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65e83a36-d482-4c90-a618-49f63e025201", + "x-ms-client-request-id": "79f1c8edcca1aacf7a918d85381501f3", + "x-ms-correlation-request-id": "8a57f01e-832f-403a-b65f-524048ec923a", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "d7fad7a4-c726-4ef2-ae31-b2dc4e67c435", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083136Z:8a57f01e-832f-403a-b65f-524048ec923a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b3b5cb14d03c44dd5c5b9f1523ee82e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "211e8584-d1c8-4a52-8073-1298f5cd1ff6", + "x-ms-client-request-id": "0b3b5cb14d03c44dd5c5b9f1523ee82e", + "x-ms-correlation-request-id": "35340c57-5bdc-4e51-9936-c867f48a0431", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "3402f879-7645-440a-a462-80777c4d46b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083137Z:35340c57-5bdc-4e51-9936-c867f48a0431" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee9ab549146e40149fb3f7c2cc74d552", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d7d39d6-cb2d-4fb6-a10d-ca47c151a627", + "x-ms-client-request-id": "ee9ab549146e40149fb3f7c2cc74d552", + "x-ms-correlation-request-id": "35c43215-c211-4709-89d1-000b67e5b074", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "aa994337-b171-4ecf-9b85-6ca790ddaf8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083138Z:35c43215-c211-4709-89d1-000b67e5b074" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61aad00063d09f4f7b2ca4dc13de583c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae10ca15-510a-41a7-9ec7-296111d7e65f", + "x-ms-client-request-id": "61aad00063d09f4f7b2ca4dc13de583c", + "x-ms-correlation-request-id": "f0aa157a-5b4d-4202-81e1-a09ff0bddb0b", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "fe2b591b-8d27-4b60-9a05-afa89dbc2957", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083139Z:f0aa157a-5b4d-4202-81e1-a09ff0bddb0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "823b5ea8127b9d8548fa6b4f568af860", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55c3b041-f55a-457f-8bfa-0baa3ca15a9b", + "x-ms-client-request-id": "823b5ea8127b9d8548fa6b4f568af860", + "x-ms-correlation-request-id": "3d63ee63-95f3-43a6-bff7-0dc6b4fcac50", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "bc6dfd21-7405-4229-a6d8-96f823b9e4f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083141Z:3d63ee63-95f3-43a6-bff7-0dc6b4fcac50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82f167f08794e55e66fa73416f372cc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "748d13a9-804f-493e-9fbe-28bfc2252bd9", + "x-ms-client-request-id": "82f167f08794e55e66fa73416f372cc1", + "x-ms-correlation-request-id": "5bc34c20-1557-49fc-a913-821228529381", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "2c94a257-6e86-4ee3-bd0f-627cdfe2fd32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083142Z:5bc34c20-1557-49fc-a913-821228529381" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d19bb5b5239edd64a0c18d5f8ff48f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ace9884e-cd63-44e1-ae35-0f568ba63a4e", + "x-ms-client-request-id": "6d19bb5b5239edd64a0c18d5f8ff48f0", + "x-ms-correlation-request-id": "79c8c880-25cd-401a-91d6-1f52e100d5b8", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "7636c1c9-08ff-41db-a731-03c40c73d6c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083143Z:79c8c880-25cd-401a-91d6-1f52e100d5b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acec4334d5ec21a700551b809f442d10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc419518-eaf2-4b8f-850b-5a670dda086c", + "x-ms-client-request-id": "acec4334d5ec21a700551b809f442d10", + "x-ms-correlation-request-id": "a31a9dda-b519-4f4a-8821-1f935a09d686", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "5d9c847d-ee44-4d1a-8fc9-ef07d86e3f66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083145Z:a31a9dda-b519-4f4a-8821-1f935a09d686" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bf4aace8a719d27900438876e88ed66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2a43e61-ee43-49c1-a74f-48c37766bb76", + "x-ms-client-request-id": "9bf4aace8a719d27900438876e88ed66", + "x-ms-correlation-request-id": "00487c68-bcde-4c43-8046-b2c55b9f8667", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "2ad85e41-3c30-40ea-9b55-7694b7dfbafd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083146Z:00487c68-bcde-4c43-8046-b2c55b9f8667" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c0c82b2804b85d413f86ce336564d05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7afb3bb6-0804-411f-883b-20622382900e", + "x-ms-client-request-id": "2c0c82b2804b85d413f86ce336564d05", + "x-ms-correlation-request-id": "7cd779f8-d44d-4df3-9455-562c11288948", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "9c2db713-7e6f-46f9-838c-4efa28e51d57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083147Z:7cd779f8-d44d-4df3-9455-562c11288948" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d0708dfad0ba97f1b4e1be89d20b277", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47fb6145-a250-485a-bd07-cd4d298de7d5", + "x-ms-client-request-id": "4d0708dfad0ba97f1b4e1be89d20b277", + "x-ms-correlation-request-id": "ffcbe518-4b16-42ac-8814-4f5047b58024", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "4e6b22e3-2d77-4032-8d0f-e3f9ad044bf4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083148Z:ffcbe518-4b16-42ac-8814-4f5047b58024" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1dceb46700384dc4d56e88781e43663a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ac4509a-e755-46d5-a922-42f88d3132d6", + "x-ms-client-request-id": "1dceb46700384dc4d56e88781e43663a", + "x-ms-correlation-request-id": "c6485f25-7fa6-4017-8d46-bd0c288a4679", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "3cbbadc6-af29-430a-967a-e83d0a471f1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083150Z:c6485f25-7fa6-4017-8d46-bd0c288a4679" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66a832b6a081045b036210fc65ece8f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe12692a-3db3-4ae2-bb64-e2a8782d2007", + "x-ms-client-request-id": "66a832b6a081045b036210fc65ece8f2", + "x-ms-correlation-request-id": "17e8260b-7531-4dcc-b020-29a01247326e", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "36421a8f-b499-47d2-acb9-012316a7747c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083151Z:17e8260b-7531-4dcc-b020-29a01247326e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "817bf4463087decd43b9789c25078bd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3e31745-038c-41e2-9754-b62e5d638f53", + "x-ms-client-request-id": "817bf4463087decd43b9789c25078bd7", + "x-ms-correlation-request-id": "c0636cd1-d1d1-45ad-af68-75c9430856b5", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "e5223492-fd2b-4cf3-bfec-85f81100391a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083152Z:c0636cd1-d1d1-45ad-af68-75c9430856b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a31e1e84b78c7f659c919d5f0c7e8e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cdcb42c1-920e-476e-8969-9727444ce137", + "x-ms-client-request-id": "6a31e1e84b78c7f659c919d5f0c7e8e9", + "x-ms-correlation-request-id": "8bc605dd-16de-41ea-85af-3a9164a0dc39", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "561afa54-a091-4733-8835-3ddb5c2eb643", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083154Z:8bc605dd-16de-41ea-85af-3a9164a0dc39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29319585e4c786b265c923c728bedffc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0bb8447-3c17-406a-86ae-81192e897dec", + "x-ms-client-request-id": "29319585e4c786b265c923c728bedffc", + "x-ms-correlation-request-id": "c36e9d00-4ce7-42b4-86fd-227f3c1a3aa3", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "fe7202df-d5d0-4b45-89f8-18c84acefedd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083155Z:c36e9d00-4ce7-42b4-86fd-227f3c1a3aa3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "831438d67ebafa7afeb428be16f7ee7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "957aed02-ab50-43bb-8377-4c989eca6ed8", + "x-ms-client-request-id": "831438d67ebafa7afeb428be16f7ee7b", + "x-ms-correlation-request-id": "609198ba-3d61-493d-b808-9dd479ec1c24", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "5f534acc-48b2-4024-855d-06fabdcd32a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083156Z:609198ba-3d61-493d-b808-9dd479ec1c24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90178fd162d5030f2fab04ae282f9f9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "467484b8-a8f1-4be2-a3f6-9d3809811390", + "x-ms-client-request-id": "90178fd162d5030f2fab04ae282f9f9a", + "x-ms-correlation-request-id": "9351e967-2fca-4d98-8a6a-7ae95a6abd59", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "ff0a53b7-6a2b-4a03-9ebe-9b0378fcc3d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083157Z:9351e967-2fca-4d98-8a6a-7ae95a6abd59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7ff1dea65b2072e1a372a13bcf36f6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1a246964-6730-4c99-ba02-1481e16a374c", + "x-ms-client-request-id": "b7ff1dea65b2072e1a372a13bcf36f6e", + "x-ms-correlation-request-id": "a034c796-7fda-4cb1-ae5c-59cfcfad15ea", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "e594edac-38c2-4385-a6be-c4001d521bf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083159Z:a034c796-7fda-4cb1-ae5c-59cfcfad15ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98f5a7db4fa773272811530e7acbd2cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:31:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6472363-4405-4f24-b7c7-d5c5781ba6b6", + "x-ms-client-request-id": "98f5a7db4fa773272811530e7acbd2cf", + "x-ms-correlation-request-id": "37067627-d1c0-4370-96e9-5f76d2bd51eb", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "186675d4-1d53-452e-9702-c9817c301eca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083200Z:37067627-d1c0-4370-96e9-5f76d2bd51eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9d48e1536f76cc8600f759e38fc473b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c911b915-e67c-4e45-84ea-e33ed8452df5", + "x-ms-client-request-id": "f9d48e1536f76cc8600f759e38fc473b", + "x-ms-correlation-request-id": "0e5cd36d-7f45-4b67-9fdf-01022e42602a", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "4a953a2f-e12a-46cb-9adc-5ee56a4748e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083201Z:0e5cd36d-7f45-4b67-9fdf-01022e42602a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81d3953c06399af2f68b8ea111208d4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50a468b7-7fb3-4c61-8ca5-db24180c9114", + "x-ms-client-request-id": "81d3953c06399af2f68b8ea111208d4f", + "x-ms-correlation-request-id": "f946c31a-81c9-4e15-8b80-bb355869889d", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "4fec2d36-1935-42c2-a31e-f3411ed3a7df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083202Z:f946c31a-81c9-4e15-8b80-bb355869889d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2dfd5b64751fa476de893897da893b2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21081516-745a-45aa-bc82-1918604d37a4", + "x-ms-client-request-id": "2dfd5b64751fa476de893897da893b2c", + "x-ms-correlation-request-id": "6293057d-c368-4209-8441-293109acd73f", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "b4eaabb8-7e5f-44ce-bbef-53720182539e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083204Z:6293057d-c368-4209-8441-293109acd73f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4d118ca51f70e969b39036ca8275b40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0680e671-ca62-409e-8c25-7990c015d23b", + "x-ms-client-request-id": "e4d118ca51f70e969b39036ca8275b40", + "x-ms-correlation-request-id": "cb5d53d3-aaee-4041-9e55-7e8413644e93", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "3396e532-2455-4b19-804c-a93ff35cc772", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083205Z:cb5d53d3-aaee-4041-9e55-7e8413644e93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc39268219fec61b1e2fa2afce5ac06d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6be10c58-a0c0-421f-8a74-e7bbd4dc21dd", + "x-ms-client-request-id": "dc39268219fec61b1e2fa2afce5ac06d", + "x-ms-correlation-request-id": "70d1fc58-7e12-4b5d-ab97-8786418cc143", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "8c4dd7b1-1f24-47c3-aaa3-ebbe00b7c049", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083207Z:70d1fc58-7e12-4b5d-ab97-8786418cc143" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8d6614fa84e1357c4ef92e6720afbb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3be07430-a519-4281-829c-ebebc373f33e", + "x-ms-client-request-id": "f8d6614fa84e1357c4ef92e6720afbb7", + "x-ms-correlation-request-id": "84d76058-d72c-456d-b532-e1cf4ab84c6d", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "ca1ce15a-6e7b-464f-bb94-bfba10d04378", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083208Z:84d76058-d72c-456d-b532-e1cf4ab84c6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b415f72e5e4fb12dfc0ac5c8afe64041", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "030ac05a-2051-42ae-900e-9f3bdc191528", + "x-ms-client-request-id": "b415f72e5e4fb12dfc0ac5c8afe64041", + "x-ms-correlation-request-id": "8a2d2d2c-2ecb-43ee-b5c1-ebc97ec0de54", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "b8db5e72-4b6c-4aab-a3f2-7f599b898461", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083209Z:8a2d2d2c-2ecb-43ee-b5c1-ebc97ec0de54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "461c95796250d9f2ce26170f86355414", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b5a5371-3ae3-4c90-bd6b-dc110fe41d81", + "x-ms-client-request-id": "461c95796250d9f2ce26170f86355414", + "x-ms-correlation-request-id": "a9753d92-6ad3-4087-82cd-1fd9e761d895", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "9b6ba7d6-dbb9-4666-8bb2-92d6a61a37c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083211Z:a9753d92-6ad3-4087-82cd-1fd9e761d895" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d681ea330c45f01d3325fb43e38e64de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0b6469f-3caf-4943-ae2f-64a3a1a8753c", + "x-ms-client-request-id": "d681ea330c45f01d3325fb43e38e64de", + "x-ms-correlation-request-id": "c8c40d46-1175-431b-92c7-82b9ee476f46", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "1320cf36-5cf9-494d-9438-2805be3c6f5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083212Z:c8c40d46-1175-431b-92c7-82b9ee476f46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc6d51aeb5eecb66053be529471e2ac7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4fabecf8-57d7-46af-adc2-d0df26aeb46d", + "x-ms-client-request-id": "dc6d51aeb5eecb66053be529471e2ac7", + "x-ms-correlation-request-id": "97fa1dfd-8af4-4675-95bd-fea1d4bb9eef", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "6ada0008-a279-49bc-ad2a-f2b935c01bc7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083213Z:97fa1dfd-8af4-4675-95bd-fea1d4bb9eef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c494b1b669656dfc782b122b66aef63f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "41dd6453-5035-4c5e-a58d-84a2a863d4b5", + "x-ms-client-request-id": "c494b1b669656dfc782b122b66aef63f", + "x-ms-correlation-request-id": "0bd30824-b04d-4430-ade2-0ffa6322442d", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "aebbd9fc-8a0c-4309-9162-56cbfc9e665e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083214Z:0bd30824-b04d-4430-ade2-0ffa6322442d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "356039c277c87e2684b6d10926f3a915", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ffc5bcc-0d7f-4250-9330-a081b6a33a18", + "x-ms-client-request-id": "356039c277c87e2684b6d10926f3a915", + "x-ms-correlation-request-id": "2045c2d4-5493-4418-965e-9220fcabb8cc", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "e5662f12-16b8-4d5e-a7fc-61c3e6e1c1ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083216Z:2045c2d4-5493-4418-965e-9220fcabb8cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "328c34faa0f9447855ff64c2a23b6456", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c19c1933-a49c-4453-a87b-2d97f9e83db3", + "x-ms-client-request-id": "328c34faa0f9447855ff64c2a23b6456", + "x-ms-correlation-request-id": "5639b34f-ea65-464a-a9b4-64de6c2269d7", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "7f442e6b-f9be-4283-adc0-b0d914a0a507", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083217Z:5639b34f-ea65-464a-a9b4-64de6c2269d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d67a545f4bd3fff8b163faf98f24684", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "185f2316-bbe0-4db1-97f9-a277b8a01e5f", + "x-ms-client-request-id": "0d67a545f4bd3fff8b163faf98f24684", + "x-ms-correlation-request-id": "f837555b-ad4e-4e22-bbe5-8a6e0ae9ad51", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "a874f75e-3430-4afb-ae02-b6d1e1bf30a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083218Z:f837555b-ad4e-4e22-bbe5-8a6e0ae9ad51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3230fd81c4222145c01ce0c81263db48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f025c41-1c25-4992-97fc-431fead197ff", + "x-ms-client-request-id": "3230fd81c4222145c01ce0c81263db48", + "x-ms-correlation-request-id": "ab82b3cc-4cfc-4d01-b62f-0af6ff71eb36", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "5839cb68-ed4a-41bc-a9f1-3ae01bad28b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083220Z:ab82b3cc-4cfc-4d01-b62f-0af6ff71eb36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80c37a519c8c0657354ca7e360c9ab62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "207cb99c-a9ac-4c04-ac8d-46d95650efc7", + "x-ms-client-request-id": "80c37a519c8c0657354ca7e360c9ab62", + "x-ms-correlation-request-id": "1575b932-c9b6-4548-89ab-f3c52a8ca590", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "924c7ce6-7c27-4921-a31a-bb7d7d59fdb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083221Z:1575b932-c9b6-4548-89ab-f3c52a8ca590" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a540dfb9310b81345f454ca114362d27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc6b0b28-9f0e-45c0-b492-0ae7fd3fd309", + "x-ms-client-request-id": "a540dfb9310b81345f454ca114362d27", + "x-ms-correlation-request-id": "e7843852-c6c5-4806-bd99-da0ce7b2593c", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "a1efde33-ff29-4b66-a617-85961146cc40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083222Z:e7843852-c6c5-4806-bd99-da0ce7b2593c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e5df73ac52ee5f8a52afdd51d62c1f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2aa523a-58bb-4915-a830-ba8e0412e9df", + "x-ms-client-request-id": "1e5df73ac52ee5f8a52afdd51d62c1f7", + "x-ms-correlation-request-id": "294541df-a6f8-4b69-a8df-8707fce3c3eb", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "cba3ec5e-6705-4056-8e06-1c5a6f0504ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083223Z:294541df-a6f8-4b69-a8df-8707fce3c3eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "320f7e703623203c464220474fb6f1fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8097b79-fc1b-4164-812a-9991a41f8525", + "x-ms-client-request-id": "320f7e703623203c464220474fb6f1fe", + "x-ms-correlation-request-id": "66c5eecb-00a1-400b-bdf3-42701afdb092", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "bd840289-c0e0-48f8-a366-af8dd4513a9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083225Z:66c5eecb-00a1-400b-bdf3-42701afdb092" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68a87f1f8d6cf333e75affe1345e63fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7648a8d8-287a-4979-a7d8-0d80a1cd0afe", + "x-ms-client-request-id": "68a87f1f8d6cf333e75affe1345e63fd", + "x-ms-correlation-request-id": "cded7d6e-9c58-43a6-9de3-75cd03b75877", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "bdfb2461-ec75-48c5-9054-08d2218a05ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083227Z:cded7d6e-9c58-43a6-9de3-75cd03b75877" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96315583fa270403ba3dd7eca4b196ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ffa7c080-334f-4bf5-929d-e8e91a07a6bb", + "x-ms-client-request-id": "96315583fa270403ba3dd7eca4b196ef", + "x-ms-correlation-request-id": "9402d9f6-46da-4c5d-a39a-da8de822477d", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "1cc197c1-5ee8-4ff0-ad39-d683560738e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083228Z:9402d9f6-46da-4c5d-a39a-da8de822477d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9db6fe3858bae28a4a1b4bc8365bebe7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8219094c-9979-44d2-8954-2559ae41ca26", + "x-ms-client-request-id": "9db6fe3858bae28a4a1b4bc8365bebe7", + "x-ms-correlation-request-id": "c75c3465-c3ae-4d4d-b011-0c161cd29aea", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "ee0399f7-a8c5-4334-9405-a26bab72a71d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083230Z:c75c3465-c3ae-4d4d-b011-0c161cd29aea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fac323df5b8425d67ca3ae2fb5474e36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a8efa5d-8ec8-449b-b747-3683cd6f0645", + "x-ms-client-request-id": "fac323df5b8425d67ca3ae2fb5474e36", + "x-ms-correlation-request-id": "c588aa2b-6d2d-43bb-a240-c29bf3732f47", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "bbfce07c-1ec8-484e-aae0-fc341a2f4048", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083231Z:c588aa2b-6d2d-43bb-a240-c29bf3732f47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35a810c4c6a82b42ca4e4b0caf3ace5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6613916a-f504-4219-acac-d7d4689bf18e", + "x-ms-client-request-id": "35a810c4c6a82b42ca4e4b0caf3ace5e", + "x-ms-correlation-request-id": "3a31554b-476d-40e9-bf88-90c009438885", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "a843d297-ef95-44f6-94c6-94f8e35d8322", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083232Z:3a31554b-476d-40e9-bf88-90c009438885" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "800def519ceddd6a28902116aa5b2c02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc03eb4e-fa34-460b-b975-9e1e9e47e400", + "x-ms-client-request-id": "800def519ceddd6a28902116aa5b2c02", + "x-ms-correlation-request-id": "2786cd5c-e3b4-4289-a327-86829a7cf269", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "ad4633da-b070-42ff-a96f-34c30be5640e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083234Z:2786cd5c-e3b4-4289-a327-86829a7cf269" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "260314cdb6b3183fe1982f360fca7641", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f1ff5cf-047c-435c-9c0b-acc701cc21e8", + "x-ms-client-request-id": "260314cdb6b3183fe1982f360fca7641", + "x-ms-correlation-request-id": "9cafc631-5a37-4639-8883-388e2635fc93", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "9183bb8a-75cf-4c7d-a63c-d6e0dfca5211", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083235Z:9cafc631-5a37-4639-8883-388e2635fc93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6dd4fd5cd3a2848a5cb0d17a52c806f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9c1c1ce-45e0-42b3-91c6-c14b86549540", + "x-ms-client-request-id": "c6dd4fd5cd3a2848a5cb0d17a52c806f", + "x-ms-correlation-request-id": "5b9023d7-e6a1-4213-b01e-5f5403ee257f", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "b2e2db19-c738-4838-8f54-9e74e39575b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083236Z:5b9023d7-e6a1-4213-b01e-5f5403ee257f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a3e4921a7369aabb0f49f556c34cd5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "651c8d3a-e770-4423-8cef-f694d82f54df", + "x-ms-client-request-id": "9a3e4921a7369aabb0f49f556c34cd5d", + "x-ms-correlation-request-id": "ccc83fad-f5db-4c7d-a7ab-11bfa37f9e5c", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "b571b792-91fa-4a78-aeeb-ac8ef46448f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083237Z:ccc83fad-f5db-4c7d-a7ab-11bfa37f9e5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a40df1a667dffc8cbdb80e7a92773b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e58caf24-7c1f-44c7-b419-0c604e0e3077", + "x-ms-client-request-id": "5a40df1a667dffc8cbdb80e7a92773b5", + "x-ms-correlation-request-id": "b7255cbb-791f-41c4-bed1-27b9838bfb11", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "eda5d43e-2561-4a15-a4a6-73013dc8c794", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083240Z:b7255cbb-791f-41c4-bed1-27b9838bfb11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c614bf17db8b2d0aa44215462df2bb71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e94ba131-4533-4578-bea0-fd2f3aff4d23", + "x-ms-client-request-id": "c614bf17db8b2d0aa44215462df2bb71", + "x-ms-correlation-request-id": "6e3e76a9-2dad-4c30-9233-369f9ecedc61", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "fc2f75de-f07c-4220-943c-ddcfba9775bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083241Z:6e3e76a9-2dad-4c30-9233-369f9ecedc61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5fdaffd26ebbbf1803fce5b27c4f188", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc0422ef-a084-4181-9133-85f3d377ca46", + "x-ms-client-request-id": "c5fdaffd26ebbbf1803fce5b27c4f188", + "x-ms-correlation-request-id": "47ce0df0-4998-4525-ae11-d47e5d1ca8cd", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "4e90f794-29cf-4df2-a2ec-ac868b47bf89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083242Z:47ce0df0-4998-4525-ae11-d47e5d1ca8cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad3eea8007203ed1d512b63a5082d1d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0632d18-ace2-4ef4-996c-fd13fe41b5a3", + "x-ms-client-request-id": "ad3eea8007203ed1d512b63a5082d1d8", + "x-ms-correlation-request-id": "f9e13de6-15ec-426c-90e9-0e3f7652a121", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "6378437c-1e8c-4bd6-ba37-549b87b59e7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083244Z:f9e13de6-15ec-426c-90e9-0e3f7652a121" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9e90f1fae29f1c9cd59454c0dae06df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09e6f700-7bd0-4789-a429-b7cd0ded61a9", + "x-ms-client-request-id": "f9e90f1fae29f1c9cd59454c0dae06df", + "x-ms-correlation-request-id": "e3a848ab-b19f-4cc5-b762-1d45dd952b06", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "6e8854d1-445e-4843-8764-7295452b04e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083245Z:e3a848ab-b19f-4cc5-b762-1d45dd952b06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43c58d510eb4f651debfefd86fb66afe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a2496b4-d399-4c99-8359-69449a6b01d9", + "x-ms-client-request-id": "43c58d510eb4f651debfefd86fb66afe", + "x-ms-correlation-request-id": "37ece507-da09-4f50-9e38-d60f659a9b05", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "21515e39-296d-4901-862d-c0552291af34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083247Z:37ece507-da09-4f50-9e38-d60f659a9b05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "183cf66df8dad25f204ddfc6c1853126", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "388378ba-5150-4a99-a4ae-cbe85d580fd0", + "x-ms-client-request-id": "183cf66df8dad25f204ddfc6c1853126", + "x-ms-correlation-request-id": "6d130314-fceb-465b-aa79-623352744c58", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "ec5d42b9-b78d-414d-aa17-88a9591a99de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083248Z:6d130314-fceb-465b-aa79-623352744c58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3e9d60c8ebc1124bef21b69bef18116", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4adcebc5-263c-420a-9b7c-a695103333f6", + "x-ms-client-request-id": "c3e9d60c8ebc1124bef21b69bef18116", + "x-ms-correlation-request-id": "b05b66e7-1b52-4544-8d0a-a27167ba0ad5", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "aedcc89a-f4d8-4f19-8148-e0d5b2262566", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083249Z:b05b66e7-1b52-4544-8d0a-a27167ba0ad5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16de46eeee7259052ef222672e8a3559", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55df9726-99ab-454c-a262-c648701fd63d", + "x-ms-client-request-id": "16de46eeee7259052ef222672e8a3559", + "x-ms-correlation-request-id": "f66ef287-fc50-4dd6-9ee4-62b0198263a7", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "86a35928-fb63-4eef-96f8-11dec3b3a28f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083251Z:f66ef287-fc50-4dd6-9ee4-62b0198263a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98cbc98ea6cddf41d12b59e7dcf5142f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3098d77-6b01-4c24-83a5-db42ffb2d2b8", + "x-ms-client-request-id": "98cbc98ea6cddf41d12b59e7dcf5142f", + "x-ms-correlation-request-id": "67825869-6db0-4ec5-8dac-0450e2cbddad", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "de659433-70a7-4f49-826a-e032e6150201", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083252Z:67825869-6db0-4ec5-8dac-0450e2cbddad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ad7c8cb1aa61eb4d19095ca6bbde233", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e01e14f-d9ea-44ee-af65-cfe56de0b496", + "x-ms-client-request-id": "7ad7c8cb1aa61eb4d19095ca6bbde233", + "x-ms-correlation-request-id": "05a81b2e-7b97-4dc0-905a-0ca3c585bf1b", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "1b78701d-2417-4f6f-9a55-4d9125ac522a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083253Z:05a81b2e-7b97-4dc0-905a-0ca3c585bf1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4dbc2bde925484904ff4547941d7c38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aef76578-98f8-49ff-86f5-c5764178ca5c", + "x-ms-client-request-id": "f4dbc2bde925484904ff4547941d7c38", + "x-ms-correlation-request-id": "b9449215-7219-4a8a-b689-8272b6d9762f", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "acbabeca-ca4b-4413-85d3-c3e22ca658d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083254Z:b9449215-7219-4a8a-b689-8272b6d9762f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "669bf3debab274b214adc63c11777314", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2dbb2e18-e139-4831-a329-25d347ebcc6f", + "x-ms-client-request-id": "669bf3debab274b214adc63c11777314", + "x-ms-correlation-request-id": "dc44fe62-a509-41cd-ac11-19bca58011f0", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "86b12697-5572-4681-8fd7-54e7d57492d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083256Z:dc44fe62-a509-41cd-ac11-19bca58011f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a2926491f1ae2097f8f75a7d56d89b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2448354-f521-41eb-8723-5b31a63f1e7a", + "x-ms-client-request-id": "1a2926491f1ae2097f8f75a7d56d89b4", + "x-ms-correlation-request-id": "ff29cfd7-6ed8-4ec9-9ab1-bed55e77667e", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "cdebfa14-bbe1-4dd1-8550-d34f781e9883", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083257Z:ff29cfd7-6ed8-4ec9-9ab1-bed55e77667e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78eb5c137c2103810f66df77220c378d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1128d752-1e4d-45f8-90b6-da6c677a997e", + "x-ms-client-request-id": "78eb5c137c2103810f66df77220c378d", + "x-ms-correlation-request-id": "6328745e-4078-469b-b03d-5749913052cc", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "4d5d901e-0587-4f08-b303-70eeb49ea137", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083258Z:6328745e-4078-469b-b03d-5749913052cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6efe308b62f3be1eeab8e622440a9fa7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:32:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4541edc9-0d39-49e3-8ee9-e5d860e8cc6d", + "x-ms-client-request-id": "6efe308b62f3be1eeab8e622440a9fa7", + "x-ms-correlation-request-id": "1a20e852-f26f-4e07-8118-78cd4e12625b", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "338da841-ed3b-4804-ad0a-8d68589effbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083300Z:1a20e852-f26f-4e07-8118-78cd4e12625b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4281223fb8bccf2a4260ab33f91c072", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0cdc2f0-4e31-4d5b-9eff-e4e340efd9bb", + "x-ms-client-request-id": "b4281223fb8bccf2a4260ab33f91c072", + "x-ms-correlation-request-id": "339a9b7b-b4c5-47f4-857b-ce31d839f2e1", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "a1b3ede5-7e4e-4fa9-a113-6bea34fc3eef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083301Z:339a9b7b-b4c5-47f4-857b-ce31d839f2e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a41ce8581b6eb1c03e2d8e69955fbe04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "465009bb-dfd8-42f0-aef6-67da4b0e230a", + "x-ms-client-request-id": "a41ce8581b6eb1c03e2d8e69955fbe04", + "x-ms-correlation-request-id": "ec84c5a8-bfed-49f0-af91-0bb4abf5f884", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "acf61f98-0d51-4066-a970-ca1bf32d0050", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083302Z:ec84c5a8-bfed-49f0-af91-0bb4abf5f884" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f5438c682e38f013e31cacd586a7e58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ace1552a-5748-4b03-94ba-dd62631abe49", + "x-ms-client-request-id": "0f5438c682e38f013e31cacd586a7e58", + "x-ms-correlation-request-id": "fad14317-368e-43b2-a678-96e0631fe513", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "19453061-a2af-42d4-bbc1-31a4a15cb979", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083304Z:fad14317-368e-43b2-a678-96e0631fe513" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cc974f8fbee08385277765e6d893744", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "221d73c9-76e6-4171-9862-dedac9b607a8", + "x-ms-client-request-id": "5cc974f8fbee08385277765e6d893744", + "x-ms-correlation-request-id": "4b01cec8-4370-45bc-abe3-fbf558560baa", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "7492ab7b-1816-4efd-8b09-3dcf746dc11a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083305Z:4b01cec8-4370-45bc-abe3-fbf558560baa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07ec0568b03dd58fe78d653d51f359d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c81385e7-999f-468e-8016-75cb48f1304c", + "x-ms-client-request-id": "07ec0568b03dd58fe78d653d51f359d3", + "x-ms-correlation-request-id": "110a0dd6-84c5-4ee8-80b8-e05866f9f608", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "906a55d0-4019-47c7-a0ad-b31966dc8753", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083307Z:110a0dd6-84c5-4ee8-80b8-e05866f9f608" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "217035ae6295cb16ff4bbd6c0ca221b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c91e5d8c-b28e-455c-954a-49b1a31879da", + "x-ms-client-request-id": "217035ae6295cb16ff4bbd6c0ca221b5", + "x-ms-correlation-request-id": "22479c2f-243a-4b17-baee-2748f1b1e266", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "4e939796-53a2-4435-8a22-78e84b773628", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083308Z:22479c2f-243a-4b17-baee-2748f1b1e266" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "526585f9777d471ae5f4746195fbb75e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9c321ba-952c-4745-9cb0-dcb1b3b148a4", + "x-ms-client-request-id": "526585f9777d471ae5f4746195fbb75e", + "x-ms-correlation-request-id": "3b233031-4197-45df-8142-936e45620aaf", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "a973cdde-d27a-4169-a4d2-61ae490aea32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083309Z:3b233031-4197-45df-8142-936e45620aaf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38b0a21d161805afee2108f2f322c844", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ea09576-40b7-4334-b999-5c0ab7fcd141", + "x-ms-client-request-id": "38b0a21d161805afee2108f2f322c844", + "x-ms-correlation-request-id": "78d05be1-f742-42ae-a953-2f438dd0fbb0", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "35468287-6d4b-43dc-b88f-b58e5e1e938e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083310Z:78d05be1-f742-42ae-a953-2f438dd0fbb0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc44b06b068e36551a283ba1edb53604", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b52b9af-6c3e-4069-8564-f963b40ffe2e", + "x-ms-client-request-id": "cc44b06b068e36551a283ba1edb53604", + "x-ms-correlation-request-id": "5990a4c2-e53c-4ecc-bed8-1dcdc693fb17", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "6d2a5390-e29b-45a5-92a7-23bc2da42ff0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083312Z:5990a4c2-e53c-4ecc-bed8-1dcdc693fb17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "694e5e94e9f2e39cd55f635c6f2854c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09157b41-9d74-49f8-9b1b-a36c421e9b04", + "x-ms-client-request-id": "694e5e94e9f2e39cd55f635c6f2854c2", + "x-ms-correlation-request-id": "ca5fe4d7-d299-4dcc-96a7-318d9cb91397", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "46215837-8066-4935-b6b7-fa0107fdc47a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083313Z:ca5fe4d7-d299-4dcc-96a7-318d9cb91397" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4f5302beab617cf4d791df0da0e1839", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a83c089-5843-45b1-87da-2f4ae2e8b72c", + "x-ms-client-request-id": "e4f5302beab617cf4d791df0da0e1839", + "x-ms-correlation-request-id": "4334c7d3-3424-4179-b859-5b3205ca3216", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "6ebc8b29-8bcb-4750-863c-bdd8c533251f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083314Z:4334c7d3-3424-4179-b859-5b3205ca3216" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "945d04eb5fd482521461f62fa2f8c7f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "300bcfbb-a62c-446c-bb1e-c148a0bc23a8", + "x-ms-client-request-id": "945d04eb5fd482521461f62fa2f8c7f1", + "x-ms-correlation-request-id": "ed580d3e-6706-4432-a0ac-fff528a82b46", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "b77eda40-2ce3-4d6d-a537-68e789970438", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083316Z:ed580d3e-6706-4432-a0ac-fff528a82b46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd7579d451bfa94d8e371c79cbac08c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3c7f401-9058-4752-ac96-5d3eb58ffb9a", + "x-ms-client-request-id": "bd7579d451bfa94d8e371c79cbac08c7", + "x-ms-correlation-request-id": "e897bdd3-6eaf-47ce-8d69-83eead6ec927", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "47190892-4691-4ce0-adde-d9eaf86eb319", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083317Z:e897bdd3-6eaf-47ce-8d69-83eead6ec927" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b712a46bfcbccedde73d055f4a07454", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a235ccd-43bd-46ec-a4f2-263639620160", + "x-ms-client-request-id": "6b712a46bfcbccedde73d055f4a07454", + "x-ms-correlation-request-id": "3f08d924-7f55-4dc7-b760-817bbd096edb", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "88faca63-dd22-4cad-882d-7b9f01608f2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083318Z:3f08d924-7f55-4dc7-b760-817bbd096edb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "601b2bb15b989a7ab6b4059d42d8b667", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e961fa3-26db-418a-a72c-9ac4ca23e999", + "x-ms-client-request-id": "601b2bb15b989a7ab6b4059d42d8b667", + "x-ms-correlation-request-id": "5652ce6b-4d16-47fa-9c14-c330e87cb525", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "e463f367-2322-47fb-8a03-75ac44d22484", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083319Z:5652ce6b-4d16-47fa-9c14-c330e87cb525" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78e82f585c8714268ba9de4c80f7b5ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "428b3330-dfc1-49a7-81b1-3bd4dd589a77", + "x-ms-client-request-id": "78e82f585c8714268ba9de4c80f7b5ee", + "x-ms-correlation-request-id": "e04e7e96-e227-400e-b2a9-d85cac78e9a5", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "51997b24-5368-4aae-a79a-2488e91e9aa1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083321Z:e04e7e96-e227-400e-b2a9-d85cac78e9a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0c8c8c2a790eb2eb0d7b417b9508905", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de48372f-ce51-44b6-a986-61a1b747dc63", + "x-ms-client-request-id": "a0c8c8c2a790eb2eb0d7b417b9508905", + "x-ms-correlation-request-id": "cecf23fc-282d-438b-90c7-7b01ee35a2c4", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "9f15cba9-5417-45fb-b6d4-7644f0d34790", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083322Z:cecf23fc-282d-438b-90c7-7b01ee35a2c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4fd69bcfbb854cc0406d5ee7c2d19bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb65a7e4-08aa-45bb-91ba-bcd0665209f8", + "x-ms-client-request-id": "c4fd69bcfbb854cc0406d5ee7c2d19bf", + "x-ms-correlation-request-id": "2b66ef9a-f01e-46a3-b466-424a36ca5c56", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "dff1e09c-c4a3-4fe9-8a7b-62fc54280efc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083323Z:2b66ef9a-f01e-46a3-b466-424a36ca5c56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ada17fe1510b0d601fdc8b0a80f5a3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d0d6eff6-c3b2-45a0-9c81-e57bd4dc94e6", + "x-ms-client-request-id": "7ada17fe1510b0d601fdc8b0a80f5a3b", + "x-ms-correlation-request-id": "6ed931ee-fc5d-40d6-8d0b-19b1760c29d9", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "11aef3c7-bf00-48a4-acd8-a1011a979fd5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083324Z:6ed931ee-fc5d-40d6-8d0b-19b1760c29d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1790d920f1fac736fb739c8ad23f6e82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "11a9978d-4205-46b7-b7e7-8ade1b6ba14c", + "x-ms-client-request-id": "1790d920f1fac736fb739c8ad23f6e82", + "x-ms-correlation-request-id": "b52b164d-44bd-4468-a5c6-b3bd94fee4f3", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "0e976e96-0e4b-4bbc-8c07-12faa933ef27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083326Z:b52b164d-44bd-4468-a5c6-b3bd94fee4f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a218f4bd0f76a6f5924cc3ba331cacf4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6694608-8bac-44ff-85b0-a9ed469f04b3", + "x-ms-client-request-id": "a218f4bd0f76a6f5924cc3ba331cacf4", + "x-ms-correlation-request-id": "000096e1-73dc-4080-b7b8-ba89529c83eb", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "e26be571-2c87-41da-86ef-80644ae0788c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083328Z:000096e1-73dc-4080-b7b8-ba89529c83eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3ce9aab029d0dc5e1137f9c794cdec1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55f26913-9af3-4c93-87e1-2d07320d343d", + "x-ms-client-request-id": "a3ce9aab029d0dc5e1137f9c794cdec1", + "x-ms-correlation-request-id": "fae3b599-3e82-4d0b-a50e-5edf5c14bd53", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "53c715f8-c378-46f6-8802-94109c2b7ad5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083329Z:fae3b599-3e82-4d0b-a50e-5edf5c14bd53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4f2468fb8f710c4e3e985ad2d7b94de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51f44d13-7509-443c-8c17-3cb9dab1b0a6", + "x-ms-client-request-id": "b4f2468fb8f710c4e3e985ad2d7b94de", + "x-ms-correlation-request-id": "1b77617c-2f6e-415b-bdc3-b63b09f7e22e", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "992aa823-451a-4cd2-aa40-642c5c05241b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083330Z:1b77617c-2f6e-415b-bdc3-b63b09f7e22e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38dea7c7ca71bbe42e0bc16290582c45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34902130-16cc-4d70-a996-4ecc0a8f8bdc", + "x-ms-client-request-id": "38dea7c7ca71bbe42e0bc16290582c45", + "x-ms-correlation-request-id": "e6dfff28-c7db-4302-8305-e988180d2207", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "bde06750-ceef-4a79-8263-afc1accfbc4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083331Z:e6dfff28-c7db-4302-8305-e988180d2207" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec2b026ef829f3fdd5bdbfb37d17df65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81c3468a-adc4-45be-8824-d8f36ee03fee", + "x-ms-client-request-id": "ec2b026ef829f3fdd5bdbfb37d17df65", + "x-ms-correlation-request-id": "81b7a721-a34a-4256-9d2b-af4933006415", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "67b4df08-fd0a-4b5a-ada8-e905ee5bc17a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083333Z:81b7a721-a34a-4256-9d2b-af4933006415" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2d5a07fa56dc44f613785ecf762808a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4238b4e2-3a64-42db-b685-38688d9d9925", + "x-ms-client-request-id": "d2d5a07fa56dc44f613785ecf762808a", + "x-ms-correlation-request-id": "13ebd92f-74b3-4200-93c3-8a1f36b6abb6", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "5487c653-2ab6-4d42-9cd9-182e7176b52a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083334Z:13ebd92f-74b3-4200-93c3-8a1f36b6abb6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b3f3fbca750cfb4a9eb63b40b303e17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68aa114e-30a3-4556-a6e5-da73b0b2ccb0", + "x-ms-client-request-id": "2b3f3fbca750cfb4a9eb63b40b303e17", + "x-ms-correlation-request-id": "f6157ac7-c4a2-45aa-a09a-91f860d8b1e3", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "154d9032-058e-4a6a-b9a9-39f574b9ca22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083335Z:f6157ac7-c4a2-45aa-a09a-91f860d8b1e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efe35b2b5983c8d7b2668bf27211fc73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28103918-93a4-4b4d-8667-20e30ca5d1b7", + "x-ms-client-request-id": "efe35b2b5983c8d7b2668bf27211fc73", + "x-ms-correlation-request-id": "2178a030-6c34-40f9-96e6-cc9ad1572437", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "7b5c9164-49d4-4151-b072-2ce98ac0f065", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083336Z:2178a030-6c34-40f9-96e6-cc9ad1572437" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3df6343cb3d8d815eb052982429bb930", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09d14c9a-3fe4-4311-9366-c6beef37a58d", + "x-ms-client-request-id": "3df6343cb3d8d815eb052982429bb930", + "x-ms-correlation-request-id": "dea9233f-d25c-4cc8-aeaa-142137ea8f14", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "c692e0b0-46cc-43d9-a4d8-c1722e0d3a89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083338Z:dea9233f-d25c-4cc8-aeaa-142137ea8f14" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bc06ef9907e6307677779e91bc25c97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29990053-ff1b-4223-aea7-c4e226fe183e", + "x-ms-client-request-id": "9bc06ef9907e6307677779e91bc25c97", + "x-ms-correlation-request-id": "2dfb7221-9788-4db3-9019-e0bf623b990a", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "9f1a6ffe-f507-4c48-a972-ab1396d5b419", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083339Z:2dfb7221-9788-4db3-9019-e0bf623b990a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d677f0ef003a773e460b047e2f558516", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e778d65e-5513-4172-8cf7-6ffb9aa25d17", + "x-ms-client-request-id": "d677f0ef003a773e460b047e2f558516", + "x-ms-correlation-request-id": "7dbf3eb2-4cb1-4582-a53f-95e9edd00c8d", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "b9ec40e2-9d62-4130-9d8e-e9484f3f9f40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083340Z:7dbf3eb2-4cb1-4582-a53f-95e9edd00c8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04f85bad6051abf42d93d5613a2bbc28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9463cb0-5737-4cda-8e12-ee5bb08ab744", + "x-ms-client-request-id": "04f85bad6051abf42d93d5613a2bbc28", + "x-ms-correlation-request-id": "f3964a72-f8a5-4f13-97fa-9fa7d3ffe87e", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "b2d8410e-9c91-4fe8-a8db-fb18979a6941", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083342Z:f3964a72-f8a5-4f13-97fa-9fa7d3ffe87e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "529292a9e324f8f62f4954738c883312", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d9dfc35-6313-4a39-802f-ef07e569ca87", + "x-ms-client-request-id": "529292a9e324f8f62f4954738c883312", + "x-ms-correlation-request-id": "e74e106d-75e7-4dc5-9762-1f600674285d", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "a5407d47-bde6-4963-b2ad-26705283e916", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083343Z:e74e106d-75e7-4dc5-9762-1f600674285d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf3b62f157ca8e46fbcba8a62bdd3d1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6cd2845-cd15-456f-a78e-77fa249a9a2b", + "x-ms-client-request-id": "bf3b62f157ca8e46fbcba8a62bdd3d1a", + "x-ms-correlation-request-id": "865f3bec-106e-4d18-b222-842571a89e3f", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "e0fc5793-3508-439c-a6f1-ea0672997f28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083344Z:865f3bec-106e-4d18-b222-842571a89e3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dd4db4e32c3caf265ffd5080c801fa4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d0129b1-3d6e-4fbc-9159-94fce9f7ad67", + "x-ms-client-request-id": "9dd4db4e32c3caf265ffd5080c801fa4", + "x-ms-correlation-request-id": "23334598-a926-40c0-b8bb-d51dd5ee4750", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "abf675c4-24e6-4a2e-b7d7-f9e0f93d1daf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083345Z:23334598-a926-40c0-b8bb-d51dd5ee4750" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d76fc360fcef515e4c0357583b4fcd52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9b0b22e-82f4-4da2-a6b7-783672dd677e", + "x-ms-client-request-id": "d76fc360fcef515e4c0357583b4fcd52", + "x-ms-correlation-request-id": "0d86e8d9-831b-4397-809f-c81218396dc4", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "7e8904f9-d3dd-4926-b210-52a1a22b61fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083347Z:0d86e8d9-831b-4397-809f-c81218396dc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b025390b95b4be4e70715aca823e827a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "952dc4e7-4c7e-4dc8-8c12-b8b29babfeaf", + "x-ms-client-request-id": "b025390b95b4be4e70715aca823e827a", + "x-ms-correlation-request-id": "28b3b62c-bb21-4f95-bed2-825fa17f3e68", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "dcb1fd25-af31-49a0-881f-7a439d126144", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083348Z:28b3b62c-bb21-4f95-bed2-825fa17f3e68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "674603ac656d512a7d8251bfdb998f15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "366b4ec5-8111-456e-89c0-0eb1631402fa", + "x-ms-client-request-id": "674603ac656d512a7d8251bfdb998f15", + "x-ms-correlation-request-id": "438d3bd9-fe28-48b3-97c6-53aca58087d6", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "136769e8-9727-48d2-8222-c4958db1ae7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083349Z:438d3bd9-fe28-48b3-97c6-53aca58087d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2fc83316e5bcaf074b1667ea294cf0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0f01b11-d8b0-4313-9ff1-261b98f7cf50", + "x-ms-client-request-id": "d2fc83316e5bcaf074b1667ea294cf0d", + "x-ms-correlation-request-id": "a1ae2e10-d652-40f5-ac50-5adf2067a879", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "0fccfee8-5428-4fca-a5d3-e107c656e647", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083350Z:a1ae2e10-d652-40f5-ac50-5adf2067a879" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37acdc816509a5e40fd43331438fe2d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "372d2349-d6dc-4ca2-b479-e102e4918c73", + "x-ms-client-request-id": "37acdc816509a5e40fd43331438fe2d6", + "x-ms-correlation-request-id": "134b8976-ee0e-4766-9d4f-0f39ef81e273", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "a075b9c0-1e77-424c-8211-5e970744f8a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083352Z:134b8976-ee0e-4766-9d4f-0f39ef81e273" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe9845e1b0413d1f127bf3bcffacaee9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6ca3603-62b6-4f77-bdd3-62d20ef98d08", + "x-ms-client-request-id": "fe9845e1b0413d1f127bf3bcffacaee9", + "x-ms-correlation-request-id": "a421db06-9c68-470d-9bba-ebc8bee5794b", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "ebe97cfc-67a5-46e5-8406-dc431f8acc09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083353Z:a421db06-9c68-470d-9bba-ebc8bee5794b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff3e43b257edcc0b9e56c3873bbe86e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c4aaa8e-78c7-464d-9cb2-9e1678fb04ce", + "x-ms-client-request-id": "ff3e43b257edcc0b9e56c3873bbe86e4", + "x-ms-correlation-request-id": "b93b0128-226f-41ef-acbb-1d72cd7e8161", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "6ab3226a-f689-4c31-bebf-eae1a32aba25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083354Z:b93b0128-226f-41ef-acbb-1d72cd7e8161" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d9c8fced1fbd0ccbc6e258e7228a662", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9849d1ae-bd6c-49fe-82ce-78275f9f0185", + "x-ms-client-request-id": "5d9c8fced1fbd0ccbc6e258e7228a662", + "x-ms-correlation-request-id": "9bbe53f1-ba7d-4c71-90f4-4290e65c1f1b", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "2ef31d94-d152-4330-b51d-dd3100d3ef04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083356Z:9bbe53f1-ba7d-4c71-90f4-4290e65c1f1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "007e4925e3508ae939cc60eaed980253", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b72cde0-7a67-4387-a4b9-7842bd26b2c7", + "x-ms-client-request-id": "007e4925e3508ae939cc60eaed980253", + "x-ms-correlation-request-id": "fe949b4b-9f51-4ae8-bac9-6ed5dd6439e8", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "4cb999b6-9886-4b43-862b-8e96c0ea2976", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083357Z:fe949b4b-9f51-4ae8-bac9-6ed5dd6439e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fee0ef4510fe1ed776d427e327d5a76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb85463a-2344-42d1-8c64-a2927b89acd5", + "x-ms-client-request-id": "6fee0ef4510fe1ed776d427e327d5a76", + "x-ms-correlation-request-id": "c4573065-e029-48d5-9eac-310867ba429c", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "cecc2c95-a618-4312-8ca6-69e989991d8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083358Z:c4573065-e029-48d5-9eac-310867ba429c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f16160b08640ea94a612232f71e1e324", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:33:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "410ca0a3-5814-47bc-b6c7-c00edbc3a7e0", + "x-ms-client-request-id": "f16160b08640ea94a612232f71e1e324", + "x-ms-correlation-request-id": "0fcd62e2-9bd0-45d3-8975-3eee1820f2ff", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "85ee97c2-a991-4a9e-9b2c-a69446505727", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083359Z:0fcd62e2-9bd0-45d3-8975-3eee1820f2ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6399d16c373ad3535c9d88e2a06b58bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c41cb09f-3585-4ede-975f-58c731737889", + "x-ms-client-request-id": "6399d16c373ad3535c9d88e2a06b58bb", + "x-ms-correlation-request-id": "27729529-506c-480e-b1d2-5bbdc73b2ced", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "33f3e0ad-2ca0-41f6-b84e-d6029f68a789", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083401Z:27729529-506c-480e-b1d2-5bbdc73b2ced" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d3ae97210366e137a03c8fc2dbe7096", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28440d53-2bb8-4724-92f5-44ee56c8ccf4", + "x-ms-client-request-id": "8d3ae97210366e137a03c8fc2dbe7096", + "x-ms-correlation-request-id": "21b90229-64ff-4d29-8881-8f595a2cfbb5", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "169666a9-663f-4278-af71-7b2259c45aae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083402Z:21b90229-64ff-4d29-8881-8f595a2cfbb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60121e8af6e3783c0c8d95a2fdb14a3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23ed9659-6cc7-473d-bb42-3136ad11ef97", + "x-ms-client-request-id": "60121e8af6e3783c0c8d95a2fdb14a3b", + "x-ms-correlation-request-id": "42c07a2f-329d-454a-a7b7-504aec416779", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "24a1ccff-3487-4232-9e2a-01a5a6ec2744", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083404Z:42c07a2f-329d-454a-a7b7-504aec416779" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87bd68ba56a65bedbe2be8366e56a69e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7db82059-fa3e-42ce-a966-2c6f6437a4db", + "x-ms-client-request-id": "87bd68ba56a65bedbe2be8366e56a69e", + "x-ms-correlation-request-id": "9fdb3345-bd80-458c-bdd5-b81995459668", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "8eb234fb-845b-43c1-b8d8-a3e797b64a58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083405Z:9fdb3345-bd80-458c-bdd5-b81995459668" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8158f22cf7587bd8adc280a87b7070c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2fa1d7ec-ae50-4e06-abf3-de0fd8e19e7d", + "x-ms-client-request-id": "8158f22cf7587bd8adc280a87b7070c9", + "x-ms-correlation-request-id": "19e4e894-ab25-48b1-920d-2f34309a068c", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "c63b065d-e057-4dc1-b53e-d7dc77a95a7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083406Z:19e4e894-ab25-48b1-920d-2f34309a068c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5428db8e90034ef30b6a2b70e050ab5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5d9dcfc-9ff5-4565-802d-55871dd3c70d", + "x-ms-client-request-id": "c5428db8e90034ef30b6a2b70e050ab5", + "x-ms-correlation-request-id": "1e966bbd-6859-4564-b0da-da0ea5ab3348", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "fc3f7e7f-7d3a-41cb-a11a-8745227c2c71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083408Z:1e966bbd-6859-4564-b0da-da0ea5ab3348" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b76f7e7c859c2e28f42d9e4d544e04d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7049eddf-e220-4df7-a9fa-01bcb6f2e915", + "x-ms-client-request-id": "0b76f7e7c859c2e28f42d9e4d544e04d", + "x-ms-correlation-request-id": "08f0733d-e01f-4a2a-88b1-e68d3e8bbf7a", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "581b3405-f707-48e6-9a92-e7529bfa819c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083409Z:08f0733d-e01f-4a2a-88b1-e68d3e8bbf7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e07e1fbbe014439d032451a255206ca7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35c1720b-8654-48a6-ac1a-261c4541088b", + "x-ms-client-request-id": "e07e1fbbe014439d032451a255206ca7", + "x-ms-correlation-request-id": "9a6f2abe-519c-4c08-a624-4c13818c1881", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "75b6d822-e057-4c72-be67-1837af9ec636", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083410Z:9a6f2abe-519c-4c08-a624-4c13818c1881" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83c0cbb764faf070ab7f35be0f0a5eeb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88c27743-2aa9-4394-98ec-858c9b9c894c", + "x-ms-client-request-id": "83c0cbb764faf070ab7f35be0f0a5eeb", + "x-ms-correlation-request-id": "21f9a800-02f6-410d-9579-e2add533ca66", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "5160b337-9eb7-495e-8fd0-9c7ba0c18128", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083411Z:21f9a800-02f6-410d-9579-e2add533ca66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "effc54d5298707a05933083477406d6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a70b056b-fad6-441c-bd7a-ee3a6bc78e7b", + "x-ms-client-request-id": "effc54d5298707a05933083477406d6f", + "x-ms-correlation-request-id": "52f3cd0a-c544-4256-9d17-2544f3c383f6", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "31f5823d-9275-4a36-9687-555e42510aad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083413Z:52f3cd0a-c544-4256-9d17-2544f3c383f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a2c31d55c845653ae8e3595aadf33f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f601ce75-92ce-4706-aa81-b4b2c34ee5a4", + "x-ms-client-request-id": "0a2c31d55c845653ae8e3595aadf33f8", + "x-ms-correlation-request-id": "e4eb86c0-619a-4222-9d13-acccde5b56f9", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "51ba4ecb-b7f7-4783-9983-4d7df8009c8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083414Z:e4eb86c0-619a-4222-9d13-acccde5b56f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00cc65c57d248e202ab92ac75c3b786b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d6eda35-c62a-4b75-8db1-2cb450f2501d", + "x-ms-client-request-id": "00cc65c57d248e202ab92ac75c3b786b", + "x-ms-correlation-request-id": "10febd19-db89-431c-8cf1-01c947c4d2f1", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "07bb9e8a-dcda-4633-82d3-0cd9b2b13f6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083415Z:10febd19-db89-431c-8cf1-01c947c4d2f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dde8c61154de786701a540f8f40b5d79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "531e77ba-991f-4e71-a714-e9049281a550", + "x-ms-client-request-id": "dde8c61154de786701a540f8f40b5d79", + "x-ms-correlation-request-id": "ae223725-fa08-4a07-b319-8b6517dc25fa", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "2641adeb-c215-4f26-9b46-8d0a6bf6398d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083416Z:ae223725-fa08-4a07-b319-8b6517dc25fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "126f10ff6d73584b119edfca328bfa73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71d50246-6fe9-4dce-af00-a3283c48fa1a", + "x-ms-client-request-id": "126f10ff6d73584b119edfca328bfa73", + "x-ms-correlation-request-id": "096da24d-252e-46ff-8ac8-462a3d650758", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "c1e0d2f3-1011-46a1-99f0-e8dcefe2261d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083418Z:096da24d-252e-46ff-8ac8-462a3d650758" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e383c91556f77019fd53fe7e3d27991e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ed08f33-2829-4010-b9d2-d3352aa0ad24", + "x-ms-client-request-id": "e383c91556f77019fd53fe7e3d27991e", + "x-ms-correlation-request-id": "69fb11c9-92fc-4b66-872f-da7e4751f1cb", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "40b6c9e0-fec8-4193-b882-07e625679107", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083419Z:69fb11c9-92fc-4b66-872f-da7e4751f1cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cc7b05c66cba4f77a8fcc40749c4675", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa771993-0aa6-4a1f-bfe7-3481a38efbd7", + "x-ms-client-request-id": "4cc7b05c66cba4f77a8fcc40749c4675", + "x-ms-correlation-request-id": "7dcf7a17-46da-4262-ad29-0e11519238ae", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "3595a43b-54a1-4391-bef0-f7077d9a066b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083420Z:7dcf7a17-46da-4262-ad29-0e11519238ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ae3ccab7988a982f6fe14206ecc1be9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eec87566-8488-4b4c-bbbd-21843e22fa57", + "x-ms-client-request-id": "2ae3ccab7988a982f6fe14206ecc1be9", + "x-ms-correlation-request-id": "2bae8191-b9df-4678-a907-be6e05ec282f", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "853f653f-bedd-4c66-8ca0-f9135c1efc43", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083422Z:2bae8191-b9df-4678-a907-be6e05ec282f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "826ec004adc4afa7d2df696789d9fc60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99d09d7f-0a79-4c3b-9d06-625c3d8bff38", + "x-ms-client-request-id": "826ec004adc4afa7d2df696789d9fc60", + "x-ms-correlation-request-id": "823420be-329e-4176-9dc2-7ce00748959d", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "92e102b1-daba-4151-9cc5-aa556ba965b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083423Z:823420be-329e-4176-9dc2-7ce00748959d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70d3880d6f44e3962d1e56cc51d735ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a61e327-c2f3-4fb0-ac09-1d3838adbb45", + "x-ms-client-request-id": "70d3880d6f44e3962d1e56cc51d735ae", + "x-ms-correlation-request-id": "2128451a-44e0-4b3f-b877-5ab185907635", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "c17c32a6-b1b5-414e-b772-8532bc2ead2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083424Z:2128451a-44e0-4b3f-b877-5ab185907635" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b33be374c32efdb1243358a8101b1f1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51e28afc-b9d8-4044-b0e2-2436c554ba5f", + "x-ms-client-request-id": "b33be374c32efdb1243358a8101b1f1c", + "x-ms-correlation-request-id": "ed1a6e7d-91c0-46d8-86a7-e9ba789f01da", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "ae5cf4ac-32f1-46b5-a848-5238d9e17894", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083426Z:ed1a6e7d-91c0-46d8-86a7-e9ba789f01da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e613b402aaf994a42a8b54a557db5efb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aaf04a26-fc2b-4e33-8cc6-894fd3c5e22d", + "x-ms-client-request-id": "e613b402aaf994a42a8b54a557db5efb", + "x-ms-correlation-request-id": "a2f36e3e-7206-41cd-b8d2-6c2f1b52e9b2", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "47c4ae91-8603-40cd-b94c-8c98788682bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083427Z:a2f36e3e-7206-41cd-b8d2-6c2f1b52e9b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6f2bba9489e4932d6d54b1116edd212", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "681ae2f7-9ee7-452c-a944-1648be48f01a", + "x-ms-client-request-id": "a6f2bba9489e4932d6d54b1116edd212", + "x-ms-correlation-request-id": "4f77b740-154a-43b0-8a51-5e368404c8fd", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "5a728753-abaf-418d-aade-a115dd76d769", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083429Z:4f77b740-154a-43b0-8a51-5e368404c8fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cca3aff4fc3c9b43ea689a26f0ca649", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d68202b-650c-49f7-b6f2-363ea862e5f2", + "x-ms-client-request-id": "9cca3aff4fc3c9b43ea689a26f0ca649", + "x-ms-correlation-request-id": "06e4daa9-1eb9-4564-b7cf-af73d2a50c27", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "6af1b005-b047-4cc0-8420-17ff25b5a626", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083430Z:06e4daa9-1eb9-4564-b7cf-af73d2a50c27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55ff5dd47828ba7e81c90f245e937e3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0066d9e4-40ba-4426-abab-51514cb8ebcd", + "x-ms-client-request-id": "55ff5dd47828ba7e81c90f245e937e3c", + "x-ms-correlation-request-id": "475060a9-5a8c-441c-ad59-81d214078825", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "d88c96d2-cc76-48ac-b490-9093abec32bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083432Z:475060a9-5a8c-441c-ad59-81d214078825" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1da542b8c1115a37062967f7be8fdaca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aeacf78e-6431-4982-aa41-8773aafce430", + "x-ms-client-request-id": "1da542b8c1115a37062967f7be8fdaca", + "x-ms-correlation-request-id": "717d3314-4fe7-4156-8081-457f62891e6c", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "9632a58d-d857-4961-af92-509ac627c2fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083433Z:717d3314-4fe7-4156-8081-457f62891e6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b93c022f7dee86eabb0f1af93f906bab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "142ece45-b22a-452c-97f2-ee222c037a8a", + "x-ms-client-request-id": "b93c022f7dee86eabb0f1af93f906bab", + "x-ms-correlation-request-id": "7f97792a-09fb-4b6c-bce4-19b7ed5d0a7e", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "aa481afe-9f26-43d9-b1b7-76788b8624a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083434Z:7f97792a-09fb-4b6c-bce4-19b7ed5d0a7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2de94d288966133825a44eff1187fbf2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cb8429d-40bd-4dd2-84dd-3e39aee06746", + "x-ms-client-request-id": "2de94d288966133825a44eff1187fbf2", + "x-ms-correlation-request-id": "a84641f5-6551-4ecb-bbd5-a62c67b45899", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "af97c063-094b-403f-897d-6468612dfbdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083436Z:a84641f5-6551-4ecb-bbd5-a62c67b45899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cf545efc4563a4d571f6101a63d1a76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f516681a-4e9d-479a-b77d-df4a0ac26837", + "x-ms-client-request-id": "5cf545efc4563a4d571f6101a63d1a76", + "x-ms-correlation-request-id": "de468277-f0af-438b-ad42-e8074e261bbe", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "a3dc1c40-772f-43f3-98d4-2eca595908d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083437Z:de468277-f0af-438b-ad42-e8074e261bbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71cebcbdada6a563ca29944a2feb7534", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e27d1a00-f458-4959-aad4-8e69fd01a1ed", + "x-ms-client-request-id": "71cebcbdada6a563ca29944a2feb7534", + "x-ms-correlation-request-id": "d2f3815f-f389-4872-9703-2d55ebd2b1dc", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "08f42cd7-ca03-4ad5-895d-6b1ed136b0ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083438Z:d2f3815f-f389-4872-9703-2d55ebd2b1dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa0a28140e9b645400aed54728376ce8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "abb5b287-1dd8-4aec-934b-60627131eb78", + "x-ms-client-request-id": "fa0a28140e9b645400aed54728376ce8", + "x-ms-correlation-request-id": "c4b9057b-52f9-4ab3-9d7e-41ae3bbc47c2", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "67f06df7-3ba6-4954-b556-37fd0c193979", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083439Z:c4b9057b-52f9-4ab3-9d7e-41ae3bbc47c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5541d78a89b8424be14f922d30030b6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4eb56864-91cb-41f4-bc3d-466c73d99aae", + "x-ms-client-request-id": "5541d78a89b8424be14f922d30030b6b", + "x-ms-correlation-request-id": "edbf0916-d89d-4ab6-a1cc-18887292b4fe", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "dc028550-074b-4770-a259-1b63d6246c7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083441Z:edbf0916-d89d-4ab6-a1cc-18887292b4fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7eec2ca91f33aedb676a71f7d71c7d93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64bc3cfc-10cb-4d69-9e2b-e032247820bf", + "x-ms-client-request-id": "7eec2ca91f33aedb676a71f7d71c7d93", + "x-ms-correlation-request-id": "623566d4-6ed8-417f-b276-0547b7604abe", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "422d5d64-ad85-495c-8958-953738c929db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083442Z:623566d4-6ed8-417f-b276-0547b7604abe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57c0acbc20aa8b7bdcc7194b7c2634fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "411558b0-a7d1-42d3-a483-0b81a773e5a4", + "x-ms-client-request-id": "57c0acbc20aa8b7bdcc7194b7c2634fc", + "x-ms-correlation-request-id": "790eac53-e966-44f6-a3a2-cac64f35ef0f", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "b7e63121-a66c-4f23-91ab-3dd8501675e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083443Z:790eac53-e966-44f6-a3a2-cac64f35ef0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb9d69a3ee4a6ab4fc92ed4e18546ac5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "326ccc8b-7c1e-4683-add6-04b9202a8d6e", + "x-ms-client-request-id": "fb9d69a3ee4a6ab4fc92ed4e18546ac5", + "x-ms-correlation-request-id": "ef3bbc16-3ac0-41e7-8232-a5b50ed7d47e", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "3eccd130-16c5-45da-a19b-4daebc0ecf27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083445Z:ef3bbc16-3ac0-41e7-8232-a5b50ed7d47e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8470fed1b34389c1b061a16b068f3240", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b7fa78cf-f30e-4c98-bb64-02d6fcee75b3", + "x-ms-client-request-id": "8470fed1b34389c1b061a16b068f3240", + "x-ms-correlation-request-id": "85c4aca3-5155-457d-b11f-10b50c81a628", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "9ce39da8-ec46-455e-a028-1d929c7a88ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083446Z:85c4aca3-5155-457d-b11f-10b50c81a628" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d537435827ece48f7565b18322d7288", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84e6ac8f-d1ab-471d-8f81-021c31a0570b", + "x-ms-client-request-id": "6d537435827ece48f7565b18322d7288", + "x-ms-correlation-request-id": "a493647d-df30-4123-b3a5-218a92e9b0a8", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "8d7145b2-485d-4c7e-99b9-1642d4917ccc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083447Z:a493647d-df30-4123-b3a5-218a92e9b0a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e7a535cb0b6efb9a8144ae94d49636c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e75f4a0c-7baf-4195-b804-e9626497c5ff", + "x-ms-client-request-id": "7e7a535cb0b6efb9a8144ae94d49636c", + "x-ms-correlation-request-id": "850ae663-b483-40aa-ada2-a84f52e53078", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "9eb63464-be96-46a4-8d7a-bb221ccb46fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083448Z:850ae663-b483-40aa-ada2-a84f52e53078" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a318ad60fc004f47b6a28cec58a95683", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "173a9b1f-fd5f-4939-b373-acd790e8cfec", + "x-ms-client-request-id": "a318ad60fc004f47b6a28cec58a95683", + "x-ms-correlation-request-id": "829c0a6c-ffa0-4a20-8d06-76aa75f09313", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "aa38630d-2d58-427d-93a8-5f45dbcad239", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083450Z:829c0a6c-ffa0-4a20-8d06-76aa75f09313" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b30e18eeb415858aba64c569375f81ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0cf04b3-2699-45da-af83-d2fe88b11af6", + "x-ms-client-request-id": "b30e18eeb415858aba64c569375f81ae", + "x-ms-correlation-request-id": "9dc028d9-85b3-4e55-9178-bf6455662452", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "8191a287-705d-49a9-8c1a-1d50a506599f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083451Z:9dc028d9-85b3-4e55-9178-bf6455662452" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85b7eef2ce145f870c2ac71323cd97fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e96d9072-8448-4eb9-9f5a-bd6d94192ad1", + "x-ms-client-request-id": "85b7eef2ce145f870c2ac71323cd97fe", + "x-ms-correlation-request-id": "72d3be18-538b-4446-a7c8-5082a1d0ee62", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "a80f1a5e-7a4f-4c02-b965-5a8daf613553", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083452Z:72d3be18-538b-4446-a7c8-5082a1d0ee62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34fac7beaf3aac572393e99c37de1857", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5ce4cf9-2acf-4b7b-8639-a4c0d74922c6", + "x-ms-client-request-id": "34fac7beaf3aac572393e99c37de1857", + "x-ms-correlation-request-id": "8b441c3f-cf15-4f91-b005-0835a8ffe1ef", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "8ec26c13-7d0e-4ddb-ae18-71885a6507fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083454Z:8b441c3f-cf15-4f91-b005-0835a8ffe1ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69f9de20d1f1206e91aea7eaec7662ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7cb2b4ad-39de-484f-804b-8a8adff68b31", + "x-ms-client-request-id": "69f9de20d1f1206e91aea7eaec7662ed", + "x-ms-correlation-request-id": "a5a3244e-3ec5-42fe-8d6a-cee6a3248843", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "e51ba77e-994f-464a-a027-faf2a952fdf5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083455Z:a5a3244e-3ec5-42fe-8d6a-cee6a3248843" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6faac6cc4d644373970b6181e5ea282e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f35f7e82-7f70-4277-896b-d1a545ce704c", + "x-ms-client-request-id": "6faac6cc4d644373970b6181e5ea282e", + "x-ms-correlation-request-id": "03b16687-87c3-4a86-9a91-a50a72944469", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "df9f8bcf-0bb7-4fa3-8ffe-63e3a8de1ebb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083456Z:03b16687-87c3-4a86-9a91-a50a72944469" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44f270122dd3ec0d58daa38c086cbfac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c89d45d-2c26-4290-b64b-40a63e865c41", + "x-ms-client-request-id": "44f270122dd3ec0d58daa38c086cbfac", + "x-ms-correlation-request-id": "39dd50a1-6d69-4e14-b950-7cbc968e2a2f", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "51e028c0-9352-4178-b56e-67d9f9ea2ffb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083458Z:39dd50a1-6d69-4e14-b950-7cbc968e2a2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70d0fc30a933d3f26bb6d2e56fed3aa6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:34:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d8d2cd2-c2b6-4a1b-b625-6defbf180ded", + "x-ms-client-request-id": "70d0fc30a933d3f26bb6d2e56fed3aa6", + "x-ms-correlation-request-id": "122aa5cc-a666-4330-8fc3-799404e49551", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "7ed080cc-4823-4ba7-8325-e4abf5750e83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083459Z:122aa5cc-a666-4330-8fc3-799404e49551" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bd879851d839f1ab9be168aaae73a2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca98678e-334d-4199-b617-952932bcc948", + "x-ms-client-request-id": "7bd879851d839f1ab9be168aaae73a2a", + "x-ms-correlation-request-id": "7d065d24-1134-4ddf-bcc7-7c79cd0533e7", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "f4a956a7-6cf4-4475-8656-12e2d10264b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083500Z:7d065d24-1134-4ddf-bcc7-7c79cd0533e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e950b44cb81a68fa7e1ed91c5b277d6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58644f68-cd8c-41b0-b9c0-c5b2da83fb58", + "x-ms-client-request-id": "e950b44cb81a68fa7e1ed91c5b277d6a", + "x-ms-correlation-request-id": "5ea57cff-33cc-49a8-9f96-b9dc12290f30", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "9500fb11-beed-4346-8e94-164232e4cd5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083502Z:5ea57cff-33cc-49a8-9f96-b9dc12290f30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f06fc9f43931329e130b67592672983", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be9c95c4-4499-4196-8067-acf5729a3185", + "x-ms-client-request-id": "8f06fc9f43931329e130b67592672983", + "x-ms-correlation-request-id": "1e2dbf22-2479-40a4-8312-eae198ed039c", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "22e9f3f8-6bd8-4481-bd6a-4ece1ba4909d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083503Z:1e2dbf22-2479-40a4-8312-eae198ed039c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb99a77c519dcd8c7e6ffd6444fe4491", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ad37e61-e199-4720-bcd9-8c30cc8822f7", + "x-ms-client-request-id": "bb99a77c519dcd8c7e6ffd6444fe4491", + "x-ms-correlation-request-id": "9d7ca55e-c235-43bf-8555-6ff88c4b3e79", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "15af3ef2-57e1-4c42-b690-f8394885ac22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083504Z:9d7ca55e-c235-43bf-8555-6ff88c4b3e79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "adebab40aae108978b3c07e90185d616", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a70f455-1bc3-4913-9cbd-1441d9075f9b", + "x-ms-client-request-id": "adebab40aae108978b3c07e90185d616", + "x-ms-correlation-request-id": "d7d4df5e-c396-4930-813d-eae61979f511", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "10d03818-5853-4a8a-99f4-e0712d490f6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083506Z:d7d4df5e-c396-4930-813d-eae61979f511" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b39f55f5c28d4dcd7038112346c4cfe3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34576385-f231-4891-969b-846c6729c98a", + "x-ms-client-request-id": "b39f55f5c28d4dcd7038112346c4cfe3", + "x-ms-correlation-request-id": "ea0e9a14-4a29-4acf-8c26-3f6596758646", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "35945615-2de8-4f76-a784-4f80d8cd2037", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083507Z:ea0e9a14-4a29-4acf-8c26-3f6596758646" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e63424ec7b7cd1a210912f604aa2ccf8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6af4ea11-a87c-44e6-89c9-f0d4c02be6bc", + "x-ms-client-request-id": "e63424ec7b7cd1a210912f604aa2ccf8", + "x-ms-correlation-request-id": "7e3bb9ca-5267-4dea-a79e-cfff1ac18ba1", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "48a03d99-fc27-4d37-bcf0-533c076f4feb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083508Z:7e3bb9ca-5267-4dea-a79e-cfff1ac18ba1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee6fe799905e7e03de9d3da89973c2c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9915ae92-70ac-40f8-bd9f-f99ed0c4a6cb", + "x-ms-client-request-id": "ee6fe799905e7e03de9d3da89973c2c7", + "x-ms-correlation-request-id": "d0e5fe53-3876-4334-a615-83a3f347fce2", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "e1b89b31-cfee-4926-876f-e6cf0a10ab6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083510Z:d0e5fe53-3876-4334-a615-83a3f347fce2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dcfd236df051799ab2cda3fc926c02cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bedb096a-f17a-4d33-a5cd-7a217e73dab1", + "x-ms-client-request-id": "dcfd236df051799ab2cda3fc926c02cd", + "x-ms-correlation-request-id": "9ba22064-f5cb-48d7-a873-5edced4e7ea9", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "26830fbc-037a-46c4-a4fa-97633c876b31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083511Z:9ba22064-f5cb-48d7-a873-5edced4e7ea9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f8a196ce0545b8420b508de3ef9389d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0bcf7d4-3b4f-4804-984a-69bdeb814314", + "x-ms-client-request-id": "5f8a196ce0545b8420b508de3ef9389d", + "x-ms-correlation-request-id": "c2c656dd-4ede-4eb3-9902-8f7df9fe94bf", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "733124ad-b5ea-43ed-bb4a-f3df634d9b4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083512Z:c2c656dd-4ede-4eb3-9902-8f7df9fe94bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27f368cfefa4a9a64cf63c91ed07ec72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e78cbdb-6419-4a96-a113-7b7bd07fcf88", + "x-ms-client-request-id": "27f368cfefa4a9a64cf63c91ed07ec72", + "x-ms-correlation-request-id": "21d24a62-7493-491f-a3b4-d1e34eeceebf", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "7e6b8fc4-9c49-4494-abf8-a138137dbd98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083514Z:21d24a62-7493-491f-a3b4-d1e34eeceebf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "803c6f9b63e88d729ea1bb9ce8bb3ab8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d180dc95-08fd-4246-aba2-9d8a73b0f75c", + "x-ms-client-request-id": "803c6f9b63e88d729ea1bb9ce8bb3ab8", + "x-ms-correlation-request-id": "4de485a5-0d9b-4db4-abab-67997db49a5f", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "530d1892-306f-422f-9a5b-bfe5e27cc737", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083515Z:4de485a5-0d9b-4db4-abab-67997db49a5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a2d0594db797c2972e1125ea4f36e19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9768fb6e-572b-475e-b3f1-131bb63f1dc7", + "x-ms-client-request-id": "2a2d0594db797c2972e1125ea4f36e19", + "x-ms-correlation-request-id": "d3f4f4e8-9a48-4f4c-ac79-0d20ec894e75", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "c5bf457a-210c-41f8-a82f-3f4a451b52b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083516Z:d3f4f4e8-9a48-4f4c-ac79-0d20ec894e75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce4395c8b8bd6bb4f56588033309c191", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "367343e7-18b2-4e12-a4ad-dcbfb40a88a4", + "x-ms-client-request-id": "ce4395c8b8bd6bb4f56588033309c191", + "x-ms-correlation-request-id": "ba916fac-99c0-4977-951c-0e957040e30f", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "39009077-fa33-47cd-9fd4-b7a9e70a9200", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083518Z:ba916fac-99c0-4977-951c-0e957040e30f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7fc83bbc1d9bff946c00d065013e9aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50a45840-c5e9-4250-97df-15172218bdac", + "x-ms-client-request-id": "e7fc83bbc1d9bff946c00d065013e9aa", + "x-ms-correlation-request-id": "a6a573d4-d1ef-42dd-ad78-f7fba2afab8e", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "1a41d4b8-c552-42bc-958f-98d6fa7cc4e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083519Z:a6a573d4-d1ef-42dd-ad78-f7fba2afab8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52d3a2336c78dcfb51c1341352254868", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "97736409-5a15-4d94-b70f-798e454174fa", + "x-ms-client-request-id": "52d3a2336c78dcfb51c1341352254868", + "x-ms-correlation-request-id": "04ba70b3-6808-4175-b75a-ffe5b3902efb", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "cab3fc74-454b-445f-8e09-fa18e0331b9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083520Z:04ba70b3-6808-4175-b75a-ffe5b3902efb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20a3812086f7063f9c8388fdabad1ae1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5687b37-d9ff-41a7-ba85-666e0987c690", + "x-ms-client-request-id": "20a3812086f7063f9c8388fdabad1ae1", + "x-ms-correlation-request-id": "426cfb97-3bd1-458c-bb13-0afcfc154a11", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "f9db3999-6168-46a7-9d69-535e2111eba3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083521Z:426cfb97-3bd1-458c-bb13-0afcfc154a11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91cfdd7c6e354f18872096178de56d20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7856660e-0416-4dc6-aec1-d6d39bebb158", + "x-ms-client-request-id": "91cfdd7c6e354f18872096178de56d20", + "x-ms-correlation-request-id": "8e6b6a23-650e-4598-a6cc-9adc801a199c", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "90ab80b9-14ec-4486-a9dd-3908c6e7923e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083523Z:8e6b6a23-650e-4598-a6cc-9adc801a199c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfe6a477c870acb362cdb5f5e4fe30a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72e88179-9418-456c-a16f-b57d3682c295", + "x-ms-client-request-id": "cfe6a477c870acb362cdb5f5e4fe30a3", + "x-ms-correlation-request-id": "71e7726b-15b7-41e7-81c5-326922fa4004", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "c4e28a00-6456-49b3-bea3-dcf2fe587a17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083524Z:71e7726b-15b7-41e7-81c5-326922fa4004" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "759652a6b755b133685499d7ef2779b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea81430a-5ab6-4130-a18f-8be3d09ecfdc", + "x-ms-client-request-id": "759652a6b755b133685499d7ef2779b6", + "x-ms-correlation-request-id": "4b45024a-2c49-4bd6-96ed-b4d77272a7cb", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "5009061b-c517-46e4-956f-2dcb94b03282", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083525Z:4b45024a-2c49-4bd6-96ed-b4d77272a7cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "068667164bc7b37129222e68b9236a89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94cb7090-b251-47ef-a0c3-c2673f13147c", + "x-ms-client-request-id": "068667164bc7b37129222e68b9236a89", + "x-ms-correlation-request-id": "de93e5a7-105e-48db-9274-a6f4bc660ce0", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "55b1ea36-a0a2-4036-87da-fd18cbc16cad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083527Z:de93e5a7-105e-48db-9274-a6f4bc660ce0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a71f3eff74fbfca7134671c2fdcbd3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48aae075-8f5d-40b7-84de-18ec274b0e29", + "x-ms-client-request-id": "3a71f3eff74fbfca7134671c2fdcbd3a", + "x-ms-correlation-request-id": "7ab57dfd-4ced-4c1c-9b32-563346928b9c", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "8464cef7-7c08-47c4-966b-9e92917cd5f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083528Z:7ab57dfd-4ced-4c1c-9b32-563346928b9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7cdefe5329785bdce1e24b3288caf845", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "900b1f5a-c574-4510-9ad4-9e1d528e2b8c", + "x-ms-client-request-id": "7cdefe5329785bdce1e24b3288caf845", + "x-ms-correlation-request-id": "fa7ee5be-ee76-44e5-be78-a7f60129c34b", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "bc7d63e7-5f43-47cc-881e-f90d8c346b86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083529Z:fa7ee5be-ee76-44e5-be78-a7f60129c34b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fce70fe93fb61e679cc69592e454844d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "254b2f10-c818-4d62-8ac0-3ef77f45cde9", + "x-ms-client-request-id": "fce70fe93fb61e679cc69592e454844d", + "x-ms-correlation-request-id": "df730f9c-ff1b-497b-8169-8aa8cf3bb3c0", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "69d19e7a-7d75-4704-ac0a-3d3d95cb022b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083531Z:df730f9c-ff1b-497b-8169-8aa8cf3bb3c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba14f465ee44c5101615586cac9736a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98dcaf58-60bc-49cd-b82b-bf33fa9342a0", + "x-ms-client-request-id": "ba14f465ee44c5101615586cac9736a6", + "x-ms-correlation-request-id": "cac82144-e51d-43ed-a6b8-5938ba05d5e2", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "f54c72f5-ffe8-4fe3-b949-98ee9d96263b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083532Z:cac82144-e51d-43ed-a6b8-5938ba05d5e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f33213cc0f5148497c0dfb19349778d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb475d9f-f374-4450-9a6b-280db86c9189", + "x-ms-client-request-id": "1f33213cc0f5148497c0dfb19349778d", + "x-ms-correlation-request-id": "c343de4e-5632-407a-a74f-3af8b28cbbe8", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "be37600b-965c-4c2e-ac13-0b6d0ea13380", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083533Z:c343de4e-5632-407a-a74f-3af8b28cbbe8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94cdfe5e3db5fa01ff21e5a0e6fa7205", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ef47591-26fe-49b6-903f-75ae5132070e", + "x-ms-client-request-id": "94cdfe5e3db5fa01ff21e5a0e6fa7205", + "x-ms-correlation-request-id": "55bfe22b-0e91-4b4f-9d27-00ec710c2a06", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "123147d9-0f73-4a94-bbdb-6ddd195c25a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083534Z:55bfe22b-0e91-4b4f-9d27-00ec710c2a06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c256ef8f6421a558700023840e5e31cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "639c5215-5ccf-4132-bc41-1e461e4bcee7", + "x-ms-client-request-id": "c256ef8f6421a558700023840e5e31cd", + "x-ms-correlation-request-id": "60bb9ac3-93ab-4392-a2f7-10b4e88e3fea", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "b37d7612-a772-47ec-b111-182f2c03465a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083536Z:60bb9ac3-93ab-4392-a2f7-10b4e88e3fea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad0ecb9ea2cafef0203820d3dae32e9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4849bee9-ba2e-4940-9710-4e780f94c5f2", + "x-ms-client-request-id": "ad0ecb9ea2cafef0203820d3dae32e9c", + "x-ms-correlation-request-id": "023402c3-c385-4919-8530-f23ae7fbff70", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "ac53f3f0-dc10-4bc7-8693-c3bf6b354df7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083537Z:023402c3-c385-4919-8530-f23ae7fbff70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a422da4db4f2f96ca62723b51a7ceca0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5f30822-faee-472d-944d-cc23b0679114", + "x-ms-client-request-id": "a422da4db4f2f96ca62723b51a7ceca0", + "x-ms-correlation-request-id": "8c607e1a-2ae8-497d-bef4-c9ac6b9731e8", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "c8ce8c90-1603-4201-8f87-8734275bb240", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083538Z:8c607e1a-2ae8-497d-bef4-c9ac6b9731e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b0218efc4ecec3aff58a2e84484ca8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af94ea07-246d-4cea-9459-e220be0c061b", + "x-ms-client-request-id": "1b0218efc4ecec3aff58a2e84484ca8d", + "x-ms-correlation-request-id": "499781fe-580b-41b4-9874-e8447f47fef3", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "decc38bf-938a-40a0-a695-dd889d58f458", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083540Z:499781fe-580b-41b4-9874-e8447f47fef3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "343687d28d3ceadb5f1407a27e3ae3a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a899a977-82ba-4cee-a487-fafc19e19e53", + "x-ms-client-request-id": "343687d28d3ceadb5f1407a27e3ae3a3", + "x-ms-correlation-request-id": "312d64c3-9e1d-490b-9a8f-d412d055e9f4", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "a8268879-ff8f-4149-bdac-e1b2a39cd553", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083541Z:312d64c3-9e1d-490b-9a8f-d412d055e9f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2e3804c12e188afa035a5991283b521", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4b0894d-1074-44fb-bb3b-623a1d27806e", + "x-ms-client-request-id": "c2e3804c12e188afa035a5991283b521", + "x-ms-correlation-request-id": "85435dba-8173-460f-a5b0-1b932f77c126", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "4efaade3-e625-4524-b008-c1e2ad5b3995", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083542Z:85435dba-8173-460f-a5b0-1b932f77c126" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93e3965db74662633d18bcd8bd976dc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74444b5f-2542-4288-8498-eb7b80fee4d9", + "x-ms-client-request-id": "93e3965db74662633d18bcd8bd976dc4", + "x-ms-correlation-request-id": "6bd7c82b-4366-4139-b311-a2c74e2a9df5", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "60e8eed9-4127-49da-a6e7-610f99160818", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083544Z:6bd7c82b-4366-4139-b311-a2c74e2a9df5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c39cfe7508a1bfabd7ad9307e841d7db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "738dc5b9-adaf-4737-925d-f04f144b66ec", + "x-ms-client-request-id": "c39cfe7508a1bfabd7ad9307e841d7db", + "x-ms-correlation-request-id": "c77da8a4-b1d9-464f-8962-f3da61bb1ac1", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "c14ac86c-ee19-4c73-836e-a15ef5bf2620", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083545Z:c77da8a4-b1d9-464f-8962-f3da61bb1ac1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e845e55f5057945d1c8084c956d7cb08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "015c9988-7519-499d-b971-2353866bd06a", + "x-ms-client-request-id": "e845e55f5057945d1c8084c956d7cb08", + "x-ms-correlation-request-id": "9f476fc6-673b-49a1-93ad-457740a84caa", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "01855a2a-cd7e-40ae-be1f-e9cbf3f8605e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083546Z:9f476fc6-673b-49a1-93ad-457740a84caa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1424e0c7f1e75480ea24bc99235c7afc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1eb228a7-e865-4ac2-a365-0fdab876bda9", + "x-ms-client-request-id": "1424e0c7f1e75480ea24bc99235c7afc", + "x-ms-correlation-request-id": "a122b789-4c0d-406b-9ad0-b23d1ac2e1ef", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "59496143-e7b2-434c-acce-0496c33b1441", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083547Z:a122b789-4c0d-406b-9ad0-b23d1ac2e1ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d779e0408551256ca107a62083e268ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f13d7db5-5fb7-48cb-958c-d58e66e403b7", + "x-ms-client-request-id": "d779e0408551256ca107a62083e268ff", + "x-ms-correlation-request-id": "5302c016-f7ea-4077-bd71-9a3a1289562a", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "e82afb62-12b2-490f-8209-93927f5ed4f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083549Z:5302c016-f7ea-4077-bd71-9a3a1289562a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "073f8be1c31c6df465f1fd3393c470c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7f131c1-109e-4202-a17b-9602287b52cd", + "x-ms-client-request-id": "073f8be1c31c6df465f1fd3393c470c0", + "x-ms-correlation-request-id": "5fe36854-096d-49fc-a5b0-f3c25678ac60", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "aecf4081-0629-4741-afa9-f782b29a1f7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083550Z:5fe36854-096d-49fc-a5b0-f3c25678ac60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76888806f35e41b774ff72df4a5fd108", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d198f412-9e25-4277-89ca-67e71f957025", + "x-ms-client-request-id": "76888806f35e41b774ff72df4a5fd108", + "x-ms-correlation-request-id": "fcf09885-dce7-4de1-b057-9f0b11bc452b", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "10b0ca0d-1361-451f-973c-cd7424b60a16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083551Z:fcf09885-dce7-4de1-b057-9f0b11bc452b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98b7bcbc721c7cdfec0b7260883991dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2afade71-2b07-4ff6-8871-ee2f934cbcf9", + "x-ms-client-request-id": "98b7bcbc721c7cdfec0b7260883991dd", + "x-ms-correlation-request-id": "45a3b746-748c-433b-813f-0548689dea39", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "f6e92157-a20a-4f3d-a9ba-81c7a12cd409", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083552Z:45a3b746-748c-433b-813f-0548689dea39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa19e696f15aeea1d3fe931d50142205", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6a21f7b-b571-4a74-b8bc-29c696caf891", + "x-ms-client-request-id": "fa19e696f15aeea1d3fe931d50142205", + "x-ms-correlation-request-id": "d77bfa30-35ae-4829-86bb-23c38e0ed9e6", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "383886b2-9b36-4695-aba1-b7e790e03583", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083554Z:d77bfa30-35ae-4829-86bb-23c38e0ed9e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d777f420d80d94a4a90b8a528157b83a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dcc79eb4-e713-48b8-a1d0-deef9188600e", + "x-ms-client-request-id": "d777f420d80d94a4a90b8a528157b83a", + "x-ms-correlation-request-id": "497e2052-1cb6-478f-b2a1-e05779cca0f3", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "833b19eb-4b95-4abf-bc74-dbb802826556", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083555Z:497e2052-1cb6-478f-b2a1-e05779cca0f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6449956ed646caae1bc8c41edfc22bd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5e90986-7823-4ab8-93c5-bd0d79e08fb8", + "x-ms-client-request-id": "6449956ed646caae1bc8c41edfc22bd7", + "x-ms-correlation-request-id": "15c18db9-8458-425e-ba48-f80c08ff1376", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "9ac8addb-6f65-4abc-9adb-7ba52255c450", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083556Z:15c18db9-8458-425e-ba48-f80c08ff1376" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "933f6ce9b9c2bed04185514e664e6c7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b43d4ba3-91ef-4ed9-98aa-9027f47d1100", + "x-ms-client-request-id": "933f6ce9b9c2bed04185514e664e6c7c", + "x-ms-correlation-request-id": "85df7c23-0b74-4376-b833-54d42c6319fd", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "c152919a-1420-4d39-9bd7-ddc1c4f87468", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083558Z:85df7c23-0b74-4376-b833-54d42c6319fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbae5845bdcb49be46acbb441386b4e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:35:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa4b153c-b472-43e7-add6-3a22a4d63b4d", + "x-ms-client-request-id": "bbae5845bdcb49be46acbb441386b4e7", + "x-ms-correlation-request-id": "a5fb224e-d239-460b-a79c-fdbdb7f2b442", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "f7ff25f0-1f8b-4e5d-bb2a-3b47b5ad8074", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083559Z:a5fb224e-d239-460b-a79c-fdbdb7f2b442" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1469b3e02417b478c58a22c1856063cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb55a58b-69fd-46ee-935d-c11987f71553", + "x-ms-client-request-id": "1469b3e02417b478c58a22c1856063cd", + "x-ms-correlation-request-id": "2dc98c9a-f522-45b7-a311-1fc38e900094", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "7ad82945-710b-40c1-a3bb-d33456fb56d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083600Z:2dc98c9a-f522-45b7-a311-1fc38e900094" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87d9485c70132b0cadf64d16fd8babbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5c0a441-fbdb-45ad-953c-a75a69b44890", + "x-ms-client-request-id": "87d9485c70132b0cadf64d16fd8babbb", + "x-ms-correlation-request-id": "224ec86a-09fa-4564-b550-63086e65658e", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "a9ad48e6-550f-4c53-b5cd-e6d01b5cd800", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083601Z:224ec86a-09fa-4564-b550-63086e65658e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b36d69d057e42065e0faf5409bfdc4e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd6a27c5-f759-48b4-b62a-0a53ea706fc8", + "x-ms-client-request-id": "b36d69d057e42065e0faf5409bfdc4e6", + "x-ms-correlation-request-id": "c3b0bfe2-fdca-4876-8507-60ff484e4d22", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "22e4dfe3-4fd9-46a1-b6ba-75091eb47e5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083603Z:c3b0bfe2-fdca-4876-8507-60ff484e4d22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cae7ee482dac6fd4a63e6621d761b639", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "901fcea1-9585-4ac4-9cac-c96184776bf7", + "x-ms-client-request-id": "cae7ee482dac6fd4a63e6621d761b639", + "x-ms-correlation-request-id": "6456867e-2819-4898-b0b7-5e41b744e66d", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "8cf5a063-26b5-4cb7-8f87-cd012aade4a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083604Z:6456867e-2819-4898-b0b7-5e41b744e66d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bf166dfaff204e9e3b8a6187acb8fb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78a61cb8-bf82-493f-9f9a-c9a2dfac72f9", + "x-ms-client-request-id": "1bf166dfaff204e9e3b8a6187acb8fb0", + "x-ms-correlation-request-id": "b7bfa4c9-7101-4fe7-8000-dad73c36ac20", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "7cacb53a-1f71-4874-a7db-e4a7ff18aba5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083606Z:b7bfa4c9-7101-4fe7-8000-dad73c36ac20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fcd6631e0a3a20e95fe0ca5f144487e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc966d46-5b1a-40bf-a5c4-809827254ea7", + "x-ms-client-request-id": "0fcd6631e0a3a20e95fe0ca5f144487e", + "x-ms-correlation-request-id": "3820be66-ff00-4dc5-9e29-3fa5d6291a0f", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "79c858db-c28d-41e4-9df5-7e9b158f932e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083607Z:3820be66-ff00-4dc5-9e29-3fa5d6291a0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3461bc44a80c98f405e3e7f487bbf4db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e246e5c7-71e7-46c8-98e5-e3c44a60de4e", + "x-ms-client-request-id": "3461bc44a80c98f405e3e7f487bbf4db", + "x-ms-correlation-request-id": "724c031d-10b4-4bb3-869b-513f23d50482", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "486acbff-a945-4ac8-ad9e-3ada55638c18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083608Z:724c031d-10b4-4bb3-869b-513f23d50482" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70efb6aea694ff95574e86f3a243139f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43176284-7b8a-4268-9e54-e32d33be33c4", + "x-ms-client-request-id": "70efb6aea694ff95574e86f3a243139f", + "x-ms-correlation-request-id": "34b75a32-73d7-4960-ab3a-c182269f4a5e", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "32b93ab3-25fa-4d1f-bdc5-98b92ab11ce1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083610Z:34b75a32-73d7-4960-ab3a-c182269f4a5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bed428705b6a89a472340ac0f91a1bd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "850808df-b72c-4654-b3a2-0014d9bafc73", + "x-ms-client-request-id": "bed428705b6a89a472340ac0f91a1bd9", + "x-ms-correlation-request-id": "7c1de743-5b15-4a5f-ae60-63b986d1b6bf", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "85c0b97d-be41-484e-836b-d1a8684c2128", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083611Z:7c1de743-5b15-4a5f-ae60-63b986d1b6bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3af63109d8549dea2661dcbd2100f5c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b16fc28a-20af-459f-91ae-47d7362082a0", + "x-ms-client-request-id": "3af63109d8549dea2661dcbd2100f5c1", + "x-ms-correlation-request-id": "cbcd3e6f-6672-4ce2-a091-4b978a0c6fea", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "3244c6f3-881b-4587-983c-5a62fa02bfa7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083612Z:cbcd3e6f-6672-4ce2-a091-4b978a0c6fea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f8448d035e753701265fd5f9cd5053d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5b2a2f9-9442-484f-b4b1-981f5feddcf4", + "x-ms-client-request-id": "5f8448d035e753701265fd5f9cd5053d", + "x-ms-correlation-request-id": "a88df1b8-28a5-445a-9259-fdc091f035e8", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "fe927c04-68f6-4409-abf3-33d106815ccc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083613Z:a88df1b8-28a5-445a-9259-fdc091f035e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71e9ad33d84d974a3d3798087fe66772", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bfcde8e4-1357-497a-8446-60d04e28e9ef", + "x-ms-client-request-id": "71e9ad33d84d974a3d3798087fe66772", + "x-ms-correlation-request-id": "33e351b2-c72a-488b-b643-15c779c79959", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "32476107-ddff-411b-8080-d89a70eb0a70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083615Z:33e351b2-c72a-488b-b643-15c779c79959" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0ef493ebc96d4f2c0a328efda8a0050", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46728566-a604-4226-9bdb-1f83ef38283c", + "x-ms-client-request-id": "b0ef493ebc96d4f2c0a328efda8a0050", + "x-ms-correlation-request-id": "619f0ae7-ada6-45bb-a59d-9b6cd7c43357", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "e396c008-2bac-450a-9f30-8df6490407bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083616Z:619f0ae7-ada6-45bb-a59d-9b6cd7c43357" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "748a9f5b8416f873fdec21af9d68d42b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92c2a1c5-1553-4980-95b8-c022d16120e5", + "x-ms-client-request-id": "748a9f5b8416f873fdec21af9d68d42b", + "x-ms-correlation-request-id": "307526c9-c479-4b8a-bc61-dd52e96bc7c2", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "f0dfe6aa-53ad-4b76-b3b5-96cfbcc79aa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083617Z:307526c9-c479-4b8a-bc61-dd52e96bc7c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53218bfe55e576a6ba15b0aaaf5bbdb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1657f394-4326-4157-816a-409b355dddde", + "x-ms-client-request-id": "53218bfe55e576a6ba15b0aaaf5bbdb3", + "x-ms-correlation-request-id": "9171eecd-e6e4-49fc-87fa-1fdb64893823", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "1d744409-7a0e-4bd4-ac5b-c6660896fe72", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083619Z:9171eecd-e6e4-49fc-87fa-1fdb64893823" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfac4736f25bba5bd5f7b2aa9a423658", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e85b5ff-2fdb-4bf9-bb3d-918cc5c14068", + "x-ms-client-request-id": "dfac4736f25bba5bd5f7b2aa9a423658", + "x-ms-correlation-request-id": "6c314ed7-152f-4d64-81a9-2c70d313fa58", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "edb0eae1-ebcc-4bd2-ae6a-1d5b2b92bd7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083620Z:6c314ed7-152f-4d64-81a9-2c70d313fa58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ef0fdcead69066bf913ba01d3c948a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4af278c5-13f0-4994-b3c3-49a674556e30", + "x-ms-client-request-id": "4ef0fdcead69066bf913ba01d3c948a2", + "x-ms-correlation-request-id": "864e5670-9c7d-4300-97dd-31d03ba4e6a5", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "9f6ddf0f-3f4e-4609-8559-ccd909aacffb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083621Z:864e5670-9c7d-4300-97dd-31d03ba4e6a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55796d2ef4bb0bd030677deea2fbdb78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22a0ef7d-778e-4bc0-86ae-cf507604b243", + "x-ms-client-request-id": "55796d2ef4bb0bd030677deea2fbdb78", + "x-ms-correlation-request-id": "653e41b5-a517-4880-886e-6991cb235895", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "e0fec938-a655-4a86-9d34-9b595afc7501", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083622Z:653e41b5-a517-4880-886e-6991cb235895" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2db58de6f6a894adca5e6473859e60c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a0b72e9-f7b7-4ce5-a4af-b321b6913595", + "x-ms-client-request-id": "b2db58de6f6a894adca5e6473859e60c", + "x-ms-correlation-request-id": "6a9f188d-2a08-4ea0-bf79-b7210083bb13", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "c8cfc2b8-1680-4b41-b2ba-cb2174d19301", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083624Z:6a9f188d-2a08-4ea0-bf79-b7210083bb13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d7b10aee0c9da9c2de41d01307d64fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3b24a01-3bce-4715-929b-da04b975dd7f", + "x-ms-client-request-id": "2d7b10aee0c9da9c2de41d01307d64fd", + "x-ms-correlation-request-id": "285a42af-4e62-4c80-8bbd-ab0ce30eb965", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "aaaffa3b-4d4e-4211-beca-759aecaada7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083625Z:285a42af-4e62-4c80-8bbd-ab0ce30eb965" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b22413796eebf3823f079150e88d3d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38e18d72-b018-4240-a09c-aeb2d8bd3aee", + "x-ms-client-request-id": "7b22413796eebf3823f079150e88d3d7", + "x-ms-correlation-request-id": "0e0bfcd1-72fd-48bd-8872-51f8c308594c", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "edd28bd0-f816-4562-95b7-7ccd5d6c30b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083626Z:0e0bfcd1-72fd-48bd-8872-51f8c308594c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "923f7180ae7ffeaebb0085855148585e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4153a11d-26cd-4697-936c-5aa31ef731c6", + "x-ms-client-request-id": "923f7180ae7ffeaebb0085855148585e", + "x-ms-correlation-request-id": "dfef4e56-6458-4f1a-ac02-8f051929aacd", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "03e220b7-737c-4550-9002-df83ebda925f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083627Z:dfef4e56-6458-4f1a-ac02-8f051929aacd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f60fe9416a37181ed8bc09d96687cca4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed6d93a6-8f36-4550-8a76-4891c551f451", + "x-ms-client-request-id": "f60fe9416a37181ed8bc09d96687cca4", + "x-ms-correlation-request-id": "92f86c0c-7bfa-4288-b542-5e4c0061a048", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "c7137f9a-cd65-47d5-bb37-a5415f7da597", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083629Z:92f86c0c-7bfa-4288-b542-5e4c0061a048" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf814611d23e897d9224bfed11b26dda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f88a0df-821f-46b1-bca9-20a31cdedfc1", + "x-ms-client-request-id": "bf814611d23e897d9224bfed11b26dda", + "x-ms-correlation-request-id": "a8c3c041-c885-4eb7-bbaa-afb2339d0bad", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "359fffb7-910e-44a9-9497-b8b2cf2a2092", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083631Z:a8c3c041-c885-4eb7-bbaa-afb2339d0bad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24d41a97dc7816a05226b9c3a4d59734", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5017661b-3754-4c2e-8f34-23a6d8df55af", + "x-ms-client-request-id": "24d41a97dc7816a05226b9c3a4d59734", + "x-ms-correlation-request-id": "939eca52-cd73-4ed5-b173-dd88b91893f2", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "fa394242-530c-462a-9d79-e47758f8b993", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083632Z:939eca52-cd73-4ed5-b173-dd88b91893f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b73e03499c76e206b866312ab300625", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "979243a8-ab7d-4650-a6a1-45b7b185f389", + "x-ms-client-request-id": "0b73e03499c76e206b866312ab300625", + "x-ms-correlation-request-id": "a48bfad0-a697-49a3-9800-c3f8dd5d9872", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "5853aa4a-c2c1-4314-9696-4b3df2e4b994", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083633Z:a48bfad0-a697-49a3-9800-c3f8dd5d9872" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b422e4fa7b2352ca66a6c1718bae4bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc993aa0-7658-4627-b795-a394130433a4", + "x-ms-client-request-id": "4b422e4fa7b2352ca66a6c1718bae4bd", + "x-ms-correlation-request-id": "371548ad-49a1-44da-bc4f-f58022e4b17f", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "5f3720f7-0595-406f-9dfd-6ec8db1984c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083634Z:371548ad-49a1-44da-bc4f-f58022e4b17f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31b88b8d623efd13fa65b9f1788d6b22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c94fbbf7-2cdc-443f-add7-cb7e91f79f9d", + "x-ms-client-request-id": "31b88b8d623efd13fa65b9f1788d6b22", + "x-ms-correlation-request-id": "678e7a5d-0785-4828-81b2-e11a6eeb8605", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "5c5c142b-c601-4649-9499-2b31cbb46afa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083636Z:678e7a5d-0785-4828-81b2-e11a6eeb8605" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7674941f4b938d81b33e645c2d0956b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a104861a-67c5-4454-9d6b-3d11e6b311e6", + "x-ms-client-request-id": "7674941f4b938d81b33e645c2d0956b1", + "x-ms-correlation-request-id": "2e2c0ad8-2f10-46a5-8e7e-d572065d3676", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "42cae20d-3c39-472f-a93f-68d594aad46d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083637Z:2e2c0ad8-2f10-46a5-8e7e-d572065d3676" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f85a6a2d577ece61b44514dee3abc19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bf97364-9f92-4739-917e-ef8124de271c", + "x-ms-client-request-id": "1f85a6a2d577ece61b44514dee3abc19", + "x-ms-correlation-request-id": "857b9cdb-f706-4fd7-8375-724f7a66c8df", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "d5cf4c3f-0c73-4d40-9005-ab357a4eb989", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083638Z:857b9cdb-f706-4fd7-8375-724f7a66c8df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84f74aff6e464129092b7d00fdb6d0f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "401cb5d4-2ab9-49e4-bfeb-cdebf8a3ff9f", + "x-ms-client-request-id": "84f74aff6e464129092b7d00fdb6d0f0", + "x-ms-correlation-request-id": "2cb80712-cadd-48c5-aeff-611ad733bd20", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "5cf29383-55d2-42a6-b572-195fc5979d1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083639Z:2cb80712-cadd-48c5-aeff-611ad733bd20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d24f070e4b0749aaad875a4ef9349f79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "41e3f17b-86f8-4128-bb3e-4d4516727a61", + "x-ms-client-request-id": "d24f070e4b0749aaad875a4ef9349f79", + "x-ms-correlation-request-id": "6793e5e2-4487-4fa5-b119-ef489dcf1c53", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "238b69cc-3855-4f9a-b7b6-b73014d7fac7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083641Z:6793e5e2-4487-4fa5-b119-ef489dcf1c53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e35c4b81d212346b7c43164c58e6ef64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eff66cf0-6296-405a-bb6f-f768dfcbe1bc", + "x-ms-client-request-id": "e35c4b81d212346b7c43164c58e6ef64", + "x-ms-correlation-request-id": "d35b9cbe-a81d-42ba-9f65-8e0f993d3ef2", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "3b87b1ee-ff23-4f9a-a8f0-4302b7e36517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083642Z:d35b9cbe-a81d-42ba-9f65-8e0f993d3ef2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e63e6174eaebb411a0add6be13db48d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "261f31ec-a9f0-441f-b32d-8204eec90bbf", + "x-ms-client-request-id": "e63e6174eaebb411a0add6be13db48d5", + "x-ms-correlation-request-id": "7f51598a-936a-485a-8b28-ed2ccde6c424", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "5daf6784-be86-49f7-a687-3a036219aa3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083643Z:7f51598a-936a-485a-8b28-ed2ccde6c424" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b17e048ced5a3cdd9c1b55c3355df1c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4eb6e6d-88f6-4d2b-a93a-a07eada48f9f", + "x-ms-client-request-id": "b17e048ced5a3cdd9c1b55c3355df1c6", + "x-ms-correlation-request-id": "437fa109-9737-43ed-af82-d16da2bd52c9", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "a493720d-dc4c-413c-8c0c-71178bdf8bd2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083645Z:437fa109-9737-43ed-af82-d16da2bd52c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98daf597b8f6978d3aa84365fbac20a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a7f22ac-b074-4331-b82f-8440bbe26be4", + "x-ms-client-request-id": "98daf597b8f6978d3aa84365fbac20a1", + "x-ms-correlation-request-id": "88d0ca5e-f407-4b0d-9489-efd246b8dd8c", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "d6156966-6ecc-4b2d-b264-d8cd52047ac1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083646Z:88d0ca5e-f407-4b0d-9489-efd246b8dd8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54bf41fb3e68870a830249d0944d7f42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bbe4f5bf-d9c1-4a17-b5e4-fd2a3b726533", + "x-ms-client-request-id": "54bf41fb3e68870a830249d0944d7f42", + "x-ms-correlation-request-id": "3aad2844-fb15-407d-bc72-a6795427e925", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "138e918f-22a7-4399-b507-7ce08087bf9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083647Z:3aad2844-fb15-407d-bc72-a6795427e925" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e270fbbaf00d3de76e677b2aa7840f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ac5ea43-5971-4a15-849a-6c3383e0187c", + "x-ms-client-request-id": "1e270fbbaf00d3de76e677b2aa7840f0", + "x-ms-correlation-request-id": "d0d3e2b5-25a4-412f-ae33-36806a38fd67", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "2925b895-f39b-4eaf-8234-0dcd762c5a91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083648Z:d0d3e2b5-25a4-412f-ae33-36806a38fd67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4c7b4fa9c9d595eea5314f36fbd03ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f38ed549-3d9c-4e4d-aa7c-90d08879a18e", + "x-ms-client-request-id": "f4c7b4fa9c9d595eea5314f36fbd03ec", + "x-ms-correlation-request-id": "55101c75-fe58-4a46-969f-fa0c7c109365", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "b6fc7ccd-ae94-4f46-8756-467a4f6f6439", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083650Z:55101c75-fe58-4a46-969f-fa0c7c109365" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eca9002802854ba062ecde81c758dd0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34af78ae-5292-4d89-a910-f763b608752f", + "x-ms-client-request-id": "eca9002802854ba062ecde81c758dd0a", + "x-ms-correlation-request-id": "a81ff48b-16f0-45bf-ae8e-5a725cc02342", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "c543eb34-6b83-459d-a5ae-166bf957c09a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083651Z:a81ff48b-16f0-45bf-ae8e-5a725cc02342" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfd559c18b851fa4b1cd33ad9beb64b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9eed5734-ce4c-4407-a9c2-26a1fceb28f9", + "x-ms-client-request-id": "dfd559c18b851fa4b1cd33ad9beb64b9", + "x-ms-correlation-request-id": "f1852a13-9ac3-4260-91d9-3efa53e74f9b", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "6aebc93d-e9d2-4686-b68f-842bd0470b20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083652Z:f1852a13-9ac3-4260-91d9-3efa53e74f9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9898ae354cff86b147c91b1bedd9292", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd4cdfeb-55e0-4bdb-bdff-b2abf9ee08c6", + "x-ms-client-request-id": "a9898ae354cff86b147c91b1bedd9292", + "x-ms-correlation-request-id": "c86cdc22-53e7-4bc8-8894-02ecc7675bb5", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "9d361fa8-6291-43c3-98b9-17ebd60fc6fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083653Z:c86cdc22-53e7-4bc8-8894-02ecc7675bb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15320a7523e79d675c893bb7cef2b077", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cf31847-4469-4a3f-bffa-bad7bfa8d61e", + "x-ms-client-request-id": "15320a7523e79d675c893bb7cef2b077", + "x-ms-correlation-request-id": "d7fcd1f1-1048-44ef-8d57-b172dd63a4b1", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "b7f43a39-648a-4ed9-a9f8-2502e0e393a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083655Z:d7fcd1f1-1048-44ef-8d57-b172dd63a4b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c9e248733cf6d3bedddcb09f9f260d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "beaab412-82ef-42fb-9b4d-2d7651c770b8", + "x-ms-client-request-id": "3c9e248733cf6d3bedddcb09f9f260d4", + "x-ms-correlation-request-id": "a67ffb84-f2df-41be-8a5b-51904e386e34", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "56b05747-1edc-4989-8049-464564273692", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083656Z:a67ffb84-f2df-41be-8a5b-51904e386e34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9137a13a4eb8bfd123eb4d4519b32921", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0105c0e-046f-45d8-92f2-318c959223b6", + "x-ms-client-request-id": "9137a13a4eb8bfd123eb4d4519b32921", + "x-ms-correlation-request-id": "1215eda4-22fa-440c-910c-22d82a8aa6ce", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "731d457b-6e5c-4b2f-b026-a9830a8acdf1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083657Z:1215eda4-22fa-440c-910c-22d82a8aa6ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "992a1acb553e41c3cec4270a585da469", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "247e8fb4-d6fe-4a92-941a-ce2c1f8d1b9d", + "x-ms-client-request-id": "992a1acb553e41c3cec4270a585da469", + "x-ms-correlation-request-id": "9a4fe58e-936d-4452-b533-654e1400c95a", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "9ca52b5b-c762-491c-8078-9bc90ca04546", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083659Z:9a4fe58e-936d-4452-b533-654e1400c95a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d7c66291fba38be53de19e3e6f5543a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:36:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cb25e1b-493d-4a9c-953d-b8f384dff5cd", + "x-ms-client-request-id": "2d7c66291fba38be53de19e3e6f5543a", + "x-ms-correlation-request-id": "45c88d60-dc9e-409d-aa5a-37590ee009d6", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "3351d8d0-420d-4050-baed-40d69b87536d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083700Z:45c88d60-dc9e-409d-aa5a-37590ee009d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de3ea9b3c6c8e595def5c2f426c666c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7dc4c9a2-1ac4-4555-9db7-ebe301501da8", + "x-ms-client-request-id": "de3ea9b3c6c8e595def5c2f426c666c5", + "x-ms-correlation-request-id": "cedb96a3-7a95-4ae7-b1df-e1cd33a4a45e", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "b043e82d-f7c7-4a6f-8b78-74c9c88b2f45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083701Z:cedb96a3-7a95-4ae7-b1df-e1cd33a4a45e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b21ce347fb37ab665cf1465f3bdf5bd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5d6ab0e-0ea2-4f0d-9ec2-cc45996b8509", + "x-ms-client-request-id": "b21ce347fb37ab665cf1465f3bdf5bd9", + "x-ms-correlation-request-id": "8ee29d43-572e-43b9-a5a8-7a049ffe2889", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "692e17a6-4ab6-45d5-ae92-672778acab47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083703Z:8ee29d43-572e-43b9-a5a8-7a049ffe2889" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af56ed70c51f62a1d1974fc45dca128c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05787158-75ae-4991-bfb8-cc9cb25d864c", + "x-ms-client-request-id": "af56ed70c51f62a1d1974fc45dca128c", + "x-ms-correlation-request-id": "df00d26f-7beb-41bc-ba18-e5f675c67238", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "60658d50-ba06-4a7d-9424-dca9133b6301", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083704Z:df00d26f-7beb-41bc-ba18-e5f675c67238" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "039b5478a2d9b703429282d78035a9fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "428df310-0a12-4a31-bc45-719b548cf9b6", + "x-ms-client-request-id": "039b5478a2d9b703429282d78035a9fe", + "x-ms-correlation-request-id": "f974f6ec-bd4e-471e-8fbe-117a350dcd04", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "7fbbc407-e547-43ce-a9aa-6c110b5f0b3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083705Z:f974f6ec-bd4e-471e-8fbe-117a350dcd04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3883e89ab76f82a642b9e09faca14e92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6bf9f54-f2e2-4ab9-9013-0e4afcf79825", + "x-ms-client-request-id": "3883e89ab76f82a642b9e09faca14e92", + "x-ms-correlation-request-id": "740c9eaf-f276-4af7-8188-7f0a17eedf37", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "cc4f2c43-8cab-4124-ac3b-c89db8e33496", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083707Z:740c9eaf-f276-4af7-8188-7f0a17eedf37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7e7b9df5744ceffea9e6c8c43cae19c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bd7939d-a362-4e10-8eb3-b61c26cbd8a7", + "x-ms-client-request-id": "e7e7b9df5744ceffea9e6c8c43cae19c", + "x-ms-correlation-request-id": "ada8ba54-5538-4cc6-a63b-98175d3b98bc", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "e145be00-1b37-488f-9dae-45e3d1647cef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083708Z:ada8ba54-5538-4cc6-a63b-98175d3b98bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "742a51eed946c01dad18c020c1630ba0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f422d275-3088-4e87-ac66-d06479d98652", + "x-ms-client-request-id": "742a51eed946c01dad18c020c1630ba0", + "x-ms-correlation-request-id": "2b759714-3613-4d49-8d8f-1666e254d6ce", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "a499c3d0-286a-4a7a-be7e-b8bd08bb1284", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083710Z:2b759714-3613-4d49-8d8f-1666e254d6ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7f7ef44c14d42b9e9b54ed04b193f78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e17cf25-4c28-45c1-8901-713944854568", + "x-ms-client-request-id": "c7f7ef44c14d42b9e9b54ed04b193f78", + "x-ms-correlation-request-id": "23bf6aee-8c61-4450-b0d3-2aab15376d64", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "a413f113-0725-4d73-bcd6-6b8394270ab4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083711Z:23bf6aee-8c61-4450-b0d3-2aab15376d64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ab144d7d977064b9b263a2b96df0c87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df5da405-0da4-451e-ae92-1a577e79df12", + "x-ms-client-request-id": "5ab144d7d977064b9b263a2b96df0c87", + "x-ms-correlation-request-id": "46217275-4fe5-4b5f-8a9d-1f5417cc5782", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "ae93bf87-0d07-42cc-9f9a-6e26dc25cb29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083712Z:46217275-4fe5-4b5f-8a9d-1f5417cc5782" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5348cb931ad22c4e97e78b918a4c7593", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "593eac18-6f42-49f0-bf55-5e33511d575d", + "x-ms-client-request-id": "5348cb931ad22c4e97e78b918a4c7593", + "x-ms-correlation-request-id": "35e2895b-9eac-4b4a-82ed-cfd5e9713d20", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "35328716-641e-4938-a0f7-e8ffcea30ad0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083713Z:35e2895b-9eac-4b4a-82ed-cfd5e9713d20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d4848d9b1b16a28a4f12b27878dab09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "308d6eaf-b18e-4486-9f1c-7521bd37125c", + "x-ms-client-request-id": "7d4848d9b1b16a28a4f12b27878dab09", + "x-ms-correlation-request-id": "14b45424-958e-4d8b-b12e-cac0ed6a77cc", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "66b067f8-4cea-40e1-ac3f-4b91ca002bd5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083715Z:14b45424-958e-4d8b-b12e-cac0ed6a77cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "803dc7a8ecd1bda6f585c2904eba7b4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ef99341-a1a6-4f97-930a-526f8bec400f", + "x-ms-client-request-id": "803dc7a8ecd1bda6f585c2904eba7b4f", + "x-ms-correlation-request-id": "30e0d148-eccd-4fd6-844a-4e47cc3946c0", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "31d99ba1-438d-4fe1-8bc2-e945d536443f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083716Z:30e0d148-eccd-4fd6-844a-4e47cc3946c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e52a6b18f97e2d5a2deafe0ee27a50a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28fa4386-15c7-434b-8783-eb51828fcc1c", + "x-ms-client-request-id": "4e52a6b18f97e2d5a2deafe0ee27a50a", + "x-ms-correlation-request-id": "930840f1-fff6-4741-9afd-74496622b17d", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "4bff9210-dc83-457d-8bce-4b882ce6bb1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083717Z:930840f1-fff6-4741-9afd-74496622b17d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3e8823bf50eecc2a28a872cee981be9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6f37b24-d54c-4833-b007-3c3102728685", + "x-ms-client-request-id": "c3e8823bf50eecc2a28a872cee981be9", + "x-ms-correlation-request-id": "3e867a32-3a99-4648-b944-55a17aa5fa2d", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "17c876d3-81a8-4ab0-809b-0d621c89cab1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083718Z:3e867a32-3a99-4648-b944-55a17aa5fa2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e076dc765d3a1871f15bddf23dc5cfce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "210c2fa9-c263-42c5-aa68-a622d38ef017", + "x-ms-client-request-id": "e076dc765d3a1871f15bddf23dc5cfce", + "x-ms-correlation-request-id": "ae60932d-026f-4464-bb6b-0e31f82a1db7", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "c84e4b6b-db34-4ca9-bc99-68162d0a621e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083720Z:ae60932d-026f-4464-bb6b-0e31f82a1db7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc55b8dfb7d1bb41e465ab0c08a8f409", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "effd0c2e-fe1e-47b0-baa9-bee84b52761f", + "x-ms-client-request-id": "cc55b8dfb7d1bb41e465ab0c08a8f409", + "x-ms-correlation-request-id": "c3023d6f-b46b-42eb-ae24-d6b7839047de", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "f3d9294b-42b9-4d1f-9c58-8e95de7963ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083721Z:c3023d6f-b46b-42eb-ae24-d6b7839047de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1269c5c3c4b1ddcf10d0d1b217cfafdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d0f63e3b-8ceb-44e7-8bd8-d8674320e224", + "x-ms-client-request-id": "1269c5c3c4b1ddcf10d0d1b217cfafdd", + "x-ms-correlation-request-id": "397b4bba-6954-4fb6-a00a-045460f326ab", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "44d821ee-35b4-4aa1-acee-6be05ec38062", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083722Z:397b4bba-6954-4fb6-a00a-045460f326ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "354cb9bb4f43bf179abafcd4b2651049", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b58e6e4b-8f15-4f54-a5af-e4d67a0738bb", + "x-ms-client-request-id": "354cb9bb4f43bf179abafcd4b2651049", + "x-ms-correlation-request-id": "da0637bf-4838-4046-9775-1d0d6cb52a34", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "8a3ba6ba-0afa-4b07-a730-690ce1f10b0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083724Z:da0637bf-4838-4046-9775-1d0d6cb52a34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "772fd467bd5c1b1ce977bc01e58ea314", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66399877-ae6e-453b-9cf2-73748282d037", + "x-ms-client-request-id": "772fd467bd5c1b1ce977bc01e58ea314", + "x-ms-correlation-request-id": "5bfdabf0-8133-41e4-84d9-e5765c9cd29b", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "133083bc-3e98-48f8-b524-b7f1d69fade4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083725Z:5bfdabf0-8133-41e4-84d9-e5765c9cd29b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e51ceb6be5b73c6aeaa77f6c7fa2baa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe6121b8-166e-467d-a5b8-c2c3d2249114", + "x-ms-client-request-id": "4e51ceb6be5b73c6aeaa77f6c7fa2baa", + "x-ms-correlation-request-id": "e02a0d96-435a-438e-b20a-ebeaa1eae535", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "e448a27a-4f4a-4e72-b7f2-3c4e6c4a758f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083726Z:e02a0d96-435a-438e-b20a-ebeaa1eae535" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "434b88bf389ffe819c314bcc9215d90c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73887db0-f965-4dff-8245-60e9569c1ced", + "x-ms-client-request-id": "434b88bf389ffe819c314bcc9215d90c", + "x-ms-correlation-request-id": "e0822ee3-0cf8-4bc1-8cf2-e86ae50224d3", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "08b942bf-90bc-4035-bae2-9a6dd65f71b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083727Z:e0822ee3-0cf8-4bc1-8cf2-e86ae50224d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e31ee816c214a8ed0dbbc8b1452553ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5916c99b-89c3-4bb3-b165-20d7d1da7ecc", + "x-ms-client-request-id": "e31ee816c214a8ed0dbbc8b1452553ef", + "x-ms-correlation-request-id": "86293da8-2b86-442d-85b0-6306ca03c770", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "287bbf42-0d26-470a-8360-d0781f08b4f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083729Z:86293da8-2b86-442d-85b0-6306ca03c770" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d42114b60437d744d52b12a73fae199", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5986f1e-603c-408c-82e8-f3d554b70a7c", + "x-ms-client-request-id": "5d42114b60437d744d52b12a73fae199", + "x-ms-correlation-request-id": "437e8cca-4d1c-42ac-96d1-1c46995a4572", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "22292388-5b37-4142-a3a3-510a6ebafcc2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083730Z:437e8cca-4d1c-42ac-96d1-1c46995a4572" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfe06bd147dbfd969ba236e46fcfb877", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0f3fcaf-b358-4bc7-baa7-003ad71b18fc", + "x-ms-client-request-id": "dfe06bd147dbfd969ba236e46fcfb877", + "x-ms-correlation-request-id": "d62e6ca3-0267-4b7d-a33d-301093213fce", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "df02904a-110c-425f-bd2e-7cf2478c4bce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083731Z:d62e6ca3-0267-4b7d-a33d-301093213fce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81805cdd7bd3b6c873a096c110c33513", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63a8a4ee-090f-49e1-8dbf-f2ff053da3d1", + "x-ms-client-request-id": "81805cdd7bd3b6c873a096c110c33513", + "x-ms-correlation-request-id": "bb2caa0d-cb0a-4109-8b3a-72138f08de80", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "619f8294-1e16-4d41-83f7-4b4f9981be40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083732Z:bb2caa0d-cb0a-4109-8b3a-72138f08de80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dae02fda744503137a44c2a02a900d7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7d1eaab-3f62-4901-8d44-813bbda431b4", + "x-ms-client-request-id": "dae02fda744503137a44c2a02a900d7d", + "x-ms-correlation-request-id": "4d044449-8795-4db3-9039-154146f137ae", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "ead5a19e-2731-47ce-801a-fa7c40246691", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083734Z:4d044449-8795-4db3-9039-154146f137ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "164d3a9a5f7955c5a22a6b3ab1d5ecd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d796900-1409-4981-859e-723f8ef9e09f", + "x-ms-client-request-id": "164d3a9a5f7955c5a22a6b3ab1d5ecd7", + "x-ms-correlation-request-id": "33d2e3d8-9d81-4d46-bd82-f49a14e65f04", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "bfec2830-c82c-4d14-89e8-0a2f7e99b2bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083735Z:33d2e3d8-9d81-4d46-bd82-f49a14e65f04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4009226cdeef6831487d068eb9288be3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce23bfdf-5832-4d33-a391-6417c34cf620", + "x-ms-client-request-id": "4009226cdeef6831487d068eb9288be3", + "x-ms-correlation-request-id": "e9d77dcd-05a1-460a-8ede-0f783648fc05", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "d0c01773-2f82-44e5-9b78-1e1388cb0108", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083736Z:e9d77dcd-05a1-460a-8ede-0f783648fc05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d62718931e757b9a698a371b08d951a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb512a4a-308a-45c9-aecd-bc68b480c375", + "x-ms-client-request-id": "d62718931e757b9a698a371b08d951a5", + "x-ms-correlation-request-id": "92b50c79-b257-4760-8d51-21873f179038", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "363a10fb-7bf0-44f2-b938-e51b78c359bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083738Z:92b50c79-b257-4760-8d51-21873f179038" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0734ea57cd87bb8e08e4cefb58369c7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5d53d3f-67e8-4cb3-b4d1-434367ad04e3", + "x-ms-client-request-id": "0734ea57cd87bb8e08e4cefb58369c7a", + "x-ms-correlation-request-id": "ba2e8e57-b502-444f-b1f6-a9ef82195b63", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "27c5728e-b450-4f55-88ce-f313bd2d4138", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083739Z:ba2e8e57-b502-444f-b1f6-a9ef82195b63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98a7889e16ad4e62888ed665a6165f6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d433debe-7168-4e1f-b8e6-507af7fcb763", + "x-ms-client-request-id": "98a7889e16ad4e62888ed665a6165f6f", + "x-ms-correlation-request-id": "1b6e01d3-f04d-43a4-9616-98d1caa6a9e4", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "3d75ce7b-2f89-4fca-974b-60056a1a88fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083740Z:1b6e01d3-f04d-43a4-9616-98d1caa6a9e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce37612b84f4c55c8a6bcd91509e2233", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ed3a563-bdb5-4662-aad7-b3214a86d0e1", + "x-ms-client-request-id": "ce37612b84f4c55c8a6bcd91509e2233", + "x-ms-correlation-request-id": "1aa5570f-35fa-45e3-b735-187089262a77", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "62aafcdc-e3e6-4285-9ee1-81f7c49d9f30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083742Z:1aa5570f-35fa-45e3-b735-187089262a77" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/eb0c5d6d-0bac-4ad3-a333-fb08acbe7773?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "807dbdeeb93141f888e57ff8f62915f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd7cbf48-c8f5-4323-ac52-bf82b9a3cc03", + "x-ms-client-request-id": "807dbdeeb93141f888e57ff8f62915f2", + "x-ms-correlation-request-id": "118513ff-16d9-44d8-b067-bcb17d8dcb00", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "d9bc10a4-66f8-4dfa-a7d3-03c69f16d54c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083743Z:118513ff-16d9-44d8-b067-bcb17d8dcb00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7cf5e84cdff19862ce10e4248d0fde9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2602", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be050a95-c521-4f0c-b9b1-851e21db5d1a", + "x-ms-client-request-id": "f7cf5e84cdff19862ce10e4248d0fde9", + "x-ms-correlation-request-id": "dd712e61-ef6d-4b7a-8868-540d9b03557b", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "1b332288-8d86-41d9-b995-f40a932b21d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083743Z:dd712e61-ef6d-4b7a-8868-540d9b03557b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5778\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ff156965-38c4-43fe-a262-a454b02bcfdd\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022f9951d82-44ca-4340-a789-ffe0319b3bdd\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet245\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ff156965-38c4-43fe-a262-a454b02bcfdd\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.183.5.203\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayDefaultSite\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e876a36bdf99723d68f5460e0563cf60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2602", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c88e5fbb-a912-4d18-993f-a5b89b3c201d", + "x-ms-client-request-id": "e876a36bdf99723d68f5460e0563cf60", + "x-ms-correlation-request-id": "e4baa859-7467-44a3-9c44-45dde0bb533a", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "355a211f-0a27-4920-b81f-c3befe7693d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083743Z:e4baa859-7467-44a3-9c44-45dde0bb533a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5778\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ff156965-38c4-43fe-a262-a454b02bcfdd\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022f9951d82-44ca-4340-a789-ffe0319b3bdd\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet245\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ff156965-38c4-43fe-a262-a454b02bcfdd\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.183.5.203\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayDefaultSite\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "2006", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cef10cdb332b372063534faab5f8b7e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "virtualNetworkGateway1": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet245", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "gatewayDefaultSite": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704" + }, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.0.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "localNetworkGateway2": { + "location": "westus2", + "tags": { + "test": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704", + "properties": { + "localNetworkAddressSpace": { + "addressPrefixes": [ + "192.168.0.0/16" + ] + }, + "gatewayIpAddress": "192.168.3.4" + } + }, + "connectionType": "IPsec", + "routingWeight": 3, + "sharedKey": "abc" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1315", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96154c7c-6728-4a7b-b6b5-b3685dee2d09", + "x-ms-client-request-id": "cef10cdb332b372063534faab5f8b7e7", + "x-ms-correlation-request-id": "29c8b186-5165-450f-a3fe-de94f36b6d61", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "633dca34-1542-4e97-992d-0977c7bd0b70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083750Z:29c8b186-5165-450f-a3fe-de94f36b6d61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6590\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00226f6b4a02-fc8b-47eb-b2af-709d6e51866e\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229da80933-004b-45df-a2ba-442737164e82\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c36cecad1b0c704056b1358bedc7b3fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8a3de67-97d8-4a1b-9454-774700073b92", + "x-ms-client-request-id": "c36cecad1b0c704056b1358bedc7b3fd", + "x-ms-correlation-request-id": "1d3f0dc2-64bc-4b2c-b21a-41b21cfad50b", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "b88a9234-9248-44d7-8883-b42506e471e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083750Z:1d3f0dc2-64bc-4b2c-b21a-41b21cfad50b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d570268eae7c822867d0719c2a99be4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bad38eb5-afe6-433f-bc1b-73366c4734d3", + "x-ms-client-request-id": "d570268eae7c822867d0719c2a99be4e", + "x-ms-correlation-request-id": "e7c227b3-ee55-4bf6-b203-ceb58c22c919", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "31d9b4e6-eeae-4502-afa8-ae3ae79a4414", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083752Z:e7c227b3-ee55-4bf6-b203-ceb58c22c919" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9fd3d8af48c79db4ce25c7b23193395", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "734a8d6e-91b4-42d0-aa86-67afcb61c568", + "x-ms-client-request-id": "c9fd3d8af48c79db4ce25c7b23193395", + "x-ms-correlation-request-id": "98c01f7e-0e4b-4f7d-9a2f-0b4b743a2b49", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "4f18c43f-a062-41d4-ac82-1941b77eae34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083753Z:98c01f7e-0e4b-4f7d-9a2f-0b4b743a2b49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52f80cdbf3a4ff96c3ea5c3ba9a445bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ba022e3-6ebf-414e-b80d-8d9b8413f662", + "x-ms-client-request-id": "52f80cdbf3a4ff96c3ea5c3ba9a445bc", + "x-ms-correlation-request-id": "d226305e-4325-4ff5-953c-42d29eec15bf", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "49c92176-3779-44b4-8b62-70dc902465e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083754Z:d226305e-4325-4ff5-953c-42d29eec15bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b000e6f2e9ca9a714af6899952ad5f4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80ef0e8a-2b9c-4b83-a7a2-9e0752a2d042", + "x-ms-client-request-id": "b000e6f2e9ca9a714af6899952ad5f4d", + "x-ms-correlation-request-id": "7f71fad6-2959-46db-a4b3-65e170b44762", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "2b2f7a4f-71e2-4b20-afd5-f9af88fdfdfd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083756Z:7f71fad6-2959-46db-a4b3-65e170b44762" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1dc0db9d6ca197aaa7fe05a1979fcfa8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d3dc5a3-8a37-435b-95ce-d15c187fda02", + "x-ms-client-request-id": "1dc0db9d6ca197aaa7fe05a1979fcfa8", + "x-ms-correlation-request-id": "640c5512-572c-45ab-be3a-bcd7fee56a50", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "3e5acb18-a839-4e59-a31f-d6740881822d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083757Z:640c5512-572c-45ab-be3a-bcd7fee56a50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c889f9c8218f1cb9b5d07ad6afcac16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1217099-51d4-49f6-8507-20519a0c41a0", + "x-ms-client-request-id": "3c889f9c8218f1cb9b5d07ad6afcac16", + "x-ms-correlation-request-id": "9d48e599-aff2-40d5-a441-c36c56efc9f0", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "ad954d7d-590e-4f0b-9974-02d4e251dda3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083758Z:9d48e599-aff2-40d5-a441-c36c56efc9f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce9e0e8b28e3851b3c6908cce4cf02ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:37:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4807ef40-2e07-455c-834d-47c8784c1f76", + "x-ms-client-request-id": "ce9e0e8b28e3851b3c6908cce4cf02ab", + "x-ms-correlation-request-id": "a01fd35f-6282-4046-9480-6f294406158b", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "9bb32dfa-7b17-42bc-8241-24d1a279fa6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083800Z:a01fd35f-6282-4046-9480-6f294406158b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2fce02622241a3410ce824365fc2dab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40379ec9-d3fc-4ce3-a698-a00e907aba05", + "x-ms-client-request-id": "b2fce02622241a3410ce824365fc2dab", + "x-ms-correlation-request-id": "fc183132-5125-4ef6-b260-08e15cac0702", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "f7c57a73-eb3e-43e9-a3cc-7a21be21f0f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083801Z:fc183132-5125-4ef6-b260-08e15cac0702" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8916ee51010074c5840300af7afe0dcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b4706cf-cba1-4bdb-986d-31204e27a09f", + "x-ms-client-request-id": "8916ee51010074c5840300af7afe0dcc", + "x-ms-correlation-request-id": "275be6c9-4b9d-4c0b-89b1-ca7e7e68f032", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "16e5493a-b9f4-46d3-b773-3bbd7d113dfe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083802Z:275be6c9-4b9d-4c0b-89b1-ca7e7e68f032" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89875c5bf9ff68f2d983bd14a5d7203f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47f41c38-3bd9-4959-a95c-3dc01eea4170", + "x-ms-client-request-id": "89875c5bf9ff68f2d983bd14a5d7203f", + "x-ms-correlation-request-id": "e277f6f8-3437-499a-9add-e1d01c0c3d21", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "70234bae-f301-47a6-8146-11ec7596a7ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083803Z:e277f6f8-3437-499a-9add-e1d01c0c3d21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f67a5d3c78b824aa1a872e202285a012", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84f4950a-494c-4ae7-b2a9-c73cf053a2e2", + "x-ms-client-request-id": "f67a5d3c78b824aa1a872e202285a012", + "x-ms-correlation-request-id": "b98b1855-f10a-4b2f-bda9-44a86f71a7af", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "cb40ba05-00cf-4e95-bd10-991da41f2632", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083805Z:b98b1855-f10a-4b2f-bda9-44a86f71a7af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09e8b6c1a37557abfbadaf7d44b1cfac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08f08cf6-2ab2-42e1-8ff5-7b8bba997cce", + "x-ms-client-request-id": "09e8b6c1a37557abfbadaf7d44b1cfac", + "x-ms-correlation-request-id": "32a31621-11a6-4c13-942c-a785f80a2734", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "8f920614-409e-42f3-92b4-01a9fbc383b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083806Z:32a31621-11a6-4c13-942c-a785f80a2734" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c73c0e31783e213b2626f78cad14654", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4dccdee6-06e1-4507-aa5e-23911e225cae", + "x-ms-client-request-id": "1c73c0e31783e213b2626f78cad14654", + "x-ms-correlation-request-id": "202c5104-3071-4d7d-87ca-6b682392c534", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "cffd42c4-b48c-4cb1-a8ed-8354b91e9692", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083807Z:202c5104-3071-4d7d-87ca-6b682392c534" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee52abe316ef99cab223fa0bc92de069", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e030cf56-d8c0-4def-90cd-314ac01e6a0e", + "x-ms-client-request-id": "ee52abe316ef99cab223fa0bc92de069", + "x-ms-correlation-request-id": "f9c12e2f-0a15-46f2-bdd8-d595909f78c6", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "c191cb98-c218-4c22-ab66-db9da1d83da6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083809Z:f9c12e2f-0a15-46f2-bdd8-d595909f78c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "613d82b88412aa8ea305571233328c29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e8dc308-9479-4558-88bf-182c2d2808c9", + "x-ms-client-request-id": "613d82b88412aa8ea305571233328c29", + "x-ms-correlation-request-id": "15032421-8f1d-4348-ae13-dc28ec20db2e", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "dcce45e4-17c3-41f8-94fc-d9d734e7a62f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083810Z:15032421-8f1d-4348-ae13-dc28ec20db2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98995b67e05eccbcf6da69601c081985", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66defb63-7003-4a49-aae9-46c7676432bc", + "x-ms-client-request-id": "98995b67e05eccbcf6da69601c081985", + "x-ms-correlation-request-id": "3762446e-d150-4157-9b5d-c14b494948b5", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "66e1b7f5-d5c4-4803-9afa-cd60018d5b3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083811Z:3762446e-d150-4157-9b5d-c14b494948b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48bf0682e5935f421da84beabfb8657f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f892cdd4-428b-4665-a133-c33550812720", + "x-ms-client-request-id": "48bf0682e5935f421da84beabfb8657f", + "x-ms-correlation-request-id": "8d0b4402-6a97-48d2-a4e2-87a3bf4a5cb9", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "5fc72309-1d68-410a-a435-bed68d1bd52d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083812Z:8d0b4402-6a97-48d2-a4e2-87a3bf4a5cb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6da4d0964793d70ac5716b371a2d8e9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de6ef8d8-54f7-4db0-a53c-97c4306a2e64", + "x-ms-client-request-id": "6da4d0964793d70ac5716b371a2d8e9b", + "x-ms-correlation-request-id": "eb6809ed-4716-4f32-9e10-bff4d81188bb", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "e99af590-66d7-415e-b20f-3525d6da8069", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083814Z:eb6809ed-4716-4f32-9e10-bff4d81188bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d8fd2ec44728196183a7bb694d20c3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cc70431-ba27-4068-bcf4-9c64059882c4", + "x-ms-client-request-id": "2d8fd2ec44728196183a7bb694d20c3e", + "x-ms-correlation-request-id": "a2dc67e0-7a86-4294-912a-071b4842419e", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "bd829024-7da4-4cf1-9ad4-1118b18c6bd1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083815Z:a2dc67e0-7a86-4294-912a-071b4842419e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bcaea75ab643af1fbe782227a0a44ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d76c6858-3cde-4f80-a744-2958a4c77b6c", + "x-ms-client-request-id": "4bcaea75ab643af1fbe782227a0a44ef", + "x-ms-correlation-request-id": "46e87ad2-69da-4529-8d24-5c638b0e29bd", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "b144e306-64f0-4f3f-bfb5-a03aee3966a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083816Z:46e87ad2-69da-4529-8d24-5c638b0e29bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edfdb0193728510c3a225558cc5343f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e1c309b-a35c-4751-971f-f1ce52dae223", + "x-ms-client-request-id": "edfdb0193728510c3a225558cc5343f3", + "x-ms-correlation-request-id": "425c1c11-2ec9-40ba-9a1b-88d0fe5be108", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "818fb05a-89aa-4c7a-9883-76e872b9975e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083818Z:425c1c11-2ec9-40ba-9a1b-88d0fe5be108" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30c22d6542624036e055328ac174070e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a3572ae-f3bc-43b8-98e6-0603f2a5a133", + "x-ms-client-request-id": "30c22d6542624036e055328ac174070e", + "x-ms-correlation-request-id": "7aee9e30-a8ce-4f82-a9f6-5d8b668f4771", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "6d807daf-4ce0-4a3e-852d-eaf36b222ffb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083819Z:7aee9e30-a8ce-4f82-a9f6-5d8b668f4771" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e49c8bf51ed43d15dd79114156986ea7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf184d68-0d24-4ce5-8fe0-85e5bd7a6ece", + "x-ms-client-request-id": "e49c8bf51ed43d15dd79114156986ea7", + "x-ms-correlation-request-id": "656d9c09-55bc-4c78-bd5c-5b2230e77204", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "772e8f2d-4ff9-41f5-b103-17b3ec578772", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083820Z:656d9c09-55bc-4c78-bd5c-5b2230e77204" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/633dca34-1542-4e97-992d-0977c7bd0b70?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cbc8fa41447d78c79bc0dd305818fc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a6312d1-0b45-45fe-8d22-6765541f25eb", + "x-ms-client-request-id": "4cbc8fa41447d78c79bc0dd305818fc6", + "x-ms-correlation-request-id": "5e8e09d3-5218-412c-8f2a-52b149cb2989", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "54bf19d7-ff1f-4d0d-90a4-6d70e08da794", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083821Z:5e8e09d3-5218-412c-8f2a-52b149cb2989" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4062461a5fb7461e178552e930f4ea47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1352", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "595ecc0d-a200-496a-812d-b79c483b99f7", + "x-ms-client-request-id": "4062461a5fb7461e178552e930f4ea47", + "x-ms-correlation-request-id": "3e12a6db-b029-4e29-bdd4-7082cce3748d", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "85ec0f3c-516d-4d8d-aa63-97d4f729bedc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083822Z:3e12a6db-b029-4e29-bdd4-7082cce3748d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6590\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002213be5eeb-5514-4459-aa4c-b9e8614a9323\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229da80933-004b-45df-a2ba-442737164e82\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32e68ae6bab7e1c6fec46a171142385b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1352", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "313a6558-4c45-4be6-a560-ec48e26c1801", + "x-ms-client-request-id": "32e68ae6bab7e1c6fec46a171142385b", + "x-ms-correlation-request-id": "d5a513a9-d71d-4810-adef-beef8e894e66", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "11e6c52f-5568-4830-9938-e26d43709096", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083823Z:d5a513a9-d71d-4810-adef-beef8e894e66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6590\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002213be5eeb-5514-4459-aa4c-b9e8614a9323\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229da80933-004b-45df-a2ba-442737164e82\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "1375", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f274be92d3545f0707635c2c1a2a784", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet245", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.0.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2713", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4b976b6-dc24-4223-88bf-45a52fb23aff", + "x-ms-client-request-id": "0f274be92d3545f0707635c2c1a2a784", + "x-ms-correlation-request-id": "29419af6-1379-45fb-b60f-da4bf1e864fa", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083827Z:29419af6-1379-45fb-b60f-da4bf1e864fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5778\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00226faeaac8-995f-40ea-b11c-2726a8917b95\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022f9951d82-44ca-4340-a789-ffe0319b3bdd\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet245\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00226faeaac8-995f-40ea-b11c-2726a8917b95\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022OpenVPN\u0022,\r\n", + " \u0022IkeV2\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.183.5.203\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e500f74ddbcdb91199a0c14085031f5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4736b73-4611-4fb1-9c36-1d7ad7fa19b9", + "x-ms-client-request-id": "e500f74ddbcdb91199a0c14085031f5b", + "x-ms-correlation-request-id": "be9fe843-6a7d-47d8-bc7a-64cff04c3f62", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "67b03ca6-3c8b-48df-970e-fbb287330aa7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083827Z:be9fe843-6a7d-47d8-bc7a-64cff04c3f62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c45e51dbc568bbf3bc78eb4ebfe5169", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bde6448b-f0ee-4de0-9f8a-c4c9a87d802f", + "x-ms-client-request-id": "4c45e51dbc568bbf3bc78eb4ebfe5169", + "x-ms-correlation-request-id": "05289960-1126-4541-8654-6835da9ca2ac", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "e9cb5a25-8781-4e22-a327-c7bbb8082abf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083828Z:05289960-1126-4541-8654-6835da9ca2ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca756041c2a2f6b7b332e1fb9bceda7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88362400-4ce0-4b72-9bba-fd5b1e6b3f07", + "x-ms-client-request-id": "ca756041c2a2f6b7b332e1fb9bceda7c", + "x-ms-correlation-request-id": "1c7c3e7c-bd33-49b1-92da-a4a92ad47a15", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "661fb2d0-56df-4ffe-a8a5-e7082f651efb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083829Z:1c7c3e7c-bd33-49b1-92da-a4a92ad47a15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fd4e662e8c1907e3774a9054c5dcd9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64ecb965-1ab4-4fab-90c8-fe9750a5f3e8", + "x-ms-client-request-id": "0fd4e662e8c1907e3774a9054c5dcd9b", + "x-ms-correlation-request-id": "fd748d52-76f9-4718-830c-a6f89d4c7dd1", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "cc2ba09a-a52b-4419-9b5c-7ac07f072061", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083831Z:fd748d52-76f9-4718-830c-a6f89d4c7dd1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24fe574f548e5bb92e4e9823dbc4ef6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c56c6c6-4ff8-4e6c-a976-8579d606a036", + "x-ms-client-request-id": "24fe574f548e5bb92e4e9823dbc4ef6d", + "x-ms-correlation-request-id": "d170da07-1c60-47c4-8865-79e3f50ee646", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "1740c033-9f56-47c3-83f1-ee522b049d94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083832Z:d170da07-1c60-47c4-8865-79e3f50ee646" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "055112ed422959a8e2e4932d18b1a956", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "685440cc-82c1-4d47-a09f-1c63ec84ce5a", + "x-ms-client-request-id": "055112ed422959a8e2e4932d18b1a956", + "x-ms-correlation-request-id": "01aa53cd-2234-4c08-b884-78f2a79c1879", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "9dee0349-b2b0-4a65-9b10-be29608ead77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083833Z:01aa53cd-2234-4c08-b884-78f2a79c1879" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44ac4564b5cf0ded2c79e072505bb472", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c2683c45-a090-4ed7-96bf-fe0f839583f6", + "x-ms-client-request-id": "44ac4564b5cf0ded2c79e072505bb472", + "x-ms-correlation-request-id": "99edc5af-8ece-4793-a3eb-dc704e2a83b1", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "45fbdd20-2dfc-494d-91ec-a7f1cde0403d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083834Z:99edc5af-8ece-4793-a3eb-dc704e2a83b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a183c85c80b0c72afa542a9c18b427c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40d94cde-3ced-4111-b22c-c90874aba3a6", + "x-ms-client-request-id": "3a183c85c80b0c72afa542a9c18b427c", + "x-ms-correlation-request-id": "c31d42a8-23e8-4e98-8b48-3beccef78b2a", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "a0beb217-ae63-4ce5-97df-2154854a1a3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083836Z:c31d42a8-23e8-4e98-8b48-3beccef78b2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95be41a5ab18379d2444d8af61350886", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1eae32f0-d15d-4e02-8e2a-10acb95832e2", + "x-ms-client-request-id": "95be41a5ab18379d2444d8af61350886", + "x-ms-correlation-request-id": "cb584118-a988-4953-986e-e2aba60beea3", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "7773b6af-ad3b-43e7-ab7f-9d58faec46af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083837Z:cb584118-a988-4953-986e-e2aba60beea3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dca821306f999c4ad39f942973444ca0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a3c7b19-c745-47a4-b68d-07cb35fa3375", + "x-ms-client-request-id": "dca821306f999c4ad39f942973444ca0", + "x-ms-correlation-request-id": "196564ca-136f-4166-bd4b-1d2612390670", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "a2831689-fe2d-4334-b031-09b33f29d639", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083838Z:196564ca-136f-4166-bd4b-1d2612390670" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ecd63361f9cd95a9ee016c7efc2ab79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4338f006-26b5-4329-bd16-a54826612d62", + "x-ms-client-request-id": "0ecd63361f9cd95a9ee016c7efc2ab79", + "x-ms-correlation-request-id": "0704fb03-027b-4250-ae56-a9a1a71b9df6", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "28526409-e486-4a6f-a647-ac487ffe2894", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083840Z:0704fb03-027b-4250-ae56-a9a1a71b9df6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a079bb9d66e335e3f621c1791673c4e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71251aea-dc48-41cf-ab0d-3d87e4dbc722", + "x-ms-client-request-id": "a079bb9d66e335e3f621c1791673c4e0", + "x-ms-correlation-request-id": "c4984c6c-1aff-43e1-a2c2-911e6e6645d9", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "858027cc-2be7-4c13-85ef-991aab3606fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083841Z:c4984c6c-1aff-43e1-a2c2-911e6e6645d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd7938f7fa6810e9c6cf3eb85983ac11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a782bc1e-19ba-4461-9213-1be47a64af8b", + "x-ms-client-request-id": "fd7938f7fa6810e9c6cf3eb85983ac11", + "x-ms-correlation-request-id": "85f94e79-4ec2-4642-89c4-259da86be751", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "82467be0-27ce-4b1f-96ef-3c95bee43741", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083842Z:85f94e79-4ec2-4642-89c4-259da86be751" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b78c1af3accad0bd8097177b5de0c22a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5fd1c055-48ab-423d-a950-d2b9468f905c", + "x-ms-client-request-id": "b78c1af3accad0bd8097177b5de0c22a", + "x-ms-correlation-request-id": "e6712563-8780-4999-9f8e-e2e81a36ee3c", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "61cc7a03-4c84-4450-a3b3-5df5d7839882", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083843Z:e6712563-8780-4999-9f8e-e2e81a36ee3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7cf351cad49a211d168d914282bdc73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2baa8d2b-0e2c-4a85-b0c8-a7b3c92a3772", + "x-ms-client-request-id": "b7cf351cad49a211d168d914282bdc73", + "x-ms-correlation-request-id": "ae11770d-680e-48bd-aee0-d2f3022566a0", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "00ca8ae6-78da-4358-9ead-2373bc72177b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083845Z:ae11770d-680e-48bd-aee0-d2f3022566a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc85af750ce74b157ba87dd0e36eb3e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb8d3f60-18ca-4161-90fe-719d16762de4", + "x-ms-client-request-id": "fc85af750ce74b157ba87dd0e36eb3e6", + "x-ms-correlation-request-id": "902103d0-ba53-46af-a7ee-f79e44198312", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "26eff7ea-687e-40e0-b76c-df14de3f408a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083846Z:902103d0-ba53-46af-a7ee-f79e44198312" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "239b130cf5b446c809eae561d3a8a854", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a54dceae-ac5f-4282-a5db-67fbf4d476a0", + "x-ms-client-request-id": "239b130cf5b446c809eae561d3a8a854", + "x-ms-correlation-request-id": "4fee4129-7774-4f11-9fda-44ccf3a310de", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "129064fc-8697-45f0-a25a-2a5a41375809", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083848Z:4fee4129-7774-4f11-9fda-44ccf3a310de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad05a4bbc65b104320833ca03040bf63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9e16308-734e-4d63-b8d8-d2f17f609b2c", + "x-ms-client-request-id": "ad05a4bbc65b104320833ca03040bf63", + "x-ms-correlation-request-id": "68b33dac-0fd2-47c1-9be0-a4371eb2f376", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "3b2338b1-f5d5-4e4d-94ec-14ab58fe8284", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083849Z:68b33dac-0fd2-47c1-9be0-a4371eb2f376" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1407f2b5b88f7fbee73ff2fd26b478d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f37702a2-6acc-4e5f-8340-fd76c3a6f144", + "x-ms-client-request-id": "1407f2b5b88f7fbee73ff2fd26b478d2", + "x-ms-correlation-request-id": "747d938d-e174-472a-af84-6ed0523338ff", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "4e35a60f-228f-43f3-8242-ca7cc6245b3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083850Z:747d938d-e174-472a-af84-6ed0523338ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e1428000568468ad08a0331b92815c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb556ac2-43ce-4dec-8452-b24260234026", + "x-ms-client-request-id": "3e1428000568468ad08a0331b92815c8", + "x-ms-correlation-request-id": "01fd8ad3-353c-4c21-b8ee-8fd7aaf0d09d", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "0fe3a2db-19ae-4ea5-bec5-e8cc3d884033", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083851Z:01fd8ad3-353c-4c21-b8ee-8fd7aaf0d09d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0ac822a94a103c4e686c61cd345ea6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b7e53608-6645-4fe1-b18a-7956c85b8822", + "x-ms-client-request-id": "e0ac822a94a103c4e686c61cd345ea6c", + "x-ms-correlation-request-id": "64b5acb1-5583-4b42-9557-af1b9ec86776", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "27903193-4596-4339-b7b0-392c41c8c79d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083853Z:64b5acb1-5583-4b42-9557-af1b9ec86776" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07a06a0b812cb0fa68c14305b58cc6be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05e560b5-4708-4fce-8d35-376e51307ca3", + "x-ms-client-request-id": "07a06a0b812cb0fa68c14305b58cc6be", + "x-ms-correlation-request-id": "663f36e6-f28c-424d-982f-960cc46d319a", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "f42fb82a-df57-41a0-9a0a-5fa9e6c1a96e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083854Z:663f36e6-f28c-424d-982f-960cc46d319a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3d2292997086c31631158e23e6d728a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d68cef31-4dc8-42bb-b5dc-60dee15d53d4", + "x-ms-client-request-id": "a3d2292997086c31631158e23e6d728a", + "x-ms-correlation-request-id": "c80ec5d6-77b9-48c0-a526-3e178f843af9", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "dd4940ef-14f2-4b2a-b025-23965ceda9bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083855Z:c80ec5d6-77b9-48c0-a526-3e178f843af9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f2696a00e87a99c88fb77df50bf4d59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0113509f-c8f7-45a8-923f-6a09b8e53004", + "x-ms-client-request-id": "4f2696a00e87a99c88fb77df50bf4d59", + "x-ms-correlation-request-id": "eb86fba5-2089-471c-97d9-bd19127198ee", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "943a5348-d8df-4a70-813b-aac81e242d79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083857Z:eb86fba5-2089-471c-97d9-bd19127198ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aaf307c0467373643934a31a281871fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c4ed3a3-41d4-45a9-a1f9-ae1855dad163", + "x-ms-client-request-id": "aaf307c0467373643934a31a281871fa", + "x-ms-correlation-request-id": "fd8c5e84-ed31-4821-867e-fb8434c341bd", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "d0b0092d-c740-40ee-8c3b-8c25bd55b1b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083858Z:fd8c5e84-ed31-4821-867e-fb8434c341bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f64b94f76661a368d291b0c20511ba4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:38:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ea435c8-b382-442c-95b2-957421a6d898", + "x-ms-client-request-id": "1f64b94f76661a368d291b0c20511ba4", + "x-ms-correlation-request-id": "e6a7009d-cc88-474f-83bf-5d9ad4f1f7c2", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "76d1a9f2-5f32-4c16-ba42-1df8fcbf10a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083859Z:e6a7009d-cc88-474f-83bf-5d9ad4f1f7c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3722fec4c87a5a1732b216536b81806f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e5b3e25-3614-4cc7-b1d8-a999ad5d8e32", + "x-ms-client-request-id": "3722fec4c87a5a1732b216536b81806f", + "x-ms-correlation-request-id": "045646db-0036-4ae2-a144-6b1d1cae5ddd", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "4407b7b0-d10b-4c6f-aa00-a84df44b363e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083900Z:045646db-0036-4ae2-a144-6b1d1cae5ddd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "978f7d8a2e5b49f3d0d81c4a2a5853e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb5cfbe9-de62-449f-bc15-e6b12dd4e99b", + "x-ms-client-request-id": "978f7d8a2e5b49f3d0d81c4a2a5853e7", + "x-ms-correlation-request-id": "a2377248-b8e9-4a4f-9c67-f197d503df69", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "db2b2b8f-6871-488b-be01-c24d6a18a950", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083902Z:a2377248-b8e9-4a4f-9c67-f197d503df69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a56ff183af58780a109ecb360e3af0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2ac38b9-2166-4a10-8346-fc9239ec466f", + "x-ms-client-request-id": "2a56ff183af58780a109ecb360e3af0c", + "x-ms-correlation-request-id": "106cd13d-5d2b-462f-a80b-898ce533d95d", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "58fe74c8-89d3-4ecc-a5e7-745798a1ff70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083904Z:106cd13d-5d2b-462f-a80b-898ce533d95d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a281aba884c196480bd866a1abcd30da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bfdab65e-0133-4dee-a3f2-61fb0f371cd9", + "x-ms-client-request-id": "a281aba884c196480bd866a1abcd30da", + "x-ms-correlation-request-id": "3eb23a8e-fda9-4be6-b690-8620dfa8d91f", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "5ebe5efe-c744-4b88-b979-11462eaf1ce4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083905Z:3eb23a8e-fda9-4be6-b690-8620dfa8d91f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b3a2e5f562b5079fc08f551413fe9ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cf6dbec-0fd4-432a-84a5-fbc3760d6814", + "x-ms-client-request-id": "6b3a2e5f562b5079fc08f551413fe9ed", + "x-ms-correlation-request-id": "a9be60ac-a11c-43c6-b902-a0e177121b37", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "c3b112e6-857e-4760-9b3b-93866ab19b85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083906Z:a9be60ac-a11c-43c6-b902-a0e177121b37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ea11029b0d69425b6c01e1dd3dfdbd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc244758-0184-4843-8ef3-d08b91353448", + "x-ms-client-request-id": "7ea11029b0d69425b6c01e1dd3dfdbd4", + "x-ms-correlation-request-id": "35fddf50-38cd-49eb-b72b-912daf211e01", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "ec6581f7-953b-4f03-b58d-3c7ea93ff08e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083907Z:35fddf50-38cd-49eb-b72b-912daf211e01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "315412d943a851e03230a6b98ef654cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71eba85e-bd7c-4a4f-bc26-9e2cba8a5439", + "x-ms-client-request-id": "315412d943a851e03230a6b98ef654cc", + "x-ms-correlation-request-id": "53bbcfcc-769d-4719-96d0-7e7730f17857", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "75353480-06f1-4fad-9d9e-907134353e76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083909Z:53bbcfcc-769d-4719-96d0-7e7730f17857" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b7778efb22bae0309a6b56a385c7c1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a4e75b9-00d5-4470-8781-8634cb5ec704", + "x-ms-client-request-id": "9b7778efb22bae0309a6b56a385c7c1d", + "x-ms-correlation-request-id": "1c0517d9-0f24-42e1-98b8-dc4aad3ff09b", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "1cbecb48-7211-4202-b884-f6deec118d57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083910Z:1c0517d9-0f24-42e1-98b8-dc4aad3ff09b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f78212cb7eae5442f504ca50a6b05bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f53fdd4-389f-40ef-8484-5e195ac14274", + "x-ms-client-request-id": "2f78212cb7eae5442f504ca50a6b05bf", + "x-ms-correlation-request-id": "93dd35f7-6f14-4a9d-bb4f-ae8b46b6b30c", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "105235ae-5185-4c65-898e-1310fd08e5d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083911Z:93dd35f7-6f14-4a9d-bb4f-ae8b46b6b30c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a2d516b406726a80ea528018e7519d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e57e3417-4cd0-43fd-a6a7-56c8fce035ba", + "x-ms-client-request-id": "5a2d516b406726a80ea528018e7519d5", + "x-ms-correlation-request-id": "c6a36bca-3be3-4f3b-a8d7-988a1e439a0e", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "48100afc-745e-4400-9699-5dccb78eb864", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083913Z:c6a36bca-3be3-4f3b-a8d7-988a1e439a0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d8d88b4257d38e233926cdb665da49d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e776fa4-6daf-4a2a-89ef-4e678140581f", + "x-ms-client-request-id": "6d8d88b4257d38e233926cdb665da49d", + "x-ms-correlation-request-id": "1dfe6946-4140-46ff-8890-e6dd047667cb", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "181c8285-fda3-4b73-ab91-267ad0d0e0cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083914Z:1dfe6946-4140-46ff-8890-e6dd047667cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6fff5a1222eebb6785220448f4357b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b881d4b8-3aa7-49af-92dd-676264e57154", + "x-ms-client-request-id": "e6fff5a1222eebb6785220448f4357b9", + "x-ms-correlation-request-id": "27f18d90-1749-4a0c-b20a-b6b194620555", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "3cfce00a-1d5f-449d-86aa-8617f4fb1ade", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083916Z:27f18d90-1749-4a0c-b20a-b6b194620555" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81f1763797dd46416ff526d5d4cdc0b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3570a9b2-1594-42af-9745-1e2e2638496c", + "x-ms-client-request-id": "81f1763797dd46416ff526d5d4cdc0b1", + "x-ms-correlation-request-id": "4d5087e1-6e7f-4529-8599-a561c6e3cb08", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "471aae04-a1a7-42fd-8cbb-b0961d832edc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083917Z:4d5087e1-6e7f-4529-8599-a561c6e3cb08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98608a01327691a6d2a1f52b049da8f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0eea228-8adf-41fd-8906-f428bed20691", + "x-ms-client-request-id": "98608a01327691a6d2a1f52b049da8f0", + "x-ms-correlation-request-id": "c201e7ed-c317-4559-b50a-f9c53080b453", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "ae9f5b16-3750-46ec-a924-b647f99d382e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083918Z:c201e7ed-c317-4559-b50a-f9c53080b453" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efa4b33a236b09bfb3b87639fbe117aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0b9078e-c096-48f6-b873-c6bd50be2145", + "x-ms-client-request-id": "efa4b33a236b09bfb3b87639fbe117aa", + "x-ms-correlation-request-id": "01e329ea-a2c3-4b97-91b0-a1093afce014", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "472482fd-bea2-4431-be25-c592374da7f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083920Z:01e329ea-a2c3-4b97-91b0-a1093afce014" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04436f91bee20442d05fae3ca21541d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "912ab4cc-1a60-4486-8181-e5364e4aa9d2", + "x-ms-client-request-id": "04436f91bee20442d05fae3ca21541d2", + "x-ms-correlation-request-id": "bf89b32e-b1e9-4b6b-aac7-a4a3497c6aff", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "f7745de9-b515-491c-83aa-fd9d119b8563", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083921Z:bf89b32e-b1e9-4b6b-aac7-a4a3497c6aff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "219a364cd029dd45ca56e4bebb6d96f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37887545-271f-4fce-a6a5-ba1b7b408e35", + "x-ms-client-request-id": "219a364cd029dd45ca56e4bebb6d96f1", + "x-ms-correlation-request-id": "84305d71-f243-4624-8bc3-31318edaf279", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "c9f005e1-271b-4149-9360-ecaf49136be9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083922Z:84305d71-f243-4624-8bc3-31318edaf279" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95994a8aa35a7c0d709f1f0c7483669e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc3ce88e-658a-4702-9a87-80bb7de0979e", + "x-ms-client-request-id": "95994a8aa35a7c0d709f1f0c7483669e", + "x-ms-correlation-request-id": "b6240384-63da-4895-9f9c-e058617987db", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "53dbf504-e4ed-4494-b3a2-51cbabd9df42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083924Z:b6240384-63da-4895-9f9c-e058617987db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5eca476f647c08129653a8cd9834963", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b986147-3893-40d8-a986-e9c20be9d9a2", + "x-ms-client-request-id": "c5eca476f647c08129653a8cd9834963", + "x-ms-correlation-request-id": "e2da9a3e-78e6-4212-bb02-70f373edb813", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "3bcd14ad-3c36-4548-9e82-e1079e1d1590", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083925Z:e2da9a3e-78e6-4212-bb02-70f373edb813" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58b1bdc9ac7ca878281eb08ab1396946", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1192cdcc-8ea3-4908-aeab-0bb1415f8033", + "x-ms-client-request-id": "58b1bdc9ac7ca878281eb08ab1396946", + "x-ms-correlation-request-id": "1c7d4588-d502-4238-a6eb-19e453cf1b51", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "feb05183-677b-45ed-9b04-011fa57727fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083926Z:1c7d4588-d502-4238-a6eb-19e453cf1b51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "174846efd18093aac9d96bf46981a2ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddc5f3c3-ec50-45b6-991a-aeabfdccf134", + "x-ms-client-request-id": "174846efd18093aac9d96bf46981a2ed", + "x-ms-correlation-request-id": "f813fa60-d24e-4cee-8e22-b57814828abd", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "8b02083e-abc3-4ab7-abb8-2ef4d6fa6b21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083928Z:f813fa60-d24e-4cee-8e22-b57814828abd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b642bb560ed1ca222c449d2846f60ef0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5516f4c2-59c3-47a5-a543-1507ab22c7ee", + "x-ms-client-request-id": "b642bb560ed1ca222c449d2846f60ef0", + "x-ms-correlation-request-id": "473a45fb-d27a-4cab-86a2-28ec1c3cb1e0", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "b275427d-8858-473a-9ccc-4bb38c3c33d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083929Z:473a45fb-d27a-4cab-86a2-28ec1c3cb1e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "939cf3fc313bf7e2131e8ea240833fa6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "797fb300-bed3-45d6-b6af-cd0d7a386b9d", + "x-ms-client-request-id": "939cf3fc313bf7e2131e8ea240833fa6", + "x-ms-correlation-request-id": "3f528395-8714-4479-bd2d-14b85ec23a83", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "5af35b0f-4c76-4670-ae23-19d3152e5647", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083930Z:3f528395-8714-4479-bd2d-14b85ec23a83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f534c37cb2f6e174247eeb3c34814dd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5be577c-fb5d-4587-9c72-0901aade5dc9", + "x-ms-client-request-id": "f534c37cb2f6e174247eeb3c34814dd2", + "x-ms-correlation-request-id": "98cca3f2-d93b-4612-bba8-2cd41b3f6d6b", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "2adb1b84-51f4-4c00-945d-6b7a2fddb2ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083931Z:98cca3f2-d93b-4612-bba8-2cd41b3f6d6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76f87bca0ee524b1d84aa3b37f7f89a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0024fc50-2896-4367-8d76-e1a2e8e52f25", + "x-ms-client-request-id": "76f87bca0ee524b1d84aa3b37f7f89a8", + "x-ms-correlation-request-id": "97b86711-49ce-4182-9130-4a884bd22535", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "eac5734a-d1ca-46d6-aacf-d9758cb8b58f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083933Z:97b86711-49ce-4182-9130-4a884bd22535" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82acf60419c249fa7ebb6ebd46a6c392", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "afa3e74c-18a8-4eb7-9787-613b8b384cdf", + "x-ms-client-request-id": "82acf60419c249fa7ebb6ebd46a6c392", + "x-ms-correlation-request-id": "5d2f744b-f976-4f8e-8f71-73f45cc9fc26", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "3412aec6-e1f8-4ce6-adc5-05e12a9f71c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083934Z:5d2f744b-f976-4f8e-8f71-73f45cc9fc26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4d8bcd0c88b6dc1110f1cab0ec161a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e580689-fcc3-4550-bb32-68d37b342a7c", + "x-ms-client-request-id": "c4d8bcd0c88b6dc1110f1cab0ec161a5", + "x-ms-correlation-request-id": "44440647-0ae7-46ef-aa6b-7aa502868b72", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "b9921fcb-a2a6-4b0a-9aad-378d696a549e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083935Z:44440647-0ae7-46ef-aa6b-7aa502868b72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d3742f4cad4b10f81aff72aa0f4dd32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2dc310a7-85e8-4189-a9f0-c27a0e2dd1e1", + "x-ms-client-request-id": "3d3742f4cad4b10f81aff72aa0f4dd32", + "x-ms-correlation-request-id": "a8fdb1d6-d8d7-474e-a56e-8b682406f8d7", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "a2b36896-1df5-470e-b0d8-402bb8aebdec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083937Z:a8fdb1d6-d8d7-474e-a56e-8b682406f8d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3e21187c5a63c1d353f71b2fc4e3abd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a13fe7b-66bb-4236-ba2f-e6f252020729", + "x-ms-client-request-id": "c3e21187c5a63c1d353f71b2fc4e3abd", + "x-ms-correlation-request-id": "789f0ad8-5080-4a08-8e5f-ba5537495be0", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "cc3bde44-97e2-4893-ab6b-baaf8a0b3e20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083939Z:789f0ad8-5080-4a08-8e5f-ba5537495be0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04c9c95a856f06bdac2743dbd197cd1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b3cd0aa-4229-47d9-bfc4-77b1fb2a7cb6", + "x-ms-client-request-id": "04c9c95a856f06bdac2743dbd197cd1c", + "x-ms-correlation-request-id": "d2ecab48-8439-469e-b78d-0f3238b8a998", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "170c1f6f-23ee-425d-b4b7-384db2d71648", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083940Z:d2ecab48-8439-469e-b78d-0f3238b8a998" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd24ea329dde2fff25fb0894585cb532", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "292d3122-3221-45c3-bc0d-40ea0605910c", + "x-ms-client-request-id": "fd24ea329dde2fff25fb0894585cb532", + "x-ms-correlation-request-id": "73aa23ce-714a-43b5-9a4a-71cab5f282f9", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "a95ad9bb-857f-44db-b999-e0813e7c76eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083942Z:73aa23ce-714a-43b5-9a4a-71cab5f282f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7d03a74d92b02c253dc167e81416b9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6183acf-383f-4e1d-bb2e-90145ddd18d3", + "x-ms-client-request-id": "d7d03a74d92b02c253dc167e81416b9e", + "x-ms-correlation-request-id": "628f3a20-7e00-44d8-9cd3-9c622be60977", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "cd1b0b3f-6e31-4d07-9e9e-aa2e149f2aa7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083943Z:628f3a20-7e00-44d8-9cd3-9c622be60977" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "118054723c2abcdfc99ade747d29ad4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ad2ff98-b74f-4db9-8d3c-1bdd42e2339b", + "x-ms-client-request-id": "118054723c2abcdfc99ade747d29ad4f", + "x-ms-correlation-request-id": "758a0806-0963-40a7-8ec8-88e12fec6fa7", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "66b9bf34-b1c1-4716-9714-a87aa3743e09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083944Z:758a0806-0963-40a7-8ec8-88e12fec6fa7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97671072f5c758f12722aa018680ade3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "abba4f40-8683-4d8b-884e-583d9916b3cb", + "x-ms-client-request-id": "97671072f5c758f12722aa018680ade3", + "x-ms-correlation-request-id": "66e44cbb-9eb1-4554-b1b2-21eac7dc1d71", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "d7447177-a48e-40e4-a522-29df3ed29b4c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083945Z:66e44cbb-9eb1-4554-b1b2-21eac7dc1d71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04226a90a3dc37085a130d91fa4e842a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "043c0714-1421-4fba-9602-4110eff6c7d5", + "x-ms-client-request-id": "04226a90a3dc37085a130d91fa4e842a", + "x-ms-correlation-request-id": "d38b6a0d-afd5-47b8-9a89-8cc7f53538ab", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "11b27b48-9cbc-442a-8b61-fd4474e57250", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083947Z:d38b6a0d-afd5-47b8-9a89-8cc7f53538ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "700bc72ed3d97cd76327e90892dd3549", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ccfb287-6a38-4688-a5b2-b705cb95c15d", + "x-ms-client-request-id": "700bc72ed3d97cd76327e90892dd3549", + "x-ms-correlation-request-id": "af8c6e96-65bb-4cfe-b621-be35820a34a8", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "f2667ab7-763f-4c5a-a058-cd5f381f5954", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083948Z:af8c6e96-65bb-4cfe-b621-be35820a34a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12e4faeca906cf7308303cb3e8605ed9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "82e04ae3-db4c-43b8-858a-3fe01de3f333", + "x-ms-client-request-id": "12e4faeca906cf7308303cb3e8605ed9", + "x-ms-correlation-request-id": "9080c7fb-6f66-40bd-bfe9-55dc6d389ee6", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "21757c6a-afa0-4630-bedf-e6e704bcde32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083949Z:9080c7fb-6f66-40bd-bfe9-55dc6d389ee6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bfd2809d3d74bc0a92a6a1b4baffa47c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c305eb10-4386-4950-af27-894586af45ad", + "x-ms-client-request-id": "bfd2809d3d74bc0a92a6a1b4baffa47c", + "x-ms-correlation-request-id": "9ec1edb3-c47d-4a29-a23f-4361d3bf42aa", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "6c9cddf4-d010-40e5-b71e-6d56ffb41e2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083951Z:9ec1edb3-c47d-4a29-a23f-4361d3bf42aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffa4c4de726a8523543c67a997249302", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac01e4ef-2a12-4182-b66d-8b159642fd8e", + "x-ms-client-request-id": "ffa4c4de726a8523543c67a997249302", + "x-ms-correlation-request-id": "0451e2e8-3a38-4d4f-988c-22768f39d80a", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "6a6bba67-ba63-460d-b3c9-f0caf52fb128", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083952Z:0451e2e8-3a38-4d4f-988c-22768f39d80a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "126b10c9760bafd4f0287f6008be1408", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d11f057-bdce-400c-8e88-b552f189472c", + "x-ms-client-request-id": "126b10c9760bafd4f0287f6008be1408", + "x-ms-correlation-request-id": "0107f7e5-9ef3-425c-8440-564c7af30c58", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "a936e915-a945-42cc-b1a7-f8816176f070", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083953Z:0107f7e5-9ef3-425c-8440-564c7af30c58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24d5bf8b5ebc2a6e5c4d6b37d560246e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14963618-3c47-44a0-aaa7-698df486d450", + "x-ms-client-request-id": "24d5bf8b5ebc2a6e5c4d6b37d560246e", + "x-ms-correlation-request-id": "3d2ce2fb-b1aa-4e01-a8b8-9aafd7ead65a", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "88b0403a-e4b8-4348-bcb9-1814ced2c403", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083955Z:3d2ce2fb-b1aa-4e01-a8b8-9aafd7ead65a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9eb9e1292946871eff50f42f2c37c96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "717e0170-1daf-4e9c-98d2-2a8634126e1b", + "x-ms-client-request-id": "a9eb9e1292946871eff50f42f2c37c96", + "x-ms-correlation-request-id": "d849e1bb-69f4-40c7-9e4d-569e0caa5b7f", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "28783062-d5c5-42c2-9972-c2c52e403581", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083956Z:d849e1bb-69f4-40c7-9e4d-569e0caa5b7f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d71e5e276f4e6a46a140b5bd0b9cd990", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1470b010-553b-4cfd-b194-166b4c8d5536", + "x-ms-client-request-id": "d71e5e276f4e6a46a140b5bd0b9cd990", + "x-ms-correlation-request-id": "9214dca2-fff8-40c8-92c4-d620b59934bc", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "5a79ac65-0a63-4678-8210-cf3eafe34cad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083957Z:9214dca2-fff8-40c8-92c4-d620b59934bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a4e11036bd2f8744e6d34c64f2c3899", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "928fdb24-643a-4c56-98d9-3f766c1138e3", + "x-ms-client-request-id": "6a4e11036bd2f8744e6d34c64f2c3899", + "x-ms-correlation-request-id": "e52c91e2-e7b0-4942-8424-7697a95629db", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "9464c808-219c-4245-b86b-50ace9a07a97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T083959Z:e52c91e2-e7b0-4942-8424-7697a95629db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "760fd4d14c42a21f57800853ddb45c53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:39:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "741df3b9-4df7-428c-98c6-c88d8ceeb482", + "x-ms-client-request-id": "760fd4d14c42a21f57800853ddb45c53", + "x-ms-correlation-request-id": "d0a7b3fa-309d-4200-b65f-86cb52776eb4", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "a1fe60de-af42-4e00-86d6-2e06e3d21558", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084000Z:d0a7b3fa-309d-4200-b65f-86cb52776eb4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e03e7f1b1275bcc3ea2589e13a7f1b75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bdc05e25-4fbf-4468-9427-5084ccf63fe2", + "x-ms-client-request-id": "e03e7f1b1275bcc3ea2589e13a7f1b75", + "x-ms-correlation-request-id": "8737140c-3e39-4654-90ca-eeda9beec10d", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "563cc19a-78ad-41e1-b27d-5ef31baaf7ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084001Z:8737140c-3e39-4654-90ca-eeda9beec10d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36ec1c07628cb64df1ab125163201b99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9daa06ed-de76-40b1-94f9-cdba0738bcff", + "x-ms-client-request-id": "36ec1c07628cb64df1ab125163201b99", + "x-ms-correlation-request-id": "cfeafb0f-0814-46fd-8079-4f8c19eb3806", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "dd5ee463-df46-4aa2-a3bb-6221f6ee229a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084003Z:cfeafb0f-0814-46fd-8079-4f8c19eb3806" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfabe11057edbe2411538c1cc33d67d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "473960bd-5211-4bd4-a954-5f474f7aec65", + "x-ms-client-request-id": "cfabe11057edbe2411538c1cc33d67d8", + "x-ms-correlation-request-id": "f908af23-3366-49e7-aef8-c22c9a942445", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "35950af9-fa33-4991-b660-07df509132a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084004Z:f908af23-3366-49e7-aef8-c22c9a942445" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c04c936526c7b8c63187efc9007159c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cbbc660-c7dd-4176-b855-ab074ecdfc24", + "x-ms-client-request-id": "c04c936526c7b8c63187efc9007159c9", + "x-ms-correlation-request-id": "a17a3da9-2400-4578-97ba-dc190401fc4b", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "7583e9fa-00fc-441c-8a73-de5642a396f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084005Z:a17a3da9-2400-4578-97ba-dc190401fc4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59d1ef0a4bd4b087f82d2439d630f3b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98f880ff-c24b-4eef-a3c0-85a739480895", + "x-ms-client-request-id": "59d1ef0a4bd4b087f82d2439d630f3b3", + "x-ms-correlation-request-id": "09596fee-5763-4ba3-a75e-6a2bbc95c73e", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "d2f83ca6-b19d-4d1a-9bdb-282b6deebe8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084006Z:09596fee-5763-4ba3-a75e-6a2bbc95c73e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfec39435ad4e9d11af29e66685abe9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53f86c4c-8cc1-4db7-bc72-33b9350bcec4", + "x-ms-client-request-id": "cfec39435ad4e9d11af29e66685abe9f", + "x-ms-correlation-request-id": "c90c1a0f-27e8-4ba0-9553-079c0926ac49", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "8a3c87bb-6066-4745-baeb-0ee9b54d1531", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084008Z:c90c1a0f-27e8-4ba0-9553-079c0926ac49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d312c2f90e6b19040c9bc89a018de100", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "464de749-9331-4eaf-97b2-a046225d0e7c", + "x-ms-client-request-id": "d312c2f90e6b19040c9bc89a018de100", + "x-ms-correlation-request-id": "9d9d210f-10b8-4d6a-809a-0017fb578c10", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "a5766ba5-731b-42f8-b4f4-097b55a90976", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084009Z:9d9d210f-10b8-4d6a-809a-0017fb578c10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6863c948984aff51de83ee1ad20489e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32c1bc9e-0899-4401-a423-055f35c7a3ef", + "x-ms-client-request-id": "c6863c948984aff51de83ee1ad20489e", + "x-ms-correlation-request-id": "8eaf12b6-9d03-46a2-b4da-52c72f7ab7e6", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "be062c85-18d8-4bc1-ad21-aac9c353fa7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084010Z:8eaf12b6-9d03-46a2-b4da-52c72f7ab7e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1440846f1f1d344735d3c3389237e78d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a56b49b-774c-47b9-83cc-ef55c256e22e", + "x-ms-client-request-id": "1440846f1f1d344735d3c3389237e78d", + "x-ms-correlation-request-id": "d22608b4-9001-4a79-8a26-5035add30446", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "80556be4-d1b9-49d0-a8d8-d60e809b0d52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084012Z:d22608b4-9001-4a79-8a26-5035add30446" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bd19d10f7d36f1bcc63b583cf226ceb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6bf85c9b-f7f7-4f72-a0c9-87afedfca089", + "x-ms-client-request-id": "2bd19d10f7d36f1bcc63b583cf226ceb", + "x-ms-correlation-request-id": "03808914-20a4-42ad-a9fd-e61e23886289", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "cd25f8a4-b8a1-451d-b489-ebe423c3ea19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084013Z:03808914-20a4-42ad-a9fd-e61e23886289" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d2a2a53cd4c74e3f45190b1c5bd1ce6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a45fc9e-4f37-4919-9ade-4781053c0490", + "x-ms-client-request-id": "7d2a2a53cd4c74e3f45190b1c5bd1ce6", + "x-ms-correlation-request-id": "a0c87e37-2d0a-4cf1-a52c-ed9ed628fc01", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "9825c1e6-0593-4bcb-8808-cb199d48b5af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084014Z:a0c87e37-2d0a-4cf1-a52c-ed9ed628fc01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fd0b1001c4e77ca69d047ba6ac36512", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8cc62278-3dbd-49dc-8153-8bc3e7795a8e", + "x-ms-client-request-id": "0fd0b1001c4e77ca69d047ba6ac36512", + "x-ms-correlation-request-id": "5fd3a998-8f49-4cdc-b772-9b9d3763bd66", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "b630618c-7587-4745-a11a-b6ebe0f86869", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084016Z:5fd3a998-8f49-4cdc-b772-9b9d3763bd66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68e4d8676a0c4340ba5d37816669a90f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0bd2157-3dca-4f63-9c8c-a38752a8806f", + "x-ms-client-request-id": "68e4d8676a0c4340ba5d37816669a90f", + "x-ms-correlation-request-id": "47877084-72f3-4403-b948-c06f708b6b0d", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "f4f50a08-8a51-4118-8007-000062f2c2bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084018Z:47877084-72f3-4403-b948-c06f708b6b0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e82cf465c52379c5fb3137c85280930", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e01cca57-e2ac-4221-9762-39c21b764eae", + "x-ms-client-request-id": "1e82cf465c52379c5fb3137c85280930", + "x-ms-correlation-request-id": "f3e5063d-910a-4318-bd5b-5d59f230eeac", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "be3ef70e-a6da-4c8f-81c2-45027ff21acd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084019Z:f3e5063d-910a-4318-bd5b-5d59f230eeac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed497eecb4d896d9708c55f1e44810ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c11e2ea5-7b03-42fe-b9ac-a07fac3a5176", + "x-ms-client-request-id": "ed497eecb4d896d9708c55f1e44810ff", + "x-ms-correlation-request-id": "dc2a978a-d1e5-4254-8a10-53f70f76806a", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "19513010-7fa4-41eb-a503-45a86a04aa0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084020Z:dc2a978a-d1e5-4254-8a10-53f70f76806a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b73382647410bc03cac085957c4be91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b29180d0-d427-4f07-ac3c-73f132bc0372", + "x-ms-client-request-id": "9b73382647410bc03cac085957c4be91", + "x-ms-correlation-request-id": "87709867-c0c1-47f8-af20-8f84a6d56f9b", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "751e3ded-0fc0-4d7f-b539-d4f66858e338", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084022Z:87709867-c0c1-47f8-af20-8f84a6d56f9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8950653bc1f9237f5ebadc506aa5216", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fbfe604a-5b2f-43cd-8043-830a977b3bee", + "x-ms-client-request-id": "e8950653bc1f9237f5ebadc506aa5216", + "x-ms-correlation-request-id": "cb260151-829d-4b83-b9ec-08fb5ef9a365", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "01e6fc8a-d692-4b3a-b3c0-0e36044110b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084023Z:cb260151-829d-4b83-b9ec-08fb5ef9a365" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d5513a26eb5a5efbd3eb02bab7f3fab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81619b9d-6d42-4933-8ab8-ff246f9e5d70", + "x-ms-client-request-id": "4d5513a26eb5a5efbd3eb02bab7f3fab", + "x-ms-correlation-request-id": "8a6868d8-64a6-467c-9a61-a3bc2decbff7", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "615ffc9f-3569-463a-9c80-9f01ef52c68a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084024Z:8a6868d8-64a6-467c-9a61-a3bc2decbff7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de9dc4ce28b26adf01e0a55599fb0491", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a2647cb-18a9-4913-977d-a3e3f6d8c34e", + "x-ms-client-request-id": "de9dc4ce28b26adf01e0a55599fb0491", + "x-ms-correlation-request-id": "9a970eb4-b643-466f-b031-8053de71ce5f", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "b307b7fc-aecb-439e-aa22-3433b074b996", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084025Z:9a970eb4-b643-466f-b031-8053de71ce5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43b7f259706fe4dc17f02be10b0be776", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe856c66-dbd5-4e85-bbb4-3bbbe5b568a3", + "x-ms-client-request-id": "43b7f259706fe4dc17f02be10b0be776", + "x-ms-correlation-request-id": "234c60d4-b724-4f30-87b5-723feaa0fa19", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "8bd939d9-ceca-46a9-a81f-3c524184a710", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084027Z:234c60d4-b724-4f30-87b5-723feaa0fa19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42f602ac740d796333ea4cd4c9990cc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8b1c4da-b759-4a64-8cab-5249deb53629", + "x-ms-client-request-id": "42f602ac740d796333ea4cd4c9990cc1", + "x-ms-correlation-request-id": "5acea203-93cb-4a85-9993-907ad550225b", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "4c9f778b-e4a5-4035-b6ef-59a0716e843e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084028Z:5acea203-93cb-4a85-9993-907ad550225b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9d11e39fbc75d3ce8b8c7c2fcfe5ef5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2eb8497-5b5e-4f0e-84f3-2805cff923b2", + "x-ms-client-request-id": "b9d11e39fbc75d3ce8b8c7c2fcfe5ef5", + "x-ms-correlation-request-id": "aa886061-27db-4773-9efa-63e80abc25fd", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "d9acefde-062f-487b-814e-a0e45638db9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084029Z:aa886061-27db-4773-9efa-63e80abc25fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96a82ff9c204e5848e3d108424071b7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "847d08c5-7856-44e6-8f8c-6f5bb42d62d5", + "x-ms-client-request-id": "96a82ff9c204e5848e3d108424071b7d", + "x-ms-correlation-request-id": "c84ac6df-d83d-414f-89e6-9a7508f7d7c5", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "074e543a-70ab-4ed6-b484-10b071e5ed20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084031Z:c84ac6df-d83d-414f-89e6-9a7508f7d7c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eda769e42d39b1aec5985a54ada17d34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a195855a-b19a-422c-9db9-5d6e5b6bb2dd", + "x-ms-client-request-id": "eda769e42d39b1aec5985a54ada17d34", + "x-ms-correlation-request-id": "51b6e497-920e-4ced-82b8-d53108751d5d", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "a24c3951-a7a5-443c-a857-e5e49fee4ab6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084032Z:51b6e497-920e-4ced-82b8-d53108751d5d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9adb568c75f177bd9aec2b8aeab839e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e81586ab-e8f5-4cf9-96fa-71ba27af374b", + "x-ms-client-request-id": "9adb568c75f177bd9aec2b8aeab839e0", + "x-ms-correlation-request-id": "247e0409-e1c6-44a2-b0dc-54e8e3d7926a", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "9515f577-30ce-460a-87fb-9ae3169d90bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084033Z:247e0409-e1c6-44a2-b0dc-54e8e3d7926a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93de499d7157cbbb80f7d16b683037ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39b623b9-dcc3-40e7-87bf-fb42ec03d666", + "x-ms-client-request-id": "93de499d7157cbbb80f7d16b683037ec", + "x-ms-correlation-request-id": "6d667d73-d226-421c-bac7-6649a1c02dc2", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "854b1ea4-d0b0-4541-976a-b758ea48f3d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084035Z:6d667d73-d226-421c-bac7-6649a1c02dc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdf8dbc0802b6f8cac30524d0224c60d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98242797-7408-4892-b889-f223fe450ef1", + "x-ms-client-request-id": "cdf8dbc0802b6f8cac30524d0224c60d", + "x-ms-correlation-request-id": "505b309b-ab59-4d0b-b736-d306df7149a6", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "519adc2e-7aed-4510-ace4-fcc03538eaa3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084036Z:505b309b-ab59-4d0b-b736-d306df7149a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63b6795feac31add9b1019f9a4510e69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2056d4e2-6fec-4d82-b3c0-55423b9ac84f", + "x-ms-client-request-id": "63b6795feac31add9b1019f9a4510e69", + "x-ms-correlation-request-id": "5255554f-855e-4ba7-a4de-94bbe7ed11a2", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "5115846a-4078-4377-a13d-6919d5889c29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084038Z:5255554f-855e-4ba7-a4de-94bbe7ed11a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fc93eb46bbf1cb5bd6fe6261e6ec85c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d7df94cb-9a89-40b9-ae4c-3c1662237068", + "x-ms-client-request-id": "0fc93eb46bbf1cb5bd6fe6261e6ec85c", + "x-ms-correlation-request-id": "404b94ed-217d-430c-99a0-cafd20b7f61d", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "549058a1-2f18-4bb5-89ff-2c33340fea8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084039Z:404b94ed-217d-430c-99a0-cafd20b7f61d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef0bc331d479d629fedd321b6792cb5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "946c7164-3bec-49d1-8844-30c0bfb48f46", + "x-ms-client-request-id": "ef0bc331d479d629fedd321b6792cb5a", + "x-ms-correlation-request-id": "74cfeee9-d654-430f-bc33-5fad2332b0b6", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "1232df4f-ca92-4661-8331-c71a4cbd29bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084040Z:74cfeee9-d654-430f-bc33-5fad2332b0b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c499e921b75af44dc49aa65403b6fc2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b30b4ea-5ac7-465f-a1a1-7f15a37ec93d", + "x-ms-client-request-id": "c499e921b75af44dc49aa65403b6fc2d", + "x-ms-correlation-request-id": "3384abaa-81a0-434c-a487-7f5d46e4df39", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "9784f5f7-6b9f-4294-b855-82eb73c3df6f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084041Z:3384abaa-81a0-434c-a487-7f5d46e4df39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0c8bd471f45e0f014f311e23899b52a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15accfd8-be68-4f74-9d0d-b7b8db84f73a", + "x-ms-client-request-id": "e0c8bd471f45e0f014f311e23899b52a", + "x-ms-correlation-request-id": "d7ae9ae3-247a-4b2e-b6f6-97f76e40b804", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "14c8a472-bf15-4081-adb6-9e45fadc9e95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084043Z:d7ae9ae3-247a-4b2e-b6f6-97f76e40b804" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35058ca404d4790176172bdf2dd5d347", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b455e1a2-6169-4557-b107-fe5cde10f744", + "x-ms-client-request-id": "35058ca404d4790176172bdf2dd5d347", + "x-ms-correlation-request-id": "5c02b415-c74a-4abd-8192-968c84b0272b", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "c945855a-8504-4b1e-900b-25195de01db8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084044Z:5c02b415-c74a-4abd-8192-968c84b0272b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9d405e1eaca0214f9b8af67a66bbb2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "591f422b-d7d0-4224-a177-e388bf73c4b4", + "x-ms-client-request-id": "a9d405e1eaca0214f9b8af67a66bbb2a", + "x-ms-correlation-request-id": "f7f7d80a-a401-418e-a143-bdf20e71ae1e", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "0ab67a70-4df5-443c-ae83-1848ebcdaa31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084045Z:f7f7d80a-a401-418e-a143-bdf20e71ae1e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76b07ce4c7b14358bb4e692ef310b23f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "166d8697-fd58-48d8-8aff-78297535c850", + "x-ms-client-request-id": "76b07ce4c7b14358bb4e692ef310b23f", + "x-ms-correlation-request-id": "df5618a6-c901-4184-8822-7217feea0a4b", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "a4ca46a0-2ef4-4bc4-911d-07ed3d9a3938", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084047Z:df5618a6-c901-4184-8822-7217feea0a4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3301c9200bc5b95f77023b1c549ad30b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f37b205-e977-4f93-81f4-81a99b2aad97", + "x-ms-client-request-id": "3301c9200bc5b95f77023b1c549ad30b", + "x-ms-correlation-request-id": "20f54f77-8e91-4887-90c3-c5d37fbea5f7", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "98260466-60ba-4ca0-be10-6d8682c40a74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084048Z:20f54f77-8e91-4887-90c3-c5d37fbea5f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0fb005b5c241996ad90ed7b80e60ee8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e41da5d-a112-49ce-b3a7-1ddd08d6c4db", + "x-ms-client-request-id": "b0fb005b5c241996ad90ed7b80e60ee8", + "x-ms-correlation-request-id": "9c90bbca-b432-4ec5-8854-e34e29e3866e", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "4fec2251-81f6-4b9f-955b-e95e5d345491", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084049Z:9c90bbca-b432-4ec5-8854-e34e29e3866e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/6dee4b5d-bd11-4f7c-9da3-6b8fe8bb9ae3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc476f058869d8651cf7ffae8b3cee21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8fa1a4d4-b37b-4325-b3f2-42a9224e5aa2", + "x-ms-client-request-id": "dc476f058869d8651cf7ffae8b3cee21", + "x-ms-correlation-request-id": "7b3f4a8b-04b3-484e-a2e3-89249c819ae5", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "bb72c889-e9d0-480e-b8b0-81819871e0c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084050Z:7b3f4a8b-04b3-484e-a2e3-89249c819ae5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3d25e7a0215c41a33e786341ee33890", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2412", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c338400-3db5-426d-a88e-4dc7ef470da4", + "x-ms-client-request-id": "f3d25e7a0215c41a33e786341ee33890", + "x-ms-correlation-request-id": "037a3208-db0f-43d1-97da-19610e0f5808", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "b9ea0281-b47e-4b38-b924-a226d8acfa05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084051Z:037a3208-db0f-43d1-97da-19610e0f5808" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5778\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f9bd7184-ecb3-4877-857d-bff95d33850f\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022f9951d82-44ca-4340-a789-ffe0319b3bdd\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet245\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f9bd7184-ecb3-4877-857d-bff95d33850f\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.183.5.203\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e41653f4f753d3a19b22932d5ce78e70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2412", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13029228-07f7-446f-ace2-f9c58bfe032a", + "x-ms-client-request-id": "e41653f4f753d3a19b22932d5ce78e70", + "x-ms-correlation-request-id": "ea0dd991-e709-4505-8bec-6acf4ddaa7a6", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "c0d23f82-ce44-4dce-b6ef-116386e56ecf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084051Z:ea0dd991-e709-4505-8bec-6acf4ddaa7a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5778\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f9bd7184-ecb3-4877-857d-bff95d33850f\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022f9951d82-44ca-4340-a789-ffe0319b3bdd\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet245\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f9bd7184-ecb3-4877-857d-bff95d33850f\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.183.5.203\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "1838", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2201cca21b1403d35582a9820131ba39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "virtualNetworkGateway1": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet245", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworks/azsmnet7565/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/publicIPAddresses/azsmnet3390" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.0.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778/ipConfigurations/azsmnet245", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "localNetworkGateway2": { + "location": "westus2", + "tags": { + "test": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704", + "properties": { + "localNetworkAddressSpace": { + "addressPrefixes": [ + "192.168.0.0/16" + ] + }, + "gatewayIpAddress": "192.168.3.4" + } + }, + "connectionType": "IPsec", + "routingWeight": 4, + "sharedKey": "abc" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1315", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc9e1011-b386-4b0a-af2e-8e4cba7cfe98", + "x-ms-client-request-id": "2201cca21b1403d35582a9820131ba39", + "x-ms-correlation-request-id": "f1cbe72b-74d0-42cc-a136-6034c0ae7c2a", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "9fe7a5b3-02c7-4b7d-864b-86fe079fb863", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084054Z:f1cbe72b-74d0-42cc-a136-6034c0ae7c2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6590\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00229ab377c9-2032-49b0-95ae-bbb23bf70d32\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229da80933-004b-45df-a2ba-442737164e82\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5191155816e2d97c7f128fd04d1fd16a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "495dd98c-aa77-462d-8897-d9e69bbba5fc", + "x-ms-client-request-id": "5191155816e2d97c7f128fd04d1fd16a", + "x-ms-correlation-request-id": "ba1540e0-d33a-49d3-85cc-ba88866be1ef", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "1daed0b5-90dc-4853-81f5-a1d33ec3555a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084054Z:ba1540e0-d33a-49d3-85cc-ba88866be1ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee6f5a68562d984afe7e6416c3e19568", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5aa885bf-1960-4b76-9d73-5ea1a81a33fe", + "x-ms-client-request-id": "ee6f5a68562d984afe7e6416c3e19568", + "x-ms-correlation-request-id": "946ca3bb-e5f8-4d1e-a3c2-acf66c8b9952", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "d391d4e7-daa6-42b3-997c-8c5e797dd95e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084056Z:946ca3bb-e5f8-4d1e-a3c2-acf66c8b9952" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec295d1b689fa856f2e0b8137afd359d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a42cd0a4-1ba7-4967-a0c2-60df42c4348a", + "x-ms-client-request-id": "ec295d1b689fa856f2e0b8137afd359d", + "x-ms-correlation-request-id": "ed730ffd-1d52-47bc-8bec-aa31f91e682c", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "66bce0a5-e99e-487d-862b-e3ce593836d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084058Z:ed730ffd-1d52-47bc-8bec-aa31f91e682c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "138aee2c797d021ecaf95364b166169e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:40:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e896dd5-242d-4262-98a3-ca22b510d297", + "x-ms-client-request-id": "138aee2c797d021ecaf95364b166169e", + "x-ms-correlation-request-id": "3e2ff01c-bede-4f26-90a7-9fb9b9b26db9", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "c0180f2f-a6f5-4dc3-b6ac-319e301d2e3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084059Z:3e2ff01c-bede-4f26-90a7-9fb9b9b26db9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0b4277ce5f6ffca04c6fb4c9e371e00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7bccee5f-a0b9-47d4-b62c-072aaeb939a9", + "x-ms-client-request-id": "f0b4277ce5f6ffca04c6fb4c9e371e00", + "x-ms-correlation-request-id": "e3d91eea-765b-4d14-9dc2-3fad6a7b4a22", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "68af3e00-b2d6-4c52-85ff-207ed21a1df3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084101Z:e3d91eea-765b-4d14-9dc2-3fad6a7b4a22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5e9c7488257a2ea3f2721a515f2f78c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5448265b-a8d2-4b3d-9e3c-e408efde06da", + "x-ms-client-request-id": "d5e9c7488257a2ea3f2721a515f2f78c", + "x-ms-correlation-request-id": "2e462f75-0ef2-49cc-b04e-4301d2ce3743", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "a14d0e2a-056d-4cb5-89b2-025e26525568", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084102Z:2e462f75-0ef2-49cc-b04e-4301d2ce3743" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52961aca454846a7238a0fb77dd26393", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e130962a-c4ec-42e4-a8c5-feafc09d80d6", + "x-ms-client-request-id": "52961aca454846a7238a0fb77dd26393", + "x-ms-correlation-request-id": "05cb94f6-5f6e-432c-8167-519e05c4584a", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "d334749d-72d9-4dd0-ba1f-38b5c5af6c49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084103Z:05cb94f6-5f6e-432c-8167-519e05c4584a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e91b52db417cfa463c12b1cec424ea11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86c16aea-5399-4c60-84c8-8d0ee1ba7f81", + "x-ms-client-request-id": "e91b52db417cfa463c12b1cec424ea11", + "x-ms-correlation-request-id": "d620839d-708b-4a43-b1a5-23e6bbd58524", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "59f62efd-9f2e-4e77-8082-f0d74d71e0f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084104Z:d620839d-708b-4a43-b1a5-23e6bbd58524" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83816fcecba003b71fa2b1cd7233256d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c2a1ab60-861f-4c62-9511-1fdf343cbd40", + "x-ms-client-request-id": "83816fcecba003b71fa2b1cd7233256d", + "x-ms-correlation-request-id": "bac4133e-cc93-46cd-88a1-cca6ce6202e7", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "caf51c57-51fd-404e-9d0d-a9fe8eed9ab1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084106Z:bac4133e-cc93-46cd-88a1-cca6ce6202e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2ca8dc30dd7890fd39c163694d982fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5566ad25-3d9b-4a98-b0c5-fa99c0cea8aa", + "x-ms-client-request-id": "c2ca8dc30dd7890fd39c163694d982fe", + "x-ms-correlation-request-id": "e67f290e-f44c-489b-b708-5ada2e5b9a38", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "807b2808-4adb-42a2-9797-e42afaff8586", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084107Z:e67f290e-f44c-489b-b708-5ada2e5b9a38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0de8fd9fe0500ff39b18cada8f798709", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67133415-82f9-44d8-a30c-8d75f46a9f40", + "x-ms-client-request-id": "0de8fd9fe0500ff39b18cada8f798709", + "x-ms-correlation-request-id": "192662e0-f850-4809-a358-032f008afb31", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "d6d9420a-a86c-4b3a-a7a0-9018c6d72645", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084108Z:192662e0-f850-4809-a358-032f008afb31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "360b44ed285ac03a60f7b004b5816f46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "632c732a-5738-453b-8f5f-517137cf143f", + "x-ms-client-request-id": "360b44ed285ac03a60f7b004b5816f46", + "x-ms-correlation-request-id": "480fa102-0285-485c-ab2c-430522c7a693", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "c8be5af6-fd0d-4f2c-9e1e-0c722a088495", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084110Z:480fa102-0285-485c-ab2c-430522c7a693" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "752db31f174ae31c9aba27be4335fa59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a95795e-5e17-4121-80ea-e20b8d02cfa9", + "x-ms-client-request-id": "752db31f174ae31c9aba27be4335fa59", + "x-ms-correlation-request-id": "accfcf98-7b05-4637-8b38-822a5690c993", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "f1f4b40e-58fb-40ae-8736-cf11e83fd041", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084111Z:accfcf98-7b05-4637-8b38-822a5690c993" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50480c144ccd76a3c328ad582fef5a19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc01f23e-5f46-4067-ad9e-40c8dc2f2e6c", + "x-ms-client-request-id": "50480c144ccd76a3c328ad582fef5a19", + "x-ms-correlation-request-id": "b02a5aa6-4697-44c8-9163-0f08e7ab2b8a", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "2c3e17c7-0ff3-4e89-98ec-920f36ff907d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084112Z:b02a5aa6-4697-44c8-9163-0f08e7ab2b8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbba83a8124cd6be27279ba0017b7d2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a7d0dfb-f6d7-4ece-b9a4-cebfb5f0e9af", + "x-ms-client-request-id": "dbba83a8124cd6be27279ba0017b7d2b", + "x-ms-correlation-request-id": "ff1eabdd-d329-47ea-bdb9-22fca1354366", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "6422568c-3171-4d02-96f6-311a414e3d96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084114Z:ff1eabdd-d329-47ea-bdb9-22fca1354366" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8ef56fd1f38d3780fb6b1226ac3b3ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84378f6f-1b8e-472f-8cd1-f0b66824fb61", + "x-ms-client-request-id": "a8ef56fd1f38d3780fb6b1226ac3b3ab", + "x-ms-correlation-request-id": "93d5cd5d-3001-45de-928c-c0057a28e739", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "192458a0-af5a-4cc8-849d-e0b080464694", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084115Z:93d5cd5d-3001-45de-928c-c0057a28e739" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf150d5f1e7b010d4d7228a6b1037547", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b88502d5-8fb8-4c01-8ca4-dc06eeee4063", + "x-ms-client-request-id": "bf150d5f1e7b010d4d7228a6b1037547", + "x-ms-correlation-request-id": "2670c0cb-3aeb-4b7d-a68b-b8ebfdfeb35e", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "323b724f-9aab-449e-99cd-f8713988e06e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084116Z:2670c0cb-3aeb-4b7d-a68b-b8ebfdfeb35e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d85b81abb2ff89e10be7cc95609c6b64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c654711-b166-44b0-b668-70c5c8dcdcff", + "x-ms-client-request-id": "d85b81abb2ff89e10be7cc95609c6b64", + "x-ms-correlation-request-id": "b1094e49-eb14-4b32-8297-2f92243f455c", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "63740dcd-0101-4d1b-8f0b-a349ea97168e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084118Z:b1094e49-eb14-4b32-8297-2f92243f455c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f440f073bd65deb049ed5ac6f6d2210b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec5da1e2-804a-48d7-b219-0cdf1ec827f3", + "x-ms-client-request-id": "f440f073bd65deb049ed5ac6f6d2210b", + "x-ms-correlation-request-id": "755590da-cf19-43e8-b77c-3209ea5fc4e7", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "294d792b-2551-4341-a9f2-bb1da678db1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084119Z:755590da-cf19-43e8-b77c-3209ea5fc4e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8766941db68adab2c8cb4935277a1b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a60bd3a-edc6-4b1f-ae35-a4236cdf9025", + "x-ms-client-request-id": "e8766941db68adab2c8cb4935277a1b1", + "x-ms-correlation-request-id": "731471b8-f897-4709-8b0d-c2902108175b", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "3ad267eb-c87f-49e4-89fd-87b9064090a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084120Z:731471b8-f897-4709-8b0d-c2902108175b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c132c40680c3ede2d17c8e12571b9339", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c39f66e-4559-40af-acb1-502e68c3e98c", + "x-ms-client-request-id": "c132c40680c3ede2d17c8e12571b9339", + "x-ms-correlation-request-id": "0ff7b6d5-a595-4b2b-a122-42d14e78a0d5", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "0fd2d894-6ec3-4ff0-95a6-2aca9ad7fd05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084121Z:0ff7b6d5-a595-4b2b-a122-42d14e78a0d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f653c0c5832598fb4593c8d9091c8cd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "42969ccb-b847-466e-9ac8-9a76e50e213e", + "x-ms-client-request-id": "f653c0c5832598fb4593c8d9091c8cd2", + "x-ms-correlation-request-id": "e26f3766-523a-4606-b1a5-38a65f072393", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "69b5dd9b-367c-4315-8805-0b95baadd4d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084123Z:e26f3766-523a-4606-b1a5-38a65f072393" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/9fe7a5b3-02c7-4b7d-864b-86fe079fb863?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31bfa94c60a0c048878916eb4c995511", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "769fe457-5277-4626-9098-da9e54cc07b9", + "x-ms-client-request-id": "31bfa94c60a0c048878916eb4c995511", + "x-ms-correlation-request-id": "4852dfa1-9b91-4a6b-9956-ef92e0598451", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "7201c926-67ac-4199-ad27-945d2b3fa6bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084124Z:4852dfa1-9b91-4a6b-9956-ef92e0598451" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92ce7bf8aa23838bc8997c30b809e4b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1352", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f9b1716-6606-4f57-b676-e6d165b5556d", + "x-ms-client-request-id": "92ce7bf8aa23838bc8997c30b809e4b5", + "x-ms-correlation-request-id": "22affb0b-39cd-41d3-bbbc-ff460b11cb1d", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "0a471907-fdd1-4b0a-8194-0d16bec778cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084125Z:22affb0b-39cd-41d3-bbbc-ff460b11cb1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6590\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022d819d6ef-ce3d-4b24-a036-6b47d3e7fb6f\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229da80933-004b-45df-a2ba-442737164e82\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aec5bcf0615b649877936f9c6c0f4cab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1352", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d0da7c0-29ed-46ea-84a1-02916ea16357", + "x-ms-client-request-id": "aec5bcf0615b649877936f9c6c0f4cab", + "x-ms-correlation-request-id": "1c2b8b73-cb22-471a-ab4d-5549a72dd320", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "ac096133-d83c-4653-aa11-874db33b6275", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084125Z:1c2b8b73-cb22-471a-ab4d-5549a72dd320" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6590\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022d819d6ef-ce3d-4b24-a036-6b47d3e7fb6f\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229da80933-004b-45df-a2ba-442737164e82\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210811.3", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ee0b63dfa4da2ae1e3b6906e418077e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1440", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 23 Aug 2021 08:41:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2486ba94-51c7-4104-b0ab-0d0e3dbfd4c6", + "x-ms-client-request-id": "8ee0b63dfa4da2ae1e3b6906e418077e", + "x-ms-correlation-request-id": "4598d8e4-849f-455d-a306-b6186af34ce9", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "d90da6b7-6b06-400d-945b-839df551caca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210823T084126Z:4598d8e4-849f-455d-a306-b6186af34ce9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet6590\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/connections/azsmnet6590\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022d819d6ef-ce3d-4b24-a036-6b47d3e7fb6f\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229da80933-004b-45df-a2ba-442737164e82\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5778\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg6370/providers/Microsoft.Network/localNetworkGateways/azsmnet3704\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "1469727977", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs index 71e0efd1c7c4..1211309d2a48 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs @@ -40,6 +40,7 @@ private enum TestEnvironmentSettings } [Test] + [RecordedTest] public async Task VnetGatewayBaseTest() { string resourceGroupName = Recording.GenerateAssetName("csmrg"); From a0bcad388af3dfa051d78f9b3e739ec6afb5f4ad Mon Sep 17 00:00:00 2001 From: dvbb <61542202+dvbb@users.noreply.github.com> Date: Wed, 25 Aug 2021 11:54:35 +0800 Subject: [PATCH 3/3] test(network): add record file --- .../VnetGatewayBaseTestAsync.json | 78119 ++++++++++++++++ ...tGatewayConnectionSiteToSiteTestAsync.json | 39521 ++++++++ ...tGatewayConnectionVnetToVnetTestAsync.json | 60812 ++++++++++++ .../tests/Tests/GatewayOperationsTests.cs | 22 +- 4 files changed, 178463 insertions(+), 11 deletions(-) create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayBaseTestAsync.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionSiteToSiteTestAsync.json create mode 100644 sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionVnetToVnetTestAsync.json diff --git a/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayBaseTestAsync.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayBaseTestAsync.json new file mode 100644 index 000000000000..80f36d57db2d --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayBaseTestAsync.json @@ -0,0 +1,78119 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "335e7680136988bcc5add2afbff81110", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:25:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1135e840-0151-4851-9e5c-e9960c8dfc89", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "1135e840-0151-4851-9e5c-e9960c8dfc89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062600Z:1135e840-0151-4851-9e5c-e9960c8dfc89" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/csmrg1094?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "22", + "Content-Type": "application/json", + "traceparent": "00-ecfbefa10a7808409e21ef7bc4bb390a-5e0653ca32b38449-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f21c3fd5061b757a23ca019ff43e6670", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2" + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "216", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5f579fcf-5d0b-451b-9bfe-0bd010234603", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "5f579fcf-5d0b-451b-9bfe-0bd010234603", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062602Z:5f579fcf-5d0b-451b-9bfe-0bd010234603" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094", + "name": "csmrg1094", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "243", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a9d2f77c9ef9bfe165ed221d262c9a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "dhcpOptions": { + "dnsServers": [ + "10.1.1.1", + "10.1.2.4" + ] + }, + "subnets": [ + { + "name": "GatewaySubnet", + "id": null, + "properties": { + "addressPrefix": "10.0.0.0/24" + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad59b0f-c9cf-4abf-becf-f1d106b5819f?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1333", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "3", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "471e5d82-0dd1-4162-be4a-f84fbcf6b74c", + "x-ms-client-request-id": "3a9d2f77c9ef9bfe165ed221d262c9a8", + "x-ms-correlation-request-id": "cc7c34c4-d8a4-4aab-bd29-d2e1929d85d9", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "7ad59b0f-c9cf-4abf-becf-f1d106b5819f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062607Z:cc7c34c4-d8a4-4aab-bd29-d2e1929d85d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet577\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022e6075d85-5812-4206-850b-a4c5b5f12fcf\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022c4d724a8-3e6c-40e2-a39e-9ac765adb8df\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022e6075d85-5812-4206-850b-a4c5b5f12fcf\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad59b0f-c9cf-4abf-becf-f1d106b5819f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e180453f3a7375e61d5705a7a7535168", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6f3666c-cab8-4ced-93c2-480c239fd3b3", + "x-ms-client-request-id": "e180453f3a7375e61d5705a7a7535168", + "x-ms-correlation-request-id": "d741fe01-d29f-45db-bf2b-b6b9101060f0", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "aa6e6de0-4bfa-403d-8adb-a56cf6cc641a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062607Z:d741fe01-d29f-45db-bf2b-b6b9101060f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ad59b0f-c9cf-4abf-becf-f1d106b5819f?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f46f63702a512d2bfb97ca98043b144", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9049e181-0e86-4946-a218-a91dfbcdeac9", + "x-ms-client-request-id": "4f46f63702a512d2bfb97ca98043b144", + "x-ms-correlation-request-id": "9579962f-af6a-4822-860c-0c8006b98a4c", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "60d5f66f-eb11-4864-9925-efdd7f164c93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062608Z:9579962f-af6a-4822-860c-0c8006b98a4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ce167efe8e17235074a504f5fc83c6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1335", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:08 GMT", + "ETag": "W/\u0022fe450ad7-6796-4763-893e-313195f922fc\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c56eac7-be81-426b-ae18-bd63625f4573", + "x-ms-client-request-id": "8ce167efe8e17235074a504f5fc83c6a", + "x-ms-correlation-request-id": "4345b968-76c6-4e8b-922a-818c80262e1f", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "2ca050cb-122a-41c5-aed2-2a3664410cfa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062608Z:4345b968-76c6-4e8b-922a-818c80262e1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet577\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022fe450ad7-6796-4763-893e-313195f922fc\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022c4d724a8-3e6c-40e2-a39e-9ac765adb8df\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022fe450ad7-6796-4763-893e-313195f922fc\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f384e0f41f8a3dc5736e21babd3df5da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1335", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:09 GMT", + "ETag": "W/\u0022fe450ad7-6796-4763-893e-313195f922fc\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64b8e885-6abd-42bc-8ce1-e2056daade9a", + "x-ms-client-request-id": "f384e0f41f8a3dc5736e21babd3df5da", + "x-ms-correlation-request-id": "4065a9f3-17b7-4d39-a9d8-ea8c79d9253d", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "0ca290e2-ff2a-4347-82bc-64e7973eb8a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062609Z:4065a9f3-17b7-4d39-a9d8-ea8c79d9253d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet577\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022fe450ad7-6796-4763-893e-313195f922fc\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022c4d724a8-3e6c-40e2-a39e-9ac765adb8df\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022fe450ad7-6796-4763-893e-313195f922fc\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40b7c0a5c4714f86c1d3475bb182b2f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1335", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:09 GMT", + "ETag": "W/\u0022fe450ad7-6796-4763-893e-313195f922fc\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d02d1c3-1fd4-41c0-bad6-0bb579a3f56b", + "x-ms-client-request-id": "40b7c0a5c4714f86c1d3475bb182b2f7", + "x-ms-correlation-request-id": "86dc2dc4-ff58-4950-b3da-b0a5f52dcf0c", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "36a1a0b1-61d4-4f82-a921-5a96bba97933", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062609Z:86dc2dc4-ff58-4950-b3da-b0a5f52dcf0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet577\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022fe450ad7-6796-4763-893e-313195f922fc\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022c4d724a8-3e6c-40e2-a39e-9ac765adb8df\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022fe450ad7-6796-4763-893e-313195f922fc\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fb4127cbebecfb9a2a41872c67ab5c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "537", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:09 GMT", + "ETag": "W/\u0022fe450ad7-6796-4763-893e-313195f922fc\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e712b83e-282e-407b-8dce-a9b497ce2834", + "x-ms-client-request-id": "9fb4127cbebecfb9a2a41872c67ab5c9", + "x-ms-correlation-request-id": "6423b377-c5a2-4403-ad88-72fa5d9f55a7", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "4c7b2f25-ca6f-4424-811d-04b1fe64c5c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062609Z:6423b377-c5a2-4403-ad88-72fa5d9f55a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022fe450ad7-6796-4763-893e-313195f922fc\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb109faa2ff8345932b6d86a8bf1bb2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "publicIPAllocationMethod": "Dynamic", + "dnsSettings": { + "domainNameLabel": "azsmnet7941" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c9ad03fc-89a0-40f5-b596-a9bee820bbc9?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "796", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "1", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c49de67-2c03-418a-a1c6-ae34197475a3", + "x-ms-client-request-id": "fb109faa2ff8345932b6d86a8bf1bb2a", + "x-ms-correlation-request-id": "24186d59-d4fb-438f-9c86-9affda3f5c7c", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "c9ad03fc-89a0-40f5-b596-a9bee820bbc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062613Z:24186d59-d4fb-438f-9c86-9affda3f5c7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5147\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00222424fba3-618c-41a5-a1d1-5a5b329aaa7c\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00227722d65c-b218-4bf6-9a9f-a796202050b4\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet7941\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet7941.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c9ad03fc-89a0-40f5-b596-a9bee820bbc9?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13d83b0581e6851a468a8c03f7371927", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b7177c64-385f-490c-8467-3a7b9bb53d70", + "x-ms-client-request-id": "13d83b0581e6851a468a8c03f7371927", + "x-ms-correlation-request-id": "4044f4c4-6c95-4e39-a732-d9008f158d78", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "3edda2ed-0aa8-46f9-82a2-2d2a31c1f3b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062613Z:4044f4c4-6c95-4e39-a732-d9008f158d78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a3d9cb60041c35a98285d2b8345abeb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "797", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:14 GMT", + "ETag": "W/\u0022d7b2c559-1ae6-4ea8-8b2f-a03784ea5269\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d0f1cb38-deef-450b-86c9-006b25ded3cb", + "x-ms-client-request-id": "0a3d9cb60041c35a98285d2b8345abeb", + "x-ms-correlation-request-id": "69c6d4f4-96c3-4d5e-b373-578eae618a27", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "9f06ac77-1afe-4178-b68c-151714e006c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062614Z:69c6d4f4-96c3-4d5e-b373-578eae618a27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5147\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022d7b2c559-1ae6-4ea8-8b2f-a03784ea5269\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00227722d65c-b218-4bf6-9a9f-a796202050b4\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet7941\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet7941.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f645a98a819bc4390030e915a03f066", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "797", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:14 GMT", + "ETag": "W/\u0022d7b2c559-1ae6-4ea8-8b2f-a03784ea5269\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2aaf09bf-6332-4a03-afc3-b0dc4a5d0f7f", + "x-ms-client-request-id": "4f645a98a819bc4390030e915a03f066", + "x-ms-correlation-request-id": "89e8e222-0311-4e80-b5d1-581c6273f2b4", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "47cc62d5-5cf7-4ad0-8211-2829cde48e8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062614Z:89e8e222-0311-4e80-b5d1-581c6273f2b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5147\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022d7b2c559-1ae6-4ea8-8b2f-a03784ea5269\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00227722d65c-b218-4bf6-9a9f-a796202050b4\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet7941\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet7941.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "610", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1308ec5d053c14e17bbe23ee0201dea0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet9024", + "id": null, + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "enableBgp": false, + "sku": { + "name": "Basic", + "tier": "Basic" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2532", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3279c1c-87a2-4dec-b060-36a892222184", + "x-ms-client-request-id": "1308ec5d053c14e17bbe23ee0201dea0", + "x-ms-correlation-request-id": "107e0525-a77f-42fa-855b-7522157322b2", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "af456400-fe8c-44a7-ac4c-2c277b60144e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062618Z:107e0525-a77f-42fa-855b-7522157322b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1046\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002297722543-8e26-4c00-91ae-05fdbf067d58\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229e303b96-178c-4e37-bae4-87e467b85da9\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9024\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046/ipConfigurations/azsmnet9024\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002297722543-8e26-4c00-91ae-05fdbf067d58\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Basic\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022SSTP\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 0,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046/ipConfigurations/azsmnet9024\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [],\r\n", + " \u0022customBgpIpAddresses\u0022: []\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bfe8fe7784e25f1d6d042c8598a1000d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5c11b25-e8e5-4578-9496-121d2406b52f", + "x-ms-client-request-id": "bfe8fe7784e25f1d6d042c8598a1000d", + "x-ms-correlation-request-id": "9b285021-fd75-485c-bdda-a03db32eba69", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "1d2d3e59-10a6-4254-85c6-57d7441c1e47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062618Z:9b285021-fd75-485c-bdda-a03db32eba69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5299b9b3ea934e76938799fe1418abe6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e7632ee-f910-4db2-b15b-763e11d565db", + "x-ms-client-request-id": "5299b9b3ea934e76938799fe1418abe6", + "x-ms-correlation-request-id": "350c405e-ded6-4f0b-a564-d451e416dc00", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "5da7af1e-1e9c-43b6-8197-172a3e5595d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062619Z:350c405e-ded6-4f0b-a564-d451e416dc00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04772c851f18e5bd7f735b09e1d3e8d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bfa4ffd7-b6b8-479e-9d34-a0cbf604d091", + "x-ms-client-request-id": "04772c851f18e5bd7f735b09e1d3e8d7", + "x-ms-correlation-request-id": "1ca68f7d-b873-4426-a79e-ef1027f33814", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "6a1417b5-72da-47fe-9303-45e5f7f2f69f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062620Z:1ca68f7d-b873-4426-a79e-ef1027f33814" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af15e33ce5fb8c6387992b5bea1f4b54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1999ea38-0809-4a95-ae11-57cbe1fe1c71", + "x-ms-client-request-id": "af15e33ce5fb8c6387992b5bea1f4b54", + "x-ms-correlation-request-id": "1b80f5a9-5b81-4c71-b209-249829e3a0c1", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "790c8677-2880-4b08-b2f5-8c7ba2607ad4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062622Z:1b80f5a9-5b81-4c71-b209-249829e3a0c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cff4559fc2a94f4fcb3d3208f6d6cc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "661c1622-5799-4acc-9658-50146921dba7", + "x-ms-client-request-id": "6cff4559fc2a94f4fcb3d3208f6d6cc0", + "x-ms-correlation-request-id": "5dc7aec6-97f3-4ac6-9cb9-3d089445c79e", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "44b3213d-1c37-43ec-b1f1-55a07ae9c3e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062623Z:5dc7aec6-97f3-4ac6-9cb9-3d089445c79e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30c1c19ffc039febc9eb7c7ff362fa60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2771f73b-409b-4760-a083-0abe60e6f99f", + "x-ms-client-request-id": "30c1c19ffc039febc9eb7c7ff362fa60", + "x-ms-correlation-request-id": "3922022e-0274-41bc-8fa1-95613ed6e60d", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "e5bed39b-0b72-479b-96f0-4706b502bddb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062624Z:3922022e-0274-41bc-8fa1-95613ed6e60d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9baf06287bd340adee81b2471243fd19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5069bd57-9db9-4f08-b567-8ec75524ff49", + "x-ms-client-request-id": "9baf06287bd340adee81b2471243fd19", + "x-ms-correlation-request-id": "a443a9f5-f9dd-4aee-827b-72e4fc67e3ad", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "d68f845f-65fb-4a02-8d2b-b9739a9687d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062626Z:a443a9f5-f9dd-4aee-827b-72e4fc67e3ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28bc6a2c1a5d5c51595fa33e8075a099", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f04bbb40-f4d4-4588-ab3d-085b20838929", + "x-ms-client-request-id": "28bc6a2c1a5d5c51595fa33e8075a099", + "x-ms-correlation-request-id": "8ab31a91-ac9a-4a01-a406-a319b13ecd35", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "6f45b1a8-5621-4f81-b9e5-d48cbebedd56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062627Z:8ab31a91-ac9a-4a01-a406-a319b13ecd35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88f772b9d0bd23ed1481428149a48c85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c12f0862-aa93-4103-9f51-bca9401b7f0d", + "x-ms-client-request-id": "88f772b9d0bd23ed1481428149a48c85", + "x-ms-correlation-request-id": "870f084b-476d-4382-842b-78ab2e0f9f26", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "bf902ff8-7730-4261-973f-8223635ca846", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062628Z:870f084b-476d-4382-842b-78ab2e0f9f26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "885263edd1a60e02b5524173d86ec078", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1191e8e2-299b-4017-89ab-c42b0b1db182", + "x-ms-client-request-id": "885263edd1a60e02b5524173d86ec078", + "x-ms-correlation-request-id": "53a4032a-be16-4583-8717-091cd8f15c46", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "6449c9ce-97eb-42a0-9c3a-4c4dac11ac34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062630Z:53a4032a-be16-4583-8717-091cd8f15c46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a08e19e1744b5b5b7d9814dcd7d013b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29c88de1-d45b-48e7-9799-22804ed4888b", + "x-ms-client-request-id": "a08e19e1744b5b5b7d9814dcd7d013b5", + "x-ms-correlation-request-id": "7db2c98f-2149-48b0-9582-2d4d10953736", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "e9b95611-839e-4b5f-aa5a-13179f052af5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062631Z:7db2c98f-2149-48b0-9582-2d4d10953736" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c511dd31722e7f370e9d36b8f794aa5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "620f4b31-7a37-4d74-829a-a7aeec05efc5", + "x-ms-client-request-id": "1c511dd31722e7f370e9d36b8f794aa5", + "x-ms-correlation-request-id": "41beb278-2a56-466b-b614-ea4243569725", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "3c2f3982-cf19-4be3-b3ae-1835d155db71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062632Z:41beb278-2a56-466b-b614-ea4243569725" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30a0c9c1ec16783a07f70b0dbc2636e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5ce8fa5-0713-4d02-a064-819416464e27", + "x-ms-client-request-id": "30a0c9c1ec16783a07f70b0dbc2636e4", + "x-ms-correlation-request-id": "72e8c608-9b1f-4321-ac0b-d28ee196ce39", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "e44dc7a4-f441-4ad3-b9e4-524525d56d5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062634Z:72e8c608-9b1f-4321-ac0b-d28ee196ce39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bba08c3fa31dc95625a62f61a1f0cc04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46e0df40-5d0f-44f9-a5c5-dcaeb91d4730", + "x-ms-client-request-id": "bba08c3fa31dc95625a62f61a1f0cc04", + "x-ms-correlation-request-id": "fa7a8247-c37f-4880-9ecb-4a4855010729", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "b024a71c-2329-414e-91f4-a4fe06449b5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062635Z:fa7a8247-c37f-4880-9ecb-4a4855010729" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e1a6f4ee32fe69fe2d8142b0ce52a49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7149412b-2edd-4010-8375-bbd2ed746dda", + "x-ms-client-request-id": "0e1a6f4ee32fe69fe2d8142b0ce52a49", + "x-ms-correlation-request-id": "db2a0e36-ab3c-46eb-8315-87408c506c99", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "e1fe15f4-bafd-48cc-9141-01ae41ea72a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062636Z:db2a0e36-ab3c-46eb-8315-87408c506c99" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "022beeb38fd81e8773d60a6fbcd8d717", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fc9ceb9-4459-434a-a0fa-e98f50c4738c", + "x-ms-client-request-id": "022beeb38fd81e8773d60a6fbcd8d717", + "x-ms-correlation-request-id": "978629b1-3f7c-4f48-a218-21981cb34a40", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "d0cdbb2f-3987-40db-b052-dbf3d6c1ba5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062638Z:978629b1-3f7c-4f48-a218-21981cb34a40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dbf062a280b5cb5edbad8458e2abd3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45b9ba60-f7f0-4c8e-a13a-4e5e915fb66b", + "x-ms-client-request-id": "4dbf062a280b5cb5edbad8458e2abd3f", + "x-ms-correlation-request-id": "8c0dfd7a-c6e2-41be-8a16-c95020d58af1", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "f8b8e42d-dd6c-4400-ab8a-32c1674fa8b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062639Z:8c0dfd7a-c6e2-41be-8a16-c95020d58af1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3aee67ccac4bf2be7fc9a59d82f290a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c78e0c2-21fa-4a00-a05b-f270a29e3e0d", + "x-ms-client-request-id": "b3aee67ccac4bf2be7fc9a59d82f290a", + "x-ms-correlation-request-id": "e6480aca-472b-41c3-ae07-88a4ac51d361", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "db968f5d-f2e0-43bc-bc76-76593155b2fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062640Z:e6480aca-472b-41c3-ae07-88a4ac51d361" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0501fd00dc268a3e39cf151eb6428f48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9ad75a2-0b45-4250-91f7-e5cfc97824f0", + "x-ms-client-request-id": "0501fd00dc268a3e39cf151eb6428f48", + "x-ms-correlation-request-id": "ef74b45e-29df-44ea-b1af-edfdc542fed2", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "45c19d1a-3f89-4bc6-a594-d9483210e6ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062642Z:ef74b45e-29df-44ea-b1af-edfdc542fed2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6f3ca1924296052da00660f8d5c83bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "084a9a68-cfd2-47b9-ad05-69ff80e8d50c", + "x-ms-client-request-id": "d6f3ca1924296052da00660f8d5c83bd", + "x-ms-correlation-request-id": "77e3b8b1-4d05-45e2-ab8d-c1ef0db715f1", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "37d71de1-a9d4-4737-b6fa-b0768eb8e5c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062643Z:77e3b8b1-4d05-45e2-ab8d-c1ef0db715f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9045ce90b7299f19a82379f5b40d08a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e2c7a87-7433-4401-98ad-ba84328cc935", + "x-ms-client-request-id": "9045ce90b7299f19a82379f5b40d08a5", + "x-ms-correlation-request-id": "2966600f-7a76-4b6a-9999-bd5ed0f3110c", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "370ac3a9-4ef1-4580-a104-313efe725388", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062644Z:2966600f-7a76-4b6a-9999-bd5ed0f3110c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e3f516c523cdce0aba02a26762efddd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7921a4f5-de1b-43b5-803f-dfd8cc36bf25", + "x-ms-client-request-id": "0e3f516c523cdce0aba02a26762efddd", + "x-ms-correlation-request-id": "57558343-843f-4aa4-b621-58f9a7974973", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "0bba46c5-8521-41f4-a628-f73289b42ffc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062646Z:57558343-843f-4aa4-b621-58f9a7974973" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e88d574bfffc611fb1532e05aa5cabcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32dd23c9-c0a3-4507-a4c4-3ee3e02f7890", + "x-ms-client-request-id": "e88d574bfffc611fb1532e05aa5cabcc", + "x-ms-correlation-request-id": "12039a69-59a7-4bbc-a61d-90efe2c6fd70", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "17d4a78e-c6b4-420d-82a0-cf23599b87d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062647Z:12039a69-59a7-4bbc-a61d-90efe2c6fd70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ba2c1f7751c3e81ed69e5888df22979", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56c51965-34cc-401a-9cd8-49d26a4e6131", + "x-ms-client-request-id": "3ba2c1f7751c3e81ed69e5888df22979", + "x-ms-correlation-request-id": "e108f549-0927-49d2-b25f-41ce60fff00f", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "cab98a48-4653-44c3-a76e-f8d1fe36a94c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062648Z:e108f549-0927-49d2-b25f-41ce60fff00f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5daa9c2620806da832de5ce924da314e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80ccf5d5-504c-4eae-8686-cb5bcd254e09", + "x-ms-client-request-id": "5daa9c2620806da832de5ce924da314e", + "x-ms-correlation-request-id": "2ae8c4cb-ef8e-40f6-866c-2c42e7985825", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "4535f6a7-b247-4f11-bf47-1eb01d8eb48d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062649Z:2ae8c4cb-ef8e-40f6-866c-2c42e7985825" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b42e5df5c18cd6c0d54ffa931997d3be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f61d4d21-f6f6-47b0-a510-65757e6baab0", + "x-ms-client-request-id": "b42e5df5c18cd6c0d54ffa931997d3be", + "x-ms-correlation-request-id": "a3dc2f6b-9ce3-46a0-b150-26e835245754", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "abd30624-6a8b-4698-83c0-1a071762247e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062651Z:a3dc2f6b-9ce3-46a0-b150-26e835245754" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ddfb5294db2d74c1834093d18981912", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30a95aa5-6f3f-4a34-bd5e-2fe50dd26a7b", + "x-ms-client-request-id": "0ddfb5294db2d74c1834093d18981912", + "x-ms-correlation-request-id": "fa5a6379-0bf6-4467-b2b0-3a71785a6723", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "8a0d4f09-0d76-4303-9477-860fb70f1475", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062652Z:fa5a6379-0bf6-4467-b2b0-3a71785a6723" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f92963774c364ecdbd388312514539a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9dde8764-bfa2-4c90-8f95-6e4259a681a9", + "x-ms-client-request-id": "2f92963774c364ecdbd388312514539a", + "x-ms-correlation-request-id": "db1ec327-6589-444f-aeb9-351edc5b19a2", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "1179ec93-fcf5-4b44-9056-2ca35a95eabc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062653Z:db1ec327-6589-444f-aeb9-351edc5b19a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fbf9e0a23fba89c11579c57b883bd3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d48e5bf-36e9-46e3-a7f4-91ee2a627aa0", + "x-ms-client-request-id": "6fbf9e0a23fba89c11579c57b883bd3d", + "x-ms-correlation-request-id": "bef32275-53b8-4c96-b5b7-70755bacbe2b", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "ce41e848-44ec-4dc7-a37b-7fd465c15861", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062655Z:bef32275-53b8-4c96-b5b7-70755bacbe2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "825be735a404b4fac87b31dec51ab104", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bcd3686f-a53d-46b7-839b-769ed1a6d061", + "x-ms-client-request-id": "825be735a404b4fac87b31dec51ab104", + "x-ms-correlation-request-id": "1c8342b7-7cc9-4172-825e-7ec10e51fa5c", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "97f9728d-cdf2-42a6-bdd8-dcb429dc6492", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062656Z:1c8342b7-7cc9-4172-825e-7ec10e51fa5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a326ee1aad81417faea1e6cd895ab58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d101528f-5363-45c7-bfb1-6b441b7abf64", + "x-ms-client-request-id": "7a326ee1aad81417faea1e6cd895ab58", + "x-ms-correlation-request-id": "a5515794-6df6-4525-9576-52df49be5a49", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "586e9dab-dadb-4a13-a1b7-30074d17a56b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062657Z:a5515794-6df6-4525-9576-52df49be5a49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3dfc4b16d1b86695a30aa680f1bde2f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddb25457-4539-4854-ac33-60d61bae6807", + "x-ms-client-request-id": "3dfc4b16d1b86695a30aa680f1bde2f6", + "x-ms-correlation-request-id": "2e601c92-65f4-4d4b-b151-f871dbebff51", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "1aea0c90-3461-4f1e-abce-f150f9b0a9ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062658Z:2e601c92-65f4-4d4b-b151-f871dbebff51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "497698a643508a64d047871a868edc33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:26:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8f5e46a-8200-4598-8f1b-317e462a5bc6", + "x-ms-client-request-id": "497698a643508a64d047871a868edc33", + "x-ms-correlation-request-id": "a1d5e100-633c-400e-a7c6-cadc0f991390", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "0eca613b-5069-4c72-b26d-74e178a01695", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062700Z:a1d5e100-633c-400e-a7c6-cadc0f991390" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ac8d9cf731e104bd9cbd6ce0396223d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5446e128-34d3-4a6b-b6ac-096dad514f99", + "x-ms-client-request-id": "7ac8d9cf731e104bd9cbd6ce0396223d", + "x-ms-correlation-request-id": "420976a4-bbc8-4c7d-bf4e-6dae862b47c8", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "5f972821-285a-4ec4-a8f1-42c7ade79202", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062701Z:420976a4-bbc8-4c7d-bf4e-6dae862b47c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40c62707621fd207e6716d70497be014", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21515688-aeb4-45e0-80d2-6d68be770b29", + "x-ms-client-request-id": "40c62707621fd207e6716d70497be014", + "x-ms-correlation-request-id": "c3f06d0b-845c-4842-8723-0af1a5280568", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "d4f2fb1d-5b40-4524-94aa-4f57c8b188ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062702Z:c3f06d0b-845c-4842-8723-0af1a5280568" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18b1732e68f532d84c6670856c968639", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75e26a70-83dd-4848-a818-1a372636bd88", + "x-ms-client-request-id": "18b1732e68f532d84c6670856c968639", + "x-ms-correlation-request-id": "8c9fbc00-3a5b-4b69-8776-de1e536c47f4", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "e5208313-6e3f-4f0d-86d4-5cf3c45251fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062703Z:8c9fbc00-3a5b-4b69-8776-de1e536c47f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e124a259bc86d14d1f593ad06dac65e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f151e066-4775-44c6-bccf-1f868b9aecad", + "x-ms-client-request-id": "5e124a259bc86d14d1f593ad06dac65e", + "x-ms-correlation-request-id": "64f19397-685d-4113-967c-a291ff09e745", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "cebe28bd-3214-4280-bfb1-a83cdbbb2c21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062705Z:64f19397-685d-4113-967c-a291ff09e745" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "909fc1eb0ae59f484f93f3b8f1826650", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80ab4d2d-90ca-455b-9acd-57e6559f4606", + "x-ms-client-request-id": "909fc1eb0ae59f484f93f3b8f1826650", + "x-ms-correlation-request-id": "4013cb24-6b1c-4ebf-b76b-3bb0b875c482", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "5556c0c3-f190-4f57-858a-005195d82ea9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062706Z:4013cb24-6b1c-4ebf-b76b-3bb0b875c482" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe4b33ea8168924c5f4446ffd52b2c72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f9eef94-b76f-4f74-b66f-64e53c068630", + "x-ms-client-request-id": "fe4b33ea8168924c5f4446ffd52b2c72", + "x-ms-correlation-request-id": "9e94aca7-af44-48b6-8644-be1873443083", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "25d7cafd-20ab-4c78-93ca-0777f791a367", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062707Z:9e94aca7-af44-48b6-8644-be1873443083" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa99129ff6f61b5402730f34a85b7b4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6e35739-6e85-436c-be13-5f4a262cdcfb", + "x-ms-client-request-id": "aa99129ff6f61b5402730f34a85b7b4f", + "x-ms-correlation-request-id": "41a9a783-3f0b-4d60-8e73-0deffeee72ec", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "9df1f864-dc38-426d-9783-b8fe1beb5edc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062709Z:41a9a783-3f0b-4d60-8e73-0deffeee72ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2c2428fc88e69f5750c31a1c348c924", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08111b2a-6ed5-4333-a46a-5a4c98927f29", + "x-ms-client-request-id": "d2c2428fc88e69f5750c31a1c348c924", + "x-ms-correlation-request-id": "5dfbab36-eb8a-410e-81f4-f8520c51fcea", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "33ffcc46-4580-4a91-a3fb-9781464e5521", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062710Z:5dfbab36-eb8a-410e-81f4-f8520c51fcea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df198167bbe8f35adf30fcf57118ea03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16edfd5d-a259-4c22-b7de-94900108fbab", + "x-ms-client-request-id": "df198167bbe8f35adf30fcf57118ea03", + "x-ms-correlation-request-id": "0c2eb7f0-95d6-482a-ad6f-5af07ba2025f", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "22aec7dd-0f62-439a-98c5-742d1a858384", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062711Z:0c2eb7f0-95d6-482a-ad6f-5af07ba2025f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9370f7c85a68d7e31c2f35eac5b257b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8dfcd865-6f48-4428-98ac-be759323eed2", + "x-ms-client-request-id": "9370f7c85a68d7e31c2f35eac5b257b9", + "x-ms-correlation-request-id": "2df19566-b269-46d3-8dc1-a62d0d77f908", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "18c500cb-df47-491f-8e22-c0163c1c8eca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062712Z:2df19566-b269-46d3-8dc1-a62d0d77f908" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26cdeba99c42d366e7cff25ecb00f75d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08d63fad-ac72-47c8-8bd2-f10f8f60b751", + "x-ms-client-request-id": "26cdeba99c42d366e7cff25ecb00f75d", + "x-ms-correlation-request-id": "026bce96-54bb-4aa5-82d8-f465ac97f351", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "57bf47c0-2c6d-4d0f-a12c-e01a0d17a11f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062714Z:026bce96-54bb-4aa5-82d8-f465ac97f351" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccd82d2136d80dbb9d42c2b886702e2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6afe049-afbe-43c7-b83b-103ea2b4ea81", + "x-ms-client-request-id": "ccd82d2136d80dbb9d42c2b886702e2c", + "x-ms-correlation-request-id": "feb80cf4-3ff2-467c-acc7-4cce8da937bc", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "a37593b4-90cf-4583-85fa-3f212613f07c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062715Z:feb80cf4-3ff2-467c-acc7-4cce8da937bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "864b43d8c34a2cc1909dab9967850b1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3727c429-3ce2-454d-9033-e1156b517478", + "x-ms-client-request-id": "864b43d8c34a2cc1909dab9967850b1c", + "x-ms-correlation-request-id": "7f4c78c8-eeb4-4955-a397-d5013a9f8055", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "45110510-b0c5-4f07-9b6a-be06703ed4e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062716Z:7f4c78c8-eeb4-4955-a397-d5013a9f8055" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97c8d8378bda73e12fbf89ffd9ad4c77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65643c70-1362-4a7a-8701-92989b685e3d", + "x-ms-client-request-id": "97c8d8378bda73e12fbf89ffd9ad4c77", + "x-ms-correlation-request-id": "6fd01418-7331-430e-bf8b-a37db20cc5ed", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "c30d9261-8a6e-4a4c-9412-8c79e6f21945", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062717Z:6fd01418-7331-430e-bf8b-a37db20cc5ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8885c6a071b55d126bab3c3b8b22a618", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80407ebd-17be-48f7-ac4a-0b6eeaf8a762", + "x-ms-client-request-id": "8885c6a071b55d126bab3c3b8b22a618", + "x-ms-correlation-request-id": "926f5a88-b73a-4c5b-a81a-6437957abf3b", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "3e3f1d92-c954-4310-8c0f-8dcfef06e9db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062719Z:926f5a88-b73a-4c5b-a81a-6437957abf3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae80a63696a74d5261d7568b3ac153e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1df0fcbb-92c1-48b8-ace5-e144dfed9850", + "x-ms-client-request-id": "ae80a63696a74d5261d7568b3ac153e2", + "x-ms-correlation-request-id": "1f518bc0-8db2-4ee9-8e24-436ce879420b", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "e4ed7975-369d-4516-94f3-edd42a7305e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062720Z:1f518bc0-8db2-4ee9-8e24-436ce879420b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1f8335082ffc666c66a2c2e4ea6e80c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2c733ba2-5d07-40e4-bb64-85288deef264", + "x-ms-client-request-id": "a1f8335082ffc666c66a2c2e4ea6e80c", + "x-ms-correlation-request-id": "2d79c174-9962-4376-8281-e04e550091f0", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "505640c7-8a2b-426a-afa5-7227b5959779", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062721Z:2d79c174-9962-4376-8281-e04e550091f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33c970199e2d09d0733726dd1b8722a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb4e4da5-c43e-42db-84f4-ae3066d02caf", + "x-ms-client-request-id": "33c970199e2d09d0733726dd1b8722a9", + "x-ms-correlation-request-id": "77e5e4ca-3f2d-4f95-a2c7-1c2b6b49d798", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "a07ec16d-7aa3-43cb-a85e-73a2cb3da569", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062722Z:77e5e4ca-3f2d-4f95-a2c7-1c2b6b49d798" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57ea5958042ab3183fbae73c6a24ffbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8e030fc-8169-4f64-b955-58ec6d89e101", + "x-ms-client-request-id": "57ea5958042ab3183fbae73c6a24ffbb", + "x-ms-correlation-request-id": "29730ce5-9c8f-4772-8314-52d689dd9320", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "03858bf2-9f1b-4b09-b34d-bc70f371e9a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062724Z:29730ce5-9c8f-4772-8314-52d689dd9320" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c97149ef1ff8b1b563ef2dc85c89ab3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c8f2d18-5cb1-4745-ad03-b0c042561aad", + "x-ms-client-request-id": "c97149ef1ff8b1b563ef2dc85c89ab3f", + "x-ms-correlation-request-id": "ce6ebc56-216d-4406-9843-cd62ffe4a2ea", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "8f5ff7b3-601e-44d6-be65-fee884a5c098", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062725Z:ce6ebc56-216d-4406-9843-cd62ffe4a2ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4d5824790bb14e25815f472b6939e4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e2f3d59-5e31-4d5f-92bc-61580e2b20c9", + "x-ms-client-request-id": "f4d5824790bb14e25815f472b6939e4e", + "x-ms-correlation-request-id": "63590eab-4e94-49d4-96ab-86cf9ff820e5", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "548bf65d-57df-4a1c-9e97-88994becb1dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062726Z:63590eab-4e94-49d4-96ab-86cf9ff820e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1ee6b38591539b1a439f43bd74f57b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ff3453f-bba4-4566-83bd-b3f16e80fa41", + "x-ms-client-request-id": "d1ee6b38591539b1a439f43bd74f57b5", + "x-ms-correlation-request-id": "c39063b4-0253-4a4c-a64b-bb3bd44f7455", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "e49ddea4-c161-41d5-ae85-a611eaeb7c4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062728Z:c39063b4-0253-4a4c-a64b-bb3bd44f7455" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8f5a80f0a4f5f00675c71e32b42facf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "deaad630-6a4e-476e-8bfe-dc2fd3ca8991", + "x-ms-client-request-id": "e8f5a80f0a4f5f00675c71e32b42facf", + "x-ms-correlation-request-id": "4104d9ac-34da-45b6-8fa4-48f88b732957", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "c1bb718a-9283-49fd-98d4-cb1bd2c55f61", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062729Z:4104d9ac-34da-45b6-8fa4-48f88b732957" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f190df50d99bee29d19c50819ba73d08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6980a01f-988d-4f0c-bb5d-2677ab1d664f", + "x-ms-client-request-id": "f190df50d99bee29d19c50819ba73d08", + "x-ms-correlation-request-id": "45967e28-0e36-40c8-8558-7a283afbb5d6", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "e1160d98-9bdc-4a46-b228-265edc536768", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062730Z:45967e28-0e36-40c8-8558-7a283afbb5d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e633ebdb69e2efe6a8e6ab9e7cd0d62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab270929-a2b2-48b1-adc7-e72bf2ece32a", + "x-ms-client-request-id": "0e633ebdb69e2efe6a8e6ab9e7cd0d62", + "x-ms-correlation-request-id": "da9131eb-2bfe-44fc-a7ea-bf0a810292a7", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "fdece518-c3f0-4ac6-b831-546dbd43bbad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062731Z:da9131eb-2bfe-44fc-a7ea-bf0a810292a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7ea243f66bf351a7f0616b3b97ec3bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54cb8863-8d94-4f8b-b54f-6ec24d81fe09", + "x-ms-client-request-id": "f7ea243f66bf351a7f0616b3b97ec3bf", + "x-ms-correlation-request-id": "a181de5a-fa39-4f4f-b331-5fbf143c8a0c", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "4d002147-3e27-43d7-a1ea-ad37026f1fe2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062733Z:a181de5a-fa39-4f4f-b331-5fbf143c8a0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed25691eecde9931e062860c6f700703", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d644c14-0b75-4d68-a92f-cf1c3a7c9b4e", + "x-ms-client-request-id": "ed25691eecde9931e062860c6f700703", + "x-ms-correlation-request-id": "62944c9d-f74c-484f-a542-241865493e94", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "c2fbae5f-cf2e-45f5-adcc-8e1f9e06f0cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062734Z:62944c9d-f74c-484f-a542-241865493e94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7742ee8e46bc5648232e8e979f4b74eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a32554ef-2fbc-41d7-93f3-8120490213b3", + "x-ms-client-request-id": "7742ee8e46bc5648232e8e979f4b74eb", + "x-ms-correlation-request-id": "e0c6ebd7-d724-48fd-aa87-da720d6856dd", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "22825eff-ce3e-4cfb-ac2b-468c8d941349", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062735Z:e0c6ebd7-d724-48fd-aa87-da720d6856dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e9aaacb1fa75283f251165de00ec50f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4600e7e1-10a7-454e-9cb1-1cab00caef9d", + "x-ms-client-request-id": "7e9aaacb1fa75283f251165de00ec50f", + "x-ms-correlation-request-id": "d2db7bd8-e9a5-438f-a5d0-585a3c9a7929", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "0d3c824e-5da3-489f-8781-19322abcfbf2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062736Z:d2db7bd8-e9a5-438f-a5d0-585a3c9a7929" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb2413ff4b3cd80320cfcab05d99fa95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "088626a0-bba0-425e-9cb5-ed21038bcea0", + "x-ms-client-request-id": "cb2413ff4b3cd80320cfcab05d99fa95", + "x-ms-correlation-request-id": "e2627cc9-7de9-4cce-bd70-f6ae08b27b08", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "c2a297f9-25d1-4283-a2fa-932d0bcdcf18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062738Z:e2627cc9-7de9-4cce-bd70-f6ae08b27b08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4409aed88d56f5c6bef846b2fea7615", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50bfde93-0e6f-42a3-918d-29f2baa9fef5", + "x-ms-client-request-id": "c4409aed88d56f5c6bef846b2fea7615", + "x-ms-correlation-request-id": "e0bc049c-9129-40f6-a361-a9565a02ee30", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "267a7b78-f914-4081-b12b-e40b1685aceb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062739Z:e0bc049c-9129-40f6-a361-a9565a02ee30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c987f68a8267fafa7c15dd855d2f558", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4811d4ab-b144-4c7e-aa83-2d29c352e3ed", + "x-ms-client-request-id": "8c987f68a8267fafa7c15dd855d2f558", + "x-ms-correlation-request-id": "4665efb5-4dbc-4eaf-b6c0-3f23a02609fd", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "4ee07fbc-53df-4618-877c-59ac31121383", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062740Z:4665efb5-4dbc-4eaf-b6c0-3f23a02609fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4570815700cd7639b6b5604cc797a935", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c422c083-6e2f-47c4-a322-32e2b085a15b", + "x-ms-client-request-id": "4570815700cd7639b6b5604cc797a935", + "x-ms-correlation-request-id": "bd2f3ae9-f34f-4fdd-88eb-b78ef0d77d67", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "59d0300e-e411-4097-8b13-4e79a3660406", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062742Z:bd2f3ae9-f34f-4fdd-88eb-b78ef0d77d67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd48b4586d01446eebc11d142b831998", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1210c3a1-0c72-4cb9-bcd2-5672eecd3be2", + "x-ms-client-request-id": "dd48b4586d01446eebc11d142b831998", + "x-ms-correlation-request-id": "730f4625-14d1-46a1-9f66-051e999909d7", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "f36d45d7-8268-4358-8407-7e905eb68780", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062743Z:730f4625-14d1-46a1-9f66-051e999909d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad142bfa317a67474622d5714862b80f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8a1ca36-c6c5-4a71-bed6-9d20e510d06d", + "x-ms-client-request-id": "ad142bfa317a67474622d5714862b80f", + "x-ms-correlation-request-id": "2172b617-9516-4fb2-8716-a4310e56b95d", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "72768949-1b3c-41da-bd87-6a7aec0a991a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062744Z:2172b617-9516-4fb2-8716-a4310e56b95d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0802818178ae957132b590ce3244a33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed6f42be-19a9-466d-95e6-b9c7148e4335", + "x-ms-client-request-id": "a0802818178ae957132b590ce3244a33", + "x-ms-correlation-request-id": "a5659ff7-45d1-4bb2-9538-f6a1a832b4dc", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "a959c879-c84c-4be4-a827-e0fe9ba2ae35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062745Z:a5659ff7-45d1-4bb2-9538-f6a1a832b4dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c51c79bfb8326bb6ce097de97fcfc88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10cd1c46-692a-4d6d-8a97-3c91e66c1ec4", + "x-ms-client-request-id": "9c51c79bfb8326bb6ce097de97fcfc88", + "x-ms-correlation-request-id": "588298a3-344e-4a35-bfe3-4ac7f0bcca0d", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "8f7b8ff1-1381-4016-8145-6843521c72b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062747Z:588298a3-344e-4a35-bfe3-4ac7f0bcca0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03fc0d097802e30ed32a9a4fd83b8422", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "615df85c-ce96-4135-ab6c-6abe34004a3e", + "x-ms-client-request-id": "03fc0d097802e30ed32a9a4fd83b8422", + "x-ms-correlation-request-id": "d06645b1-5bf5-4bd2-aa7d-910c436efef9", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "85ab4cd4-f7ac-45f7-9991-ee4b2c8bb3d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062748Z:d06645b1-5bf5-4bd2-aa7d-910c436efef9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80d5a2d71b111c8c6d5934a97f795116", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb2b09c7-c472-41ad-9964-d4018c894b8a", + "x-ms-client-request-id": "80d5a2d71b111c8c6d5934a97f795116", + "x-ms-correlation-request-id": "43a6528d-7c88-4337-852d-3724d89edc44", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "57877069-b381-477e-b87c-1d5fb9897d9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062749Z:43a6528d-7c88-4337-852d-3724d89edc44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d503d02f47282330b96dc858616b4e31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72588810-2371-4704-b985-dc784f01b0cc", + "x-ms-client-request-id": "d503d02f47282330b96dc858616b4e31", + "x-ms-correlation-request-id": "bf88354f-4a03-40b5-9343-5441e811e241", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "aa62b8fa-d5d0-48b3-8903-54c500efcf97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062751Z:bf88354f-4a03-40b5-9343-5441e811e241" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f506755c7b27ed7780df96a84465635a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "377bb59b-6144-49e7-b5f2-eb897bfa7cb0", + "x-ms-client-request-id": "f506755c7b27ed7780df96a84465635a", + "x-ms-correlation-request-id": "d114f84d-e1a3-4da7-b2cf-463518dec855", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "7cec4393-7dbf-4f71-8eba-e0b0d6635d51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062752Z:d114f84d-e1a3-4da7-b2cf-463518dec855" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "071f83d9ae388ff971b2c7a35334ba01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8596e339-74fe-4956-90c7-c965e0cb1f83", + "x-ms-client-request-id": "071f83d9ae388ff971b2c7a35334ba01", + "x-ms-correlation-request-id": "03bb52fd-18b1-42bb-9e9d-15f0ba8a2222", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "6a887def-6790-4f9c-9587-54b939d2b89c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062753Z:03bb52fd-18b1-42bb-9e9d-15f0ba8a2222" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a4c020b5c72b3ef58155448b187de54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27e2b44b-9072-4dab-b5da-344fd3989aba", + "x-ms-client-request-id": "0a4c020b5c72b3ef58155448b187de54", + "x-ms-correlation-request-id": "747db31a-d80c-4f1a-9844-90cb69f0efd9", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "ce4c8275-6499-42a8-a131-94dd72db713e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062754Z:747db31a-d80c-4f1a-9844-90cb69f0efd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd7f6e09464cadf87b768474b4d4994c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df21b006-9ad2-43bc-bf28-dec4131ab159", + "x-ms-client-request-id": "dd7f6e09464cadf87b768474b4d4994c", + "x-ms-correlation-request-id": "96cf72cc-3625-4980-9ed1-c679754a7be5", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "3ab9045a-12d9-49ec-85f2-049eca3cc3a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062756Z:96cf72cc-3625-4980-9ed1-c679754a7be5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "419d942459187de7946cae2259b0dee9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9ca4a6d-4a5c-4914-8162-478c07850f55", + "x-ms-client-request-id": "419d942459187de7946cae2259b0dee9", + "x-ms-correlation-request-id": "a718e702-da72-4021-b1a9-6fc807d9708f", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "0fc0f417-9676-4be4-8157-b09957dcf3d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062757Z:a718e702-da72-4021-b1a9-6fc807d9708f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e49973d3dcb5c5b4099e8efbd77bff84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "001374b4-555b-4318-903b-994998d836a4", + "x-ms-client-request-id": "e49973d3dcb5c5b4099e8efbd77bff84", + "x-ms-correlation-request-id": "ee08580c-e8d3-47a8-bb20-fce86ae763c6", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "e05c3204-d9f7-43fb-88b4-29d950e48bd4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062758Z:ee08580c-e8d3-47a8-bb20-fce86ae763c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c23087b9ceab03b870249df97d654ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:27:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99dc9d49-b802-4d90-adb8-77a8b5e7fee6", + "x-ms-client-request-id": "1c23087b9ceab03b870249df97d654ca", + "x-ms-correlation-request-id": "8b3c44b2-89b3-4c6a-b23b-5947fa21d827", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "ad5d0031-3205-4bde-82ca-71bb43aa88f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062759Z:8b3c44b2-89b3-4c6a-b23b-5947fa21d827" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41a09a98b53a4897e0d83779caeba518", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f5c1b4b-472d-427c-9c50-f044bf6ae802", + "x-ms-client-request-id": "41a09a98b53a4897e0d83779caeba518", + "x-ms-correlation-request-id": "43fbb3d7-b6b1-4e43-be1a-98caddd7bbd7", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "82d59796-8f00-4524-88d0-317c9dba14b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062801Z:43fbb3d7-b6b1-4e43-be1a-98caddd7bbd7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51a62a6dc18d37ff37e85db393d52d33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d13ddcf-d02a-4bc4-8fce-e9ce2b01e03d", + "x-ms-client-request-id": "51a62a6dc18d37ff37e85db393d52d33", + "x-ms-correlation-request-id": "98d78065-d722-4511-af0a-ff981c9d4da1", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "fafd25fc-3006-451b-ad27-d574788f2eb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062802Z:98d78065-d722-4511-af0a-ff981c9d4da1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d63c44abddac64970db3c1164c1e69b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aaf941fd-8b67-42c1-8760-b74aa400e24a", + "x-ms-client-request-id": "3d63c44abddac64970db3c1164c1e69b", + "x-ms-correlation-request-id": "fc008bf8-3e0c-4072-80b6-09bd42778638", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "3141da1d-51e0-4784-a999-024f6e86b946", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062803Z:fc008bf8-3e0c-4072-80b6-09bd42778638" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c72305c022fd73d9a69095257e4b40a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b10d6235-4d11-4d1a-85c1-68c3d9c3446d", + "x-ms-client-request-id": "6c72305c022fd73d9a69095257e4b40a", + "x-ms-correlation-request-id": "ca7b8bf2-8f9b-4c14-83fd-fd43d9dc1c4d", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "6cf264f4-03a8-4ce1-8886-894961c66111", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062805Z:ca7b8bf2-8f9b-4c14-83fd-fd43d9dc1c4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "062f04aa6788af3ee1dfe0b184edd275", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a887d027-28cd-40e2-bac0-40a39e28b57a", + "x-ms-client-request-id": "062f04aa6788af3ee1dfe0b184edd275", + "x-ms-correlation-request-id": "4fe6cfc9-c7e4-4c86-b528-af10d87bafe3", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "9c6c53c1-a1c7-4599-8ba7-2942fcffcfd5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062806Z:4fe6cfc9-c7e4-4c86-b528-af10d87bafe3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6256c102c0624803868ba270b3f76e8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59257a5e-fc04-4ae6-9856-2e97b6ae4c93", + "x-ms-client-request-id": "6256c102c0624803868ba270b3f76e8c", + "x-ms-correlation-request-id": "f1494fe2-24b6-4761-8a51-56f68eed7793", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "4c082def-6f56-4bbd-9887-058fb3d4ac32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062807Z:f1494fe2-24b6-4761-8a51-56f68eed7793" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60663226e092f413f2c28b50218c53ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13d99fb1-beaf-43b5-87b1-302784eb8e3a", + "x-ms-client-request-id": "60663226e092f413f2c28b50218c53ad", + "x-ms-correlation-request-id": "47a741bf-a261-4b62-a1ad-9e5d9bccf3a3", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "0dbdd82a-a7bb-4e77-b05c-aac72d207f50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062808Z:47a741bf-a261-4b62-a1ad-9e5d9bccf3a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "964f9497528deaa800e67ffcc5cdfbea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8401b947-9800-41dc-b8d6-6b169f71d9d3", + "x-ms-client-request-id": "964f9497528deaa800e67ffcc5cdfbea", + "x-ms-correlation-request-id": "26cbfe50-28a9-49cd-869b-00c9f8147f79", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "40f076be-f140-48da-b518-6b59283e519b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062810Z:26cbfe50-28a9-49cd-869b-00c9f8147f79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "528a5470718622e2ad61709f34b326f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93045401-f315-4132-b041-e05659b42e93", + "x-ms-client-request-id": "528a5470718622e2ad61709f34b326f9", + "x-ms-correlation-request-id": "842f75d1-97fe-4b0e-a806-c9324658ba20", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "6c21eb99-fb72-48da-ae4e-a7e18e72215d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062811Z:842f75d1-97fe-4b0e-a806-c9324658ba20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fd9f538d8a7d4fe8a7c5fab60172f24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c20de4e8-12c1-4e57-a46e-cf8544582be9", + "x-ms-client-request-id": "1fd9f538d8a7d4fe8a7c5fab60172f24", + "x-ms-correlation-request-id": "8c5773d1-ee7d-4f96-8691-4fdf7c400f63", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "e567de5c-d203-414d-9951-566d8138980e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062812Z:8c5773d1-ee7d-4f96-8691-4fdf7c400f63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cddfa1c701012626b12de82ce208b54d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2ee6b24-85e6-4ca4-81db-f0909892a665", + "x-ms-client-request-id": "cddfa1c701012626b12de82ce208b54d", + "x-ms-correlation-request-id": "5f8f97ec-74a7-4692-9f1e-95339473b116", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "85ba638a-d40d-46d5-821e-e3d8347e5d14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062814Z:5f8f97ec-74a7-4692-9f1e-95339473b116" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0c486c0dcf3984255b6c80a1136c196", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bd5d68e-f184-4b13-85a3-8c5325714508", + "x-ms-client-request-id": "d0c486c0dcf3984255b6c80a1136c196", + "x-ms-correlation-request-id": "9a5445aa-6eb5-43af-9f14-2e4e8e7952eb", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "45680f94-7c05-4491-a75c-363806cc4337", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062815Z:9a5445aa-6eb5-43af-9f14-2e4e8e7952eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93d84b3159d436f7ceb36d7aefd2f281", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f86ed14-45c5-4ccb-9d87-05cffe6f343f", + "x-ms-client-request-id": "93d84b3159d436f7ceb36d7aefd2f281", + "x-ms-correlation-request-id": "ddc8f826-42d9-4680-a3dc-f5a2b50dc1a3", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "f42dcc6b-0470-4492-8628-869d90b6342e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062816Z:ddc8f826-42d9-4680-a3dc-f5a2b50dc1a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "daeb12c75f52ea305f46774b381c147b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2c81313-3760-46bb-a90e-ffd5b046e691", + "x-ms-client-request-id": "daeb12c75f52ea305f46774b381c147b", + "x-ms-correlation-request-id": "31a47bb8-ac4a-4d82-a1a5-864e6382c876", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "89bfa237-f791-4ba1-a52e-34a9f6f3adac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062817Z:31a47bb8-ac4a-4d82-a1a5-864e6382c876" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97fa526b222f66788e8d01406ec8a883", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "882dae58-227a-4e86-b251-a90fcdb50b0b", + "x-ms-client-request-id": "97fa526b222f66788e8d01406ec8a883", + "x-ms-correlation-request-id": "56c30513-6464-46be-8c30-d9c495a7eed3", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "50807f14-e0ce-4415-9225-6bc0f101e23a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062819Z:56c30513-6464-46be-8c30-d9c495a7eed3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe4346c4e74ad2441aee348de2abfdb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12d83f26-ce7f-4380-a9ad-a3c58ccd667d", + "x-ms-client-request-id": "fe4346c4e74ad2441aee348de2abfdb2", + "x-ms-correlation-request-id": "8c008ca6-19e1-4b94-aa2d-18fff77c381f", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "c721a01a-fa42-4060-815e-d8f7f6ae38ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062820Z:8c008ca6-19e1-4b94-aa2d-18fff77c381f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d0ef29e5ad7a4529a854cc45ef07b96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "628996a8-8092-404b-bfc5-25cb47d96be3", + "x-ms-client-request-id": "9d0ef29e5ad7a4529a854cc45ef07b96", + "x-ms-correlation-request-id": "4c28d83f-c2e7-47f8-90f8-7283017eba24", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "08acc2dc-5c5d-44c2-a5f7-5b9e289d456c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062821Z:4c28d83f-c2e7-47f8-90f8-7283017eba24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f287f39d15d983300e287c41eeea84e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fac5f372-72b3-42bd-b42b-72ad40549875", + "x-ms-client-request-id": "f287f39d15d983300e287c41eeea84e2", + "x-ms-correlation-request-id": "6c9688e8-19bd-4ada-8020-f8be90a47604", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "5434069d-9bdc-4eba-9c54-76ae0f2257c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062823Z:6c9688e8-19bd-4ada-8020-f8be90a47604" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ca14e8f0bb969acf49e64c59b7f732a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9156053-a50c-4915-b433-b26ddd8c1f7a", + "x-ms-client-request-id": "7ca14e8f0bb969acf49e64c59b7f732a", + "x-ms-correlation-request-id": "2d811c5b-fe33-4e7f-b2f8-dfda775ee4e8", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "32d8472c-950a-4b9b-841f-fe6c0278d25b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062824Z:2d811c5b-fe33-4e7f-b2f8-dfda775ee4e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eeef9d720b2488d8c28b8faede10b6af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad3d960d-45b3-4b2c-87fd-2f6d20566710", + "x-ms-client-request-id": "eeef9d720b2488d8c28b8faede10b6af", + "x-ms-correlation-request-id": "05fd4df7-3868-491d-911f-10e72c7c3362", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "e195ecd1-1efd-4eb0-bfc8-644cc23341bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062825Z:05fd4df7-3868-491d-911f-10e72c7c3362" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f346901ff4e92dd471efe3bb16ae78e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f930bc4-8324-43e1-841a-0052373bc8eb", + "x-ms-client-request-id": "0f346901ff4e92dd471efe3bb16ae78e", + "x-ms-correlation-request-id": "24ce049d-4a4a-49c2-9db5-1145f8a272f9", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "00858a0c-2d12-4a72-9f29-f11fafde7edb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062826Z:24ce049d-4a4a-49c2-9db5-1145f8a272f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51cf52b595fb84be7618ba2e7bfd8ae3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b48d805b-cf6a-4cdb-8226-91dd7a1ac6b9", + "x-ms-client-request-id": "51cf52b595fb84be7618ba2e7bfd8ae3", + "x-ms-correlation-request-id": "bbcf7a35-562d-45b6-9950-babc69f24ade", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "d35b68f1-b012-484f-80b0-3b63759d0dcc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062828Z:bbcf7a35-562d-45b6-9950-babc69f24ade" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31c4b5e8644a73dbc05da7050d9dd757", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51d36ebd-2ea9-4938-ac43-0b73efecec5f", + "x-ms-client-request-id": "31c4b5e8644a73dbc05da7050d9dd757", + "x-ms-correlation-request-id": "c2037b24-195b-480e-a9a1-e38f26fdd4d8", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "d2060b69-7ff4-4788-a780-938494ba22ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062829Z:c2037b24-195b-480e-a9a1-e38f26fdd4d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bf900a365416bb4abb0993544ae164a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6608bd31-f26b-4182-a6fd-488283b10357", + "x-ms-client-request-id": "8bf900a365416bb4abb0993544ae164a", + "x-ms-correlation-request-id": "9a721f17-17c7-449d-a873-517f637376a2", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "787ddea3-aa1a-401c-9bd4-41a1b323753d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062830Z:9a721f17-17c7-449d-a873-517f637376a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc521a93b6a65044775b909deeb877d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "764f0844-169c-47d4-bb72-aa53749f3ad4", + "x-ms-client-request-id": "fc521a93b6a65044775b909deeb877d8", + "x-ms-correlation-request-id": "5db37a79-c7ed-40c0-a8e4-ee3b73dfcafc", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "09854a3a-9040-46ff-a97f-eb62d418fd55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062831Z:5db37a79-c7ed-40c0-a8e4-ee3b73dfcafc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b8b6341ff0382a201588699caa52e12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7cd075d8-0732-43eb-babf-1450ba94acf8", + "x-ms-client-request-id": "7b8b6341ff0382a201588699caa52e12", + "x-ms-correlation-request-id": "1987c40a-f394-421e-b384-8bb991f3251f", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "c507c689-9ad1-481a-a14c-3ebdf4a0384e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062833Z:1987c40a-f394-421e-b384-8bb991f3251f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3715c46db4aedb1bba814e5d4167df2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1292b179-feee-454f-a2a6-19f6e843bec3", + "x-ms-client-request-id": "f3715c46db4aedb1bba814e5d4167df2", + "x-ms-correlation-request-id": "238de223-a7bd-4e87-ad76-2ca4a78dc600", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "83f34c7e-e200-44b5-b083-8800448da82a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062834Z:238de223-a7bd-4e87-ad76-2ca4a78dc600" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1f4c1399b22944677d0fb4d2faa86d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a23c87be-682e-432e-8460-386a07077e59", + "x-ms-client-request-id": "e1f4c1399b22944677d0fb4d2faa86d1", + "x-ms-correlation-request-id": "116d19c5-9bb4-4271-bb4c-75a347be3499", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "c081b391-2d88-4a70-97f1-90f432d38cc0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062836Z:116d19c5-9bb4-4271-bb4c-75a347be3499" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91577e2c8347668db29ebf5aebbdaeea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79f1d37d-dfd0-4c52-bf98-71ccafc90e43", + "x-ms-client-request-id": "91577e2c8347668db29ebf5aebbdaeea", + "x-ms-correlation-request-id": "d8d1aee6-2489-4ab5-aa28-5f9ad5d51583", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "22119c32-74bd-4d18-9b8f-8c64d3415f2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062837Z:d8d1aee6-2489-4ab5-aa28-5f9ad5d51583" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "096093da4db1aaef15dd7b7adf63bd10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53ec3ad8-c4e7-41e1-a29e-4e7617ef321d", + "x-ms-client-request-id": "096093da4db1aaef15dd7b7adf63bd10", + "x-ms-correlation-request-id": "fb80b0f2-c190-48ed-9adb-4e489332c93e", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "1a9c48e3-7a16-4dd3-a4fb-2fccedb2583d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062838Z:fb80b0f2-c190-48ed-9adb-4e489332c93e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55b84222ecbeb5ab348d2f84dceca8ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef1cde7e-d700-4491-9ec8-dac893e8d37d", + "x-ms-client-request-id": "55b84222ecbeb5ab348d2f84dceca8ba", + "x-ms-correlation-request-id": "d8db97c0-c5c2-4cb0-a5c9-0dfecfb50511", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "7caeb394-b4e9-4a0a-836c-7c98f5049f50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062839Z:d8db97c0-c5c2-4cb0-a5c9-0dfecfb50511" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c7310217c4adf1f8fad7b690812864e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89400be2-6ad9-4aea-ab57-bb0d7631bd8f", + "x-ms-client-request-id": "9c7310217c4adf1f8fad7b690812864e", + "x-ms-correlation-request-id": "bce9745d-e461-4fb1-9b52-ec20e6ae0da4", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "beacbe0b-99f6-4a3d-86e2-e41ddaf80e6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062841Z:bce9745d-e461-4fb1-9b52-ec20e6ae0da4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a837aee15804ee2ce7aad5231e6bcd29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40a345dd-a8b0-4f40-9dfd-d35078f91fac", + "x-ms-client-request-id": "a837aee15804ee2ce7aad5231e6bcd29", + "x-ms-correlation-request-id": "75c32d46-4ee4-49f5-8e63-953c4a2b615f", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "2366665e-4cf1-4d05-8c8c-fc9dcd02eda0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062842Z:75c32d46-4ee4-49f5-8e63-953c4a2b615f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf59c13420f0a5c522d9c6117041ad22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a638d9fd-b9f8-441e-9810-8bcab3397b9d", + "x-ms-client-request-id": "cf59c13420f0a5c522d9c6117041ad22", + "x-ms-correlation-request-id": "3faaa2f7-e037-4af7-9cba-b2198cb2f551", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "9d414587-bcfe-47ef-8ec1-080ca6084b5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062843Z:3faaa2f7-e037-4af7-9cba-b2198cb2f551" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ea2e00700b4c9b5e484b5a0a7fcc024", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80ad16d0-cc39-4bf5-843e-5658da2e1038", + "x-ms-client-request-id": "2ea2e00700b4c9b5e484b5a0a7fcc024", + "x-ms-correlation-request-id": "5ab5aeef-88ea-4f26-bc1a-3723e8d6cb83", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "2b613315-0f5e-446e-8d29-a4ae9fd0ad5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062845Z:5ab5aeef-88ea-4f26-bc1a-3723e8d6cb83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "463551dfb7b9c05ee892852b911b7da5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a0dba70-4dbf-4d2e-8e7f-0ce134aacf7b", + "x-ms-client-request-id": "463551dfb7b9c05ee892852b911b7da5", + "x-ms-correlation-request-id": "a4361ecc-3307-466e-9bca-747ed97a587d", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "e782730b-d8b9-431d-bd5e-ee9c8be22cea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062846Z:a4361ecc-3307-466e-9bca-747ed97a587d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d1cb3fc9fc833750b8feb6b6b25fd26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2f1314d-4445-475e-8b15-7f83c255816c", + "x-ms-client-request-id": "3d1cb3fc9fc833750b8feb6b6b25fd26", + "x-ms-correlation-request-id": "5a5ddf65-5688-407f-a220-07ddd8b2ebf3", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "11cacb49-7d5c-4b5c-90e0-bd1aaef5489d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062847Z:5a5ddf65-5688-407f-a220-07ddd8b2ebf3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f31a218660c4f6882e245217a8937c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e418bfef-be6e-4fc1-bbf0-b70ce5c8ac4c", + "x-ms-client-request-id": "1f31a218660c4f6882e245217a8937c8", + "x-ms-correlation-request-id": "bcdcedc7-041a-4a3d-979c-d7c145a2a540", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "0e459304-0d80-4266-b037-790f4ee86853", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062848Z:bcdcedc7-041a-4a3d-979c-d7c145a2a540" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4a30f0682df3f5cdb013b29ccf255c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83a30963-9144-44d9-ae6d-bc00ad6f7a44", + "x-ms-client-request-id": "f4a30f0682df3f5cdb013b29ccf255c2", + "x-ms-correlation-request-id": "705efe86-64e8-4bec-8aba-128e17de7c2d", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "39b027ad-9dbb-4771-9cfa-7a16cdbaa9a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062850Z:705efe86-64e8-4bec-8aba-128e17de7c2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef135e945ee996994accbbe55953b982", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee7cb65a-9245-4d54-88f4-90348cf2dbce", + "x-ms-client-request-id": "ef135e945ee996994accbbe55953b982", + "x-ms-correlation-request-id": "349637d9-46a0-40c2-b425-631a269c537e", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "7044ecf8-dfd6-4462-853e-50729762c0df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062851Z:349637d9-46a0-40c2-b425-631a269c537e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c6522580981954746f1430a2b3f838f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a8073db-7b62-4b81-852d-868e4a019806", + "x-ms-client-request-id": "5c6522580981954746f1430a2b3f838f", + "x-ms-correlation-request-id": "bd2255f9-f448-4c0f-b715-5b024fa71540", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "4144e4ae-05a1-4d35-bce2-85a6c0dbda9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062852Z:bd2255f9-f448-4c0f-b715-5b024fa71540" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b8d828d4776a7df750daa12c676e588", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68ef600c-7b0f-449e-97d5-557e3dd43f25", + "x-ms-client-request-id": "1b8d828d4776a7df750daa12c676e588", + "x-ms-correlation-request-id": "f43deeb3-9aae-441a-bb6b-c8b675a78181", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "32e8cb21-d748-4bf7-9d8f-22b3a5855607", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062853Z:f43deeb3-9aae-441a-bb6b-c8b675a78181" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9d0b948f88d8b41177da9f71b8f6b0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f724bb8-2178-4f8c-ab23-d933d5ef732e", + "x-ms-client-request-id": "a9d0b948f88d8b41177da9f71b8f6b0a", + "x-ms-correlation-request-id": "aae5aec6-6454-43d9-b0a9-8fceece3c3e6", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "669b906e-ceac-490a-a428-431ccba2f216", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062855Z:aae5aec6-6454-43d9-b0a9-8fceece3c3e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7582c499dc6100b42bde6745e34cecf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92826fb8-47f9-4075-816b-43764784f79c", + "x-ms-client-request-id": "d7582c499dc6100b42bde6745e34cecf", + "x-ms-correlation-request-id": "7da22f37-3e90-4f97-926e-6a2b8102714a", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "1cbb9b06-f756-481f-92a5-50e9f8c191e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062856Z:7da22f37-3e90-4f97-926e-6a2b8102714a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72c1bb0cda6e9402410204f89de88ce5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d07101ab-30cd-4d53-b62c-5abc6b3c8ec3", + "x-ms-client-request-id": "72c1bb0cda6e9402410204f89de88ce5", + "x-ms-correlation-request-id": "7675f5c2-930e-4c44-8611-7d75934bc57b", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "155be440-9353-4e0e-a646-b8e4d9eaaf0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062857Z:7675f5c2-930e-4c44-8611-7d75934bc57b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ac9a0a20e1dabc1adbf67d011cd2ce3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ded46c33-20a0-4ea8-b20c-6c85439d8449", + "x-ms-client-request-id": "9ac9a0a20e1dabc1adbf67d011cd2ce3", + "x-ms-correlation-request-id": "2016a073-8ba7-4586-b47a-5f5204a57899", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "d5855d9c-aad2-4eae-be84-b6e5a22d9ae9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062859Z:2016a073-8ba7-4586-b47a-5f5204a57899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60ebdaaff8cd6e9b29c395c39912735a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:28:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a81138c6-f8b1-451c-9c65-7faa3cac3b89", + "x-ms-client-request-id": "60ebdaaff8cd6e9b29c395c39912735a", + "x-ms-correlation-request-id": "54c819c4-519b-4c0d-a3c1-4fd8ead341e9", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "7451c5ec-fb8c-47bb-9b2b-d971ae60a6ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062900Z:54c819c4-519b-4c0d-a3c1-4fd8ead341e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdd10130336afdb2f916c4ae73328274", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "deacc7b4-3c4a-4f85-b26a-d511c5fe4a26", + "x-ms-client-request-id": "bdd10130336afdb2f916c4ae73328274", + "x-ms-correlation-request-id": "30b7a500-a805-4b97-acd4-2e07ff129dfb", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "8187faf9-bfa6-4903-997c-8f7c96c9295b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062901Z:30b7a500-a805-4b97-acd4-2e07ff129dfb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c34920d52bfca917045a715979fd129b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3cefc2fd-29a0-4f6d-8b99-d4708836a73d", + "x-ms-client-request-id": "c34920d52bfca917045a715979fd129b", + "x-ms-correlation-request-id": "bed053d4-2abb-49fe-b878-a8640bda2128", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "598bfd25-c40e-45f3-80ba-e90e1fde1c1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062902Z:bed053d4-2abb-49fe-b878-a8640bda2128" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "109f0c4c6efb7b7827ed67b734ecfbf7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "086f63a3-7e68-4f2b-94e0-9a09ed4070c2", + "x-ms-client-request-id": "109f0c4c6efb7b7827ed67b734ecfbf7", + "x-ms-correlation-request-id": "7dd63e05-5655-4737-8c4f-80903ea75442", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "002ea94e-2319-4e1a-8a1a-5e1784f5bf7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062904Z:7dd63e05-5655-4737-8c4f-80903ea75442" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78ee2141afc8045de928b910c25884fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d960d8e-50d6-4926-9283-c84d2b24a36b", + "x-ms-client-request-id": "78ee2141afc8045de928b910c25884fb", + "x-ms-correlation-request-id": "40ce7d3f-f5a3-4fe5-a673-2fb44bba2243", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "ab8dc17b-20e9-4707-9ac9-d0d3485421c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062905Z:40ce7d3f-f5a3-4fe5-a673-2fb44bba2243" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6661290372936679a8ce9b0ec45f7518", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "abe94093-6946-4061-aa43-30e868330dc7", + "x-ms-client-request-id": "6661290372936679a8ce9b0ec45f7518", + "x-ms-correlation-request-id": "67951782-c6ac-4467-8809-8636c8fddcb1", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "70c523ef-16a0-42f5-b1c7-54a9bac9fa9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062906Z:67951782-c6ac-4467-8809-8636c8fddcb1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57187a5e9a0f9dd2ae9a27d2b567b8cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68753066-465a-474b-b493-24f0d7d42339", + "x-ms-client-request-id": "57187a5e9a0f9dd2ae9a27d2b567b8cf", + "x-ms-correlation-request-id": "81f007e2-a584-41f8-a4a9-c164346d3bfd", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "14e27cb5-e6d8-4da2-87c3-63ddb730997d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062908Z:81f007e2-a584-41f8-a4a9-c164346d3bfd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ab46c69958ace64a787cffa134e4089", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15623336-a75b-4895-bb9e-35d7e9cc6709", + "x-ms-client-request-id": "0ab46c69958ace64a787cffa134e4089", + "x-ms-correlation-request-id": "7af7fec7-eac5-483b-a1f2-a6d4d4e10287", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "a1251bb0-b1c4-4410-bb43-b53cc5a29c37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062909Z:7af7fec7-eac5-483b-a1f2-a6d4d4e10287" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48b1a0b32c3f69eb56c4b8f84aa6b040", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "448d4fff-10f2-4fbf-b5cb-73bdb1ed2a98", + "x-ms-client-request-id": "48b1a0b32c3f69eb56c4b8f84aa6b040", + "x-ms-correlation-request-id": "d5e6ef6f-0f66-4dad-ad9a-95b67a66a8c1", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "7a0adf1d-93e5-4a27-8974-7418382e1586", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062910Z:d5e6ef6f-0f66-4dad-ad9a-95b67a66a8c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58a5cc156aabc98d164ab087cbd8895f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a98440c-8e5d-4f8e-a31d-ad6c9cb12fc9", + "x-ms-client-request-id": "58a5cc156aabc98d164ab087cbd8895f", + "x-ms-correlation-request-id": "a1974411-51bf-4bd5-a6e1-3d897d9f2e85", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "4e7480e4-f3d0-4ad9-a99b-68f14710773e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062911Z:a1974411-51bf-4bd5-a6e1-3d897d9f2e85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "141f9e5970b63d90804bb3c6dd6b8401", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37f16f6b-a92e-495b-a062-40c639507e98", + "x-ms-client-request-id": "141f9e5970b63d90804bb3c6dd6b8401", + "x-ms-correlation-request-id": "f7efcb66-1dd4-46fd-af9b-3be05987aa52", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "9e8d7bbd-5da6-4075-8ec9-3a7c68927f66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062913Z:f7efcb66-1dd4-46fd-af9b-3be05987aa52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47e48ed7e7a949dd13e832f57c639e7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "149798ff-ba17-4231-bb01-a7b1394d2297", + "x-ms-client-request-id": "47e48ed7e7a949dd13e832f57c639e7e", + "x-ms-correlation-request-id": "83e90c3b-45c7-4a65-a4b6-53798868a6aa", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "72e128b7-4142-408f-be3e-c8e88301a5dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062914Z:83e90c3b-45c7-4a65-a4b6-53798868a6aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac9f583a9b87a58a3b67d760b6c7ecaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "985c4156-7ffe-4efa-9d89-0c5744765d38", + "x-ms-client-request-id": "ac9f583a9b87a58a3b67d760b6c7ecaa", + "x-ms-correlation-request-id": "c968e7ca-277f-479d-b84c-b0b76b899979", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "c4d2d40c-cf82-45bb-9da4-acccf83c7d0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062915Z:c968e7ca-277f-479d-b84c-b0b76b899979" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cb0aec541f472b5c0d601ce3e9ac11c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40ea5f20-2c28-440d-8def-c59ce470bdc1", + "x-ms-client-request-id": "3cb0aec541f472b5c0d601ce3e9ac11c", + "x-ms-correlation-request-id": "8eb343a1-8b83-4010-b171-aa249ca406bf", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "9e32c448-3420-4474-a96b-f632324836e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062916Z:8eb343a1-8b83-4010-b171-aa249ca406bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "848b35add7cc3b79043e0b410f7d924c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc03ff4f-dc05-4353-8240-bae62c3868a2", + "x-ms-client-request-id": "848b35add7cc3b79043e0b410f7d924c", + "x-ms-correlation-request-id": "1e61687d-733a-45b0-883b-2a5d140a6717", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "61b0142e-17dd-4655-a014-e3ec6345c405", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062918Z:1e61687d-733a-45b0-883b-2a5d140a6717" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd2f87fc61b3f98aa22cebb19abc67a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f29ff9fd-ffbe-4b49-80a3-2bb6ba0a3717", + "x-ms-client-request-id": "cd2f87fc61b3f98aa22cebb19abc67a1", + "x-ms-correlation-request-id": "91dad20d-4f89-468d-8ad9-29da6abd7316", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "b503a99c-7d53-4d58-9b16-a50e08a56f9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062919Z:91dad20d-4f89-468d-8ad9-29da6abd7316" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80b2bba6673ceede347438b536746243", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe1e3b63-d74d-47c2-a2b9-6f08c2b5f1c5", + "x-ms-client-request-id": "80b2bba6673ceede347438b536746243", + "x-ms-correlation-request-id": "99b6f738-3787-4726-a2bc-a54f58d69450", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "591d2879-b57c-46b6-bfa4-3c53b0ce2268", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062920Z:99b6f738-3787-4726-a2bc-a54f58d69450" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6d2b443f36a4b68ab92e19fecc8a147", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fad1fbbf-d41d-4d02-963d-cd91cd31a7b0", + "x-ms-client-request-id": "b6d2b443f36a4b68ab92e19fecc8a147", + "x-ms-correlation-request-id": "b7d0d545-6212-431c-9551-8ad6385b6a7c", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "ed4bf028-6f8a-4e1c-918d-a574b1dd5490", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062922Z:b7d0d545-6212-431c-9551-8ad6385b6a7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "549b6ad711ca9410a841983f29d4c32e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "080ec952-19b4-4183-811e-8ccc3b3e492d", + "x-ms-client-request-id": "549b6ad711ca9410a841983f29d4c32e", + "x-ms-correlation-request-id": "69351a4e-be91-4f81-92ca-8d624d7cfd1b", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "25de02c5-bcfa-4fa8-a483-524414dd83cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062923Z:69351a4e-be91-4f81-92ca-8d624d7cfd1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e56ea8cab0eab2365267d5a9853f026c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27958de3-d9a3-4458-a84f-085790613788", + "x-ms-client-request-id": "e56ea8cab0eab2365267d5a9853f026c", + "x-ms-correlation-request-id": "3a59de44-fafb-416d-af75-e706330c5078", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "cfd85e8d-e91d-4abf-b0dd-0ea5edf2ce98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062924Z:3a59de44-fafb-416d-af75-e706330c5078" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbdef0d30dd83178a43d0e295b2922d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "671caec8-d37c-40bc-b0f5-19ef3c315f9d", + "x-ms-client-request-id": "cbdef0d30dd83178a43d0e295b2922d6", + "x-ms-correlation-request-id": "5ff2430f-9bd7-4069-93cb-eb7805c4866a", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "656890fc-e674-46f6-a993-8ee6fcb12535", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062925Z:5ff2430f-9bd7-4069-93cb-eb7805c4866a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43d4b3cfbc5a265d34e802633c660e68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9e3b8ee-4486-4666-a15d-c40f5833b50e", + "x-ms-client-request-id": "43d4b3cfbc5a265d34e802633c660e68", + "x-ms-correlation-request-id": "c91d7207-3485-46db-9c99-e34588cdd754", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "a3fd0370-961f-4a08-be3e-9408eb0db3f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062927Z:c91d7207-3485-46db-9c99-e34588cdd754" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "386b2b3ff7f6bd552f3c40aca20c5728", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96e4dcf6-df6d-4cff-9536-53ec8fced4e0", + "x-ms-client-request-id": "386b2b3ff7f6bd552f3c40aca20c5728", + "x-ms-correlation-request-id": "26e3d7a6-a6c1-4fb8-97a5-760340780fc8", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "d4437a1b-354f-4646-a089-f8b8cad5b377", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062928Z:26e3d7a6-a6c1-4fb8-97a5-760340780fc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2dafe44be6b171293b897ef0b15f43e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bc6f1ce-c6bc-467e-bcfa-889794af9c7f", + "x-ms-client-request-id": "d2dafe44be6b171293b897ef0b15f43e", + "x-ms-correlation-request-id": "a6fdc241-fd11-4ba1-a117-a3fcda35914d", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "f4348e25-1b6a-4354-8833-dcb9ee834057", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062929Z:a6fdc241-fd11-4ba1-a117-a3fcda35914d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2feaa52feabed7e05d16131d7bb08327", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bbcf14cf-15f0-444e-a795-73c549794f26", + "x-ms-client-request-id": "2feaa52feabed7e05d16131d7bb08327", + "x-ms-correlation-request-id": "6d5f3537-ab79-4653-b84c-a70ae50ce933", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "cc5cb808-ef14-402e-bc08-bd5609c64604", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062930Z:6d5f3537-ab79-4653-b84c-a70ae50ce933" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d1ed9913b8b80fd1954a53d5f66b11a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9912549f-7454-4e2c-8399-11235f15bd47", + "x-ms-client-request-id": "3d1ed9913b8b80fd1954a53d5f66b11a", + "x-ms-correlation-request-id": "856f9ef4-28f1-452b-a35a-3f731d702608", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "6aa4b9fc-b4b7-4f87-8321-dd48de030688", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062932Z:856f9ef4-28f1-452b-a35a-3f731d702608" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd7d024727225a6a1e037554aaf49be2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2793bf0-edd9-4ca2-a864-169a240ef003", + "x-ms-client-request-id": "fd7d024727225a6a1e037554aaf49be2", + "x-ms-correlation-request-id": "0cd9f59b-a4d4-4711-996f-f70684498153", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "082757db-1161-41f3-92fd-d254396830d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062933Z:0cd9f59b-a4d4-4711-996f-f70684498153" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "325e7034b7f6f3b2a769156944a277f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c234e572-7824-474f-9b5c-61798cd58857", + "x-ms-client-request-id": "325e7034b7f6f3b2a769156944a277f7", + "x-ms-correlation-request-id": "6d0a2d2e-bb9f-4398-97d4-23782db2e253", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "64171afa-d0e8-47a4-b708-e8f63c182f1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062934Z:6d0a2d2e-bb9f-4398-97d4-23782db2e253" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78d5f965853369056ec41f88c6a8d624", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e23dd9e-d30e-454c-8ed6-44842f0b43c1", + "x-ms-client-request-id": "78d5f965853369056ec41f88c6a8d624", + "x-ms-correlation-request-id": "06dcacb6-1e2d-4a09-833b-3907ad1b244e", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "b2801ae3-3a27-44e3-949b-f9e5172757d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062936Z:06dcacb6-1e2d-4a09-833b-3907ad1b244e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef09c2b87f0790244f8955b81101157b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4dfe1d7d-7127-4127-8fef-c30366f12822", + "x-ms-client-request-id": "ef09c2b87f0790244f8955b81101157b", + "x-ms-correlation-request-id": "8866aa26-c4c4-4308-8837-0207048592ae", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "c915c997-3e8c-4683-b6d9-4578b488dd9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062937Z:8866aa26-c4c4-4308-8837-0207048592ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1ef7e8b231faeaf6bf4c332982a2dff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28bb55a6-687a-4acc-85cb-9c7582b5c635", + "x-ms-client-request-id": "b1ef7e8b231faeaf6bf4c332982a2dff", + "x-ms-correlation-request-id": "c391b772-45c0-4c46-aaa9-eca7fc1e4cd0", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "56185dee-3600-4c09-abc6-c03eb6eb4fda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062938Z:c391b772-45c0-4c46-aaa9-eca7fc1e4cd0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81b0f0938899e5efd54528a9304c586d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fdc386be-3537-4648-ac0d-31a305b5aeaf", + "x-ms-client-request-id": "81b0f0938899e5efd54528a9304c586d", + "x-ms-correlation-request-id": "d3c91e9b-bd34-42a4-87b7-c369cf4f2851", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "441a8f24-8728-46be-af65-91dea922d288", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062939Z:d3c91e9b-bd34-42a4-87b7-c369cf4f2851" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47fca4ae25b99505135a8413bcf2f825", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d197835f-b408-451a-94ef-6091e9022d53", + "x-ms-client-request-id": "47fca4ae25b99505135a8413bcf2f825", + "x-ms-correlation-request-id": "c9a3b18d-e3c6-4877-b00c-91a6d29a2532", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "0c524135-32e7-4c30-8449-6109909ff047", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062941Z:c9a3b18d-e3c6-4877-b00c-91a6d29a2532" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2025565c935003e18f09dcdafa057e1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2bfb8a3b-5f4d-44af-85f0-be2dedec8db4", + "x-ms-client-request-id": "2025565c935003e18f09dcdafa057e1e", + "x-ms-correlation-request-id": "4a514c22-fa5d-4d25-9616-a889e85a4e09", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "6761ee58-2bb2-4887-bdb9-328a63eab674", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062942Z:4a514c22-fa5d-4d25-9616-a889e85a4e09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f483559ce52d6e45eb1a6e3f03dc29e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ff940ca-ff31-4329-abd0-06fe951b76ae", + "x-ms-client-request-id": "f483559ce52d6e45eb1a6e3f03dc29e3", + "x-ms-correlation-request-id": "ce7a06d7-89d6-491d-90ec-4e5c8e327d45", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "bed6062d-ff01-445e-babb-bd42c2f64e14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062943Z:ce7a06d7-89d6-491d-90ec-4e5c8e327d45" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d94c034c37261a1dc2f9b8af492b9b0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d1dfa43-b611-49e0-86fb-616c6b1789b8", + "x-ms-client-request-id": "d94c034c37261a1dc2f9b8af492b9b0d", + "x-ms-correlation-request-id": "1302eadb-9a8a-4673-b876-1c8d373cdf04", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "4b650173-ab11-435d-b840-3f27eaeb34af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062945Z:1302eadb-9a8a-4673-b876-1c8d373cdf04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "677665db046e76f810b7353625a2ffb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc7ad5b2-1861-4dcd-a1a2-73e77eb99359", + "x-ms-client-request-id": "677665db046e76f810b7353625a2ffb2", + "x-ms-correlation-request-id": "d4fc6346-5acb-46bb-93b5-f63c5dbfbac2", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "9ddde21d-3d76-45a2-b292-5b8188537e91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062946Z:d4fc6346-5acb-46bb-93b5-f63c5dbfbac2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f78df9e0a4b965f7386831342d9624c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "315f5e8a-3813-4b7a-aa42-605f6cad2020", + "x-ms-client-request-id": "f78df9e0a4b965f7386831342d9624c0", + "x-ms-correlation-request-id": "fbc1c4e3-0f61-4f59-91f2-cb21bb469857", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "59ce3141-0eee-486d-953a-7c8664d99b9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062947Z:fbc1c4e3-0f61-4f59-91f2-cb21bb469857" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d63607ec26548740bd6c86f01e6f520", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "679cc976-869f-4a69-a169-db401d29ff24", + "x-ms-client-request-id": "9d63607ec26548740bd6c86f01e6f520", + "x-ms-correlation-request-id": "8144f052-a6e8-4a86-8dbd-1ebd98985d30", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "7f8d86a3-ba49-4b3d-8a17-5c4f0050d4ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062948Z:8144f052-a6e8-4a86-8dbd-1ebd98985d30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50cf05f9a49d36546e112e06d2c4497a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7060b1f4-dbda-4801-ba37-282aa15b2c24", + "x-ms-client-request-id": "50cf05f9a49d36546e112e06d2c4497a", + "x-ms-correlation-request-id": "038a0287-458f-4429-8d78-c7c3a1be4706", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "d68fa7d6-71fe-4080-b30d-0ff758ed4d1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062950Z:038a0287-458f-4429-8d78-c7c3a1be4706" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5b77592623e1e4c8444ebe2db886351", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a08932e-f5c9-4e90-9fe3-9920b06f8524", + "x-ms-client-request-id": "c5b77592623e1e4c8444ebe2db886351", + "x-ms-correlation-request-id": "7f7eda48-fc28-4924-8757-d8a98f4c86e7", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "af8773b4-6c86-46ec-91fb-eee350168372", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062951Z:7f7eda48-fc28-4924-8757-d8a98f4c86e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "273a1072d4c7da220b2c2f54936d7547", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65d92660-f5cc-40a9-81b0-5d5cd4bbeebb", + "x-ms-client-request-id": "273a1072d4c7da220b2c2f54936d7547", + "x-ms-correlation-request-id": "8196f38b-c01f-4683-9224-c98a043d6c2f", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "5a393c0c-ac08-47fc-9e46-981d6234152c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062952Z:8196f38b-c01f-4683-9224-c98a043d6c2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cdc4e8d302f97e2b8b0cb58b8725be5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "951ce7ad-e627-4968-8625-dfe26ee97654", + "x-ms-client-request-id": "8cdc4e8d302f97e2b8b0cb58b8725be5", + "x-ms-correlation-request-id": "f94c4054-5942-4082-8f50-ade52908604e", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "0bfe8baf-2fe0-4619-9579-6ebe61984fcc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062953Z:f94c4054-5942-4082-8f50-ade52908604e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c293ddae2189bdb352ddb91133f88b16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5512cc2-f429-4dd3-acdf-cef02cf192f3", + "x-ms-client-request-id": "c293ddae2189bdb352ddb91133f88b16", + "x-ms-correlation-request-id": "a2cf3a5d-d28c-4eb8-8ea9-5dd21742a4e9", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "512d74fc-48a0-4ca7-9647-e5b14f2da92e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062955Z:a2cf3a5d-d28c-4eb8-8ea9-5dd21742a4e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d55a4cfd6ab42222ea36e1609c92199", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8195e407-5e1b-4715-b569-f4c914339281", + "x-ms-client-request-id": "8d55a4cfd6ab42222ea36e1609c92199", + "x-ms-correlation-request-id": "e75de87f-bde2-4ed6-ad3d-c2cbc52ff7c9", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "085d1b33-816a-4f90-ba96-8b7503a618c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062956Z:e75de87f-bde2-4ed6-ad3d-c2cbc52ff7c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5a649d1b3da6bbd9b1e395276d063c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "945ac957-289d-47c6-9882-ca783c50146a", + "x-ms-client-request-id": "b5a649d1b3da6bbd9b1e395276d063c0", + "x-ms-correlation-request-id": "207c4e44-9b5f-466e-86de-8546b1e3aec6", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "7214c895-ff41-455b-8e2d-86d9e288c62f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062957Z:207c4e44-9b5f-466e-86de-8546b1e3aec6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1389b425cd1cd739bb5093e6b29cb489", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:29:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8fd3542-3ef8-4120-936a-cb690f4c085f", + "x-ms-client-request-id": "1389b425cd1cd739bb5093e6b29cb489", + "x-ms-correlation-request-id": "caf5a39e-8d86-4c46-802a-818aea519351", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "04652b35-56d1-45d2-9997-5744bf06d0c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T062959Z:caf5a39e-8d86-4c46-802a-818aea519351" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e94020bbd5521b3ce7e9f28d9dd0cc5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd12bbc4-a955-488b-877d-3bc31aeb49c3", + "x-ms-client-request-id": "e94020bbd5521b3ce7e9f28d9dd0cc5e", + "x-ms-correlation-request-id": "7b923f99-d972-49d3-b2c3-2af49f8594d1", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "8509a3fa-36af-436d-9d19-9bebaf079ee1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063000Z:7b923f99-d972-49d3-b2c3-2af49f8594d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54f1ae3f0d3f037d0fcefa8920d7b9fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81045a68-b44e-4b83-a5bc-8b0651a30187", + "x-ms-client-request-id": "54f1ae3f0d3f037d0fcefa8920d7b9fe", + "x-ms-correlation-request-id": "14ad7230-e86c-4960-a5c5-550942f368e5", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "542f358b-ebb6-4d73-b556-17b2a8afc8c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063001Z:14ad7230-e86c-4960-a5c5-550942f368e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5596b06a7a8f4f6d776e2c32dbac3aeb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bec87b80-ce49-4666-94e4-159a62595c4e", + "x-ms-client-request-id": "5596b06a7a8f4f6d776e2c32dbac3aeb", + "x-ms-correlation-request-id": "38d69ac4-ba2e-4d63-aeba-ce7c18f2767c", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "7e2cb85e-a9de-429d-a0c9-f7ae46e0d924", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063002Z:38d69ac4-ba2e-4d63-aeba-ce7c18f2767c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03a635845fabad49a33cd983dbb3fb0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94e3fa71-532b-4f37-ad1a-d949bc509dea", + "x-ms-client-request-id": "03a635845fabad49a33cd983dbb3fb0f", + "x-ms-correlation-request-id": "62c2abd3-4e83-4be8-a0c8-ad50a751fee8", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "6d37e18f-db09-4052-8170-226dc87237a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063004Z:62c2abd3-4e83-4be8-a0c8-ad50a751fee8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec23f4307639c5ce41a2dcd1e04a2863", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f626f119-7dab-4830-93b1-84cfac9ca4e2", + "x-ms-client-request-id": "ec23f4307639c5ce41a2dcd1e04a2863", + "x-ms-correlation-request-id": "c3437f9f-9a6a-420b-8e49-b21c3bb7f539", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "b21b3962-978e-425e-b0d3-2abee34bb094", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063005Z:c3437f9f-9a6a-420b-8e49-b21c3bb7f539" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea050f94b5310a5266e8b253a0e974c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7400cc7f-7480-4fd6-896a-74864eb105e0", + "x-ms-client-request-id": "ea050f94b5310a5266e8b253a0e974c4", + "x-ms-correlation-request-id": "9eb31a18-0462-4469-8720-f1fc2e29c4b7", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "a4ac2055-c7fb-402c-8a30-de26b85695f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063006Z:9eb31a18-0462-4469-8720-f1fc2e29c4b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7011d734d890db167e1c2098378cd58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69d1bc5c-49f6-469b-b566-930e46224693", + "x-ms-client-request-id": "e7011d734d890db167e1c2098378cd58", + "x-ms-correlation-request-id": "24c96949-852f-4177-82b4-352c3da594cf", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "7aa4eaee-631c-4f72-a9de-66058ad97749", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063007Z:24c96949-852f-4177-82b4-352c3da594cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbef761410ad7bdea1198551c47a2458", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "639c479e-9fa5-4335-8820-eccf5d495cdc", + "x-ms-client-request-id": "cbef761410ad7bdea1198551c47a2458", + "x-ms-correlation-request-id": "a8a87b74-84f0-40c1-9d0e-f488fc9e1f10", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "9020e20e-67ca-4d66-8896-c38c67dc5c71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063009Z:a8a87b74-84f0-40c1-9d0e-f488fc9e1f10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c35e172d414947d95ef7834ff24986ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80dfd4dd-b308-44dd-abec-68d55c13ca9d", + "x-ms-client-request-id": "c35e172d414947d95ef7834ff24986ee", + "x-ms-correlation-request-id": "b77c4b9f-5a56-4ef7-aa44-a66cc082fad4", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "297a5cbf-5c05-446a-9db1-da6f97f61589", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063010Z:b77c4b9f-5a56-4ef7-aa44-a66cc082fad4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a3f591ba8fa62173e854570c76049ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "974aed70-ce09-4fef-bcc1-cccf60ce3754", + "x-ms-client-request-id": "2a3f591ba8fa62173e854570c76049ec", + "x-ms-correlation-request-id": "1a0ae1ca-bb21-419b-b41f-ca863177ab04", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "7021b486-2042-466e-abfd-6baf1851e646", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063011Z:1a0ae1ca-bb21-419b-b41f-ca863177ab04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6bdb6abc091ad30f9ca76db68d8e8958", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7050bd8a-3d74-44ef-9587-eb09b32214a9", + "x-ms-client-request-id": "6bdb6abc091ad30f9ca76db68d8e8958", + "x-ms-correlation-request-id": "a5779446-d3c5-41b5-8537-bc44997fc20b", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "d918cdc4-0fd6-4f88-b6bd-987d05529997", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063012Z:a5779446-d3c5-41b5-8537-bc44997fc20b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a359792fa3b855e00fb84c3fb697ffd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30321ed5-d692-48c3-a100-f4d05d083912", + "x-ms-client-request-id": "6a359792fa3b855e00fb84c3fb697ffd", + "x-ms-correlation-request-id": "d01ec1ea-8509-4cd1-aa13-72ee2ed29b6d", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "3d75d58c-d879-4c24-8f61-5b0c705febe2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063014Z:d01ec1ea-8509-4cd1-aa13-72ee2ed29b6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "889397ae1b6d11d44a6b8d523a60d5b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f089c91-cb8d-4eb9-939c-28b3b8d92090", + "x-ms-client-request-id": "889397ae1b6d11d44a6b8d523a60d5b0", + "x-ms-correlation-request-id": "d2386493-5739-4945-90fe-95f37d83e7a2", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "ec54acdc-78c9-435b-a148-30cb7e074b94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063015Z:d2386493-5739-4945-90fe-95f37d83e7a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fdeedfcde2ac1b00c566a1e844bd833", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99cd7502-f24d-4b9d-9c71-13736ce57e42", + "x-ms-client-request-id": "2fdeedfcde2ac1b00c566a1e844bd833", + "x-ms-correlation-request-id": "cc872cc9-aafe-4895-826a-5f111f28c407", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "c5215b48-19a4-441e-9004-dd1018108f98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063016Z:cc872cc9-aafe-4895-826a-5f111f28c407" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f508702800fb76eac32320d06d0b4b9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16e15562-84d4-4560-aa57-74c3ec78e1fd", + "x-ms-client-request-id": "f508702800fb76eac32320d06d0b4b9f", + "x-ms-correlation-request-id": "2dd7f4dc-d863-4126-9b6e-8808ae785096", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "08bdffb5-03e3-4507-81c0-b45eb13d87a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063018Z:2dd7f4dc-d863-4126-9b6e-8808ae785096" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0dc7d4264f8acfd2e6d17c17b1b58cfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "352f9624-1afa-4615-8524-e26a194c4f8f", + "x-ms-client-request-id": "0dc7d4264f8acfd2e6d17c17b1b58cfe", + "x-ms-correlation-request-id": "dd49a0cb-3f42-48bd-be5c-0fb708627121", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "884f3a5d-2354-4830-8431-e958f4496568", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063019Z:dd49a0cb-3f42-48bd-be5c-0fb708627121" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca2a5993df58fbb502686c06bee05400", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d621f3a-b6af-425f-b0b4-9a24295ecab5", + "x-ms-client-request-id": "ca2a5993df58fbb502686c06bee05400", + "x-ms-correlation-request-id": "94fe0f04-ee74-4fc4-9374-aa9b552f15ca", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "7687a49d-a0a2-4c59-a050-5a013527ca05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063020Z:94fe0f04-ee74-4fc4-9374-aa9b552f15ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0f8ca0bca83d8a89d390e2984d3c50d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ebfd0b5-62bd-440c-9fe8-ed31763bb88f", + "x-ms-client-request-id": "b0f8ca0bca83d8a89d390e2984d3c50d", + "x-ms-correlation-request-id": "cc1db9a5-8178-4d3d-92d1-4c9fe7de5c30", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "247908a5-fd64-48d3-bc80-2a8b155d2363", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063021Z:cc1db9a5-8178-4d3d-92d1-4c9fe7de5c30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "133c219680e146471fcc0a22e3cb1006", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17f5fba7-596a-45bb-a5eb-3f365e775f59", + "x-ms-client-request-id": "133c219680e146471fcc0a22e3cb1006", + "x-ms-correlation-request-id": "78a9a53a-1d5d-4e30-ab4a-f0d18dfc39ac", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "fbf671f2-6aac-4e36-b2dd-6708e6a26691", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063023Z:78a9a53a-1d5d-4e30-ab4a-f0d18dfc39ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e60c7c7ddcbdc97ab1522d1fd08b772f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da943589-5139-400f-adb9-3b80d61c1191", + "x-ms-client-request-id": "e60c7c7ddcbdc97ab1522d1fd08b772f", + "x-ms-correlation-request-id": "9204d46b-e792-481e-964e-d322994c994a", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "cce1ba42-2099-4072-bbb3-9e50effa4e19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063024Z:9204d46b-e792-481e-964e-d322994c994a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c6f5ea241a38a1e83b191b7bf85f4d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4fe664b3-5137-4810-9f76-2b2f8093d9ea", + "x-ms-client-request-id": "9c6f5ea241a38a1e83b191b7bf85f4d1", + "x-ms-correlation-request-id": "eb908ad5-40e7-4c8a-920c-87ef6071cffe", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "4852e14d-ef73-4346-9f98-cc4f74de7d76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063025Z:eb908ad5-40e7-4c8a-920c-87ef6071cffe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07ac0828dec6ba50a673628f53277593", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0a60f07-7bea-4a4f-8002-fd5cc2efa7dc", + "x-ms-client-request-id": "07ac0828dec6ba50a673628f53277593", + "x-ms-correlation-request-id": "916987de-3f41-4f75-a8ac-ef21fdb74c60", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "9432d2f5-1344-4616-a2c6-3a37c8f54719", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063026Z:916987de-3f41-4f75-a8ac-ef21fdb74c60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "847fdb54745c3b625d82630b4bc2092b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f38c3b10-05de-4be3-841d-2593b677bc7f", + "x-ms-client-request-id": "847fdb54745c3b625d82630b4bc2092b", + "x-ms-correlation-request-id": "53432c71-1865-4d18-8dc5-fd0c6c435077", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "d77d17ae-1e36-4a8f-8e9b-62ce6b0dfd1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063028Z:53432c71-1865-4d18-8dc5-fd0c6c435077" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8f75b5d6fdfc4680eb5f530df8e365b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76f011b2-07b8-49a0-95ad-4a4de891f6cc", + "x-ms-client-request-id": "c8f75b5d6fdfc4680eb5f530df8e365b", + "x-ms-correlation-request-id": "bc1db2a3-92b9-4223-9a78-9b0b2f3f6c0a", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "88ba2bc6-01bd-4dcb-a9f3-edd082140072", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063029Z:bc1db2a3-92b9-4223-9a78-9b0b2f3f6c0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e462fd3b6f06b475a570aa447b446fe3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80451ed9-38e8-4b10-871d-af69d72c452c", + "x-ms-client-request-id": "e462fd3b6f06b475a570aa447b446fe3", + "x-ms-correlation-request-id": "a675b601-5bfa-4291-8699-2c878971b787", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "186c52e4-c1b1-4020-86b4-1b8456b68fb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063030Z:a675b601-5bfa-4291-8699-2c878971b787" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7323669ac30e5b372bb76a67e325cce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8f91e35-cae2-4851-b999-6873fe3a9d8d", + "x-ms-client-request-id": "f7323669ac30e5b372bb76a67e325cce", + "x-ms-correlation-request-id": "15a559f0-d960-4680-89a7-e12b088152d5", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "2e18ea47-6ea5-4f13-b67c-f6cec040b67d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063032Z:15a559f0-d960-4680-89a7-e12b088152d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dd0074b2460ed25e642236fc52448c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa8c80f1-6d4c-46de-a16e-b8918f63739c", + "x-ms-client-request-id": "4dd0074b2460ed25e642236fc52448c9", + "x-ms-correlation-request-id": "9fd5cd0a-d1ed-4da4-8ea3-8d366bca4684", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "1fa85130-f65d-4a36-a150-9419fca67fdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063033Z:9fd5cd0a-d1ed-4da4-8ea3-8d366bca4684" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8c611463f5c8f2a497d724af9ce3572", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7debcbf0-fa3b-48f0-9c1f-5ccc6981b4d1", + "x-ms-client-request-id": "a8c611463f5c8f2a497d724af9ce3572", + "x-ms-correlation-request-id": "8cd05a7b-73d9-4d93-ae0b-b071bbf6d3ff", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "50b1c4fd-b4ac-4caa-ada8-2efead1bb92d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063034Z:8cd05a7b-73d9-4d93-ae0b-b071bbf6d3ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74f9db1421744583114411ed89441f4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c51c0de9-468a-4446-a164-17c0dafbcd7e", + "x-ms-client-request-id": "74f9db1421744583114411ed89441f4e", + "x-ms-correlation-request-id": "a3c8d4e8-72dc-4aa4-b44c-97011366d8e7", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "3f5218dd-8566-4b19-96bb-374dfaac482a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063035Z:a3c8d4e8-72dc-4aa4-b44c-97011366d8e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c60ad73b36c0c72dc4104e2b2dbf418", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "62ced74d-e7d4-420a-bbf7-f48e3072c9de", + "x-ms-client-request-id": "6c60ad73b36c0c72dc4104e2b2dbf418", + "x-ms-correlation-request-id": "5a1843c2-7bba-4547-8cc2-a895c4beff30", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "ced50418-d762-48b3-af6f-b32915385024", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063037Z:5a1843c2-7bba-4547-8cc2-a895c4beff30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea5bb10dd42a25548d8197172e3c0504", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65d1e588-43b6-4803-9992-dd4b8df11c8a", + "x-ms-client-request-id": "ea5bb10dd42a25548d8197172e3c0504", + "x-ms-correlation-request-id": "4b50a8a4-f30a-4d00-a471-775277303ad3", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "b0f305bd-7cfc-47d0-a42e-ab675ac87b36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063038Z:4b50a8a4-f30a-4d00-a471-775277303ad3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bd6235dc96e600668ed97331ca19236", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a89eafa-45de-44cc-aa2b-3fe370e39108", + "x-ms-client-request-id": "4bd6235dc96e600668ed97331ca19236", + "x-ms-correlation-request-id": "b13e2150-1f38-4c99-8d6b-561eff8615ed", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "88edde6e-5d40-4750-8351-c3b101e6c433", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063039Z:b13e2150-1f38-4c99-8d6b-561eff8615ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8e0f95035e99f23583bdeea1c5add9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20785318-3d1e-4496-adb0-16721ec87bc6", + "x-ms-client-request-id": "d8e0f95035e99f23583bdeea1c5add9f", + "x-ms-correlation-request-id": "23c02393-5951-403d-9b73-ad20c8737146", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "d3a053ee-78a0-433d-bfce-1094816c2cdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063041Z:23c02393-5951-403d-9b73-ad20c8737146" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f84ff3ba80443a9aafa813d3c2108ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dab448af-6866-428c-b07c-95a6f1d79798", + "x-ms-client-request-id": "8f84ff3ba80443a9aafa813d3c2108ec", + "x-ms-correlation-request-id": "f07773b3-b128-4733-8cb2-56b7a2ef7d8e", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "73995a20-9e8d-48bd-8ec0-bcb4cc8cf82e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063042Z:f07773b3-b128-4733-8cb2-56b7a2ef7d8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35c660ee2d5c281bff37f232ea1b430d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cbbf2b55-f022-4acc-bf84-5ae48cfd7de1", + "x-ms-client-request-id": "35c660ee2d5c281bff37f232ea1b430d", + "x-ms-correlation-request-id": "4fcab9e4-9976-40aa-8c99-da9d4cc14046", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "088e1c2b-5277-4efa-bd1a-95ac5ba4aeb0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063043Z:4fcab9e4-9976-40aa-8c99-da9d4cc14046" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1df8f70f031ca7324f9c2deeb3e66237", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5917e02-92fe-4a8f-aaa1-83f9a4c21ebd", + "x-ms-client-request-id": "1df8f70f031ca7324f9c2deeb3e66237", + "x-ms-correlation-request-id": "743746aa-98f1-4784-9788-18d74150c44a", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "14df1ba4-4866-42d1-8eac-8ab8d7609dd8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063044Z:743746aa-98f1-4784-9788-18d74150c44a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbfbf233a8940d43e45c8fccb676598e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c0aae4b-48fa-4a54-9625-77cf135f36ba", + "x-ms-client-request-id": "bbfbf233a8940d43e45c8fccb676598e", + "x-ms-correlation-request-id": "e7a06ae2-07ae-4fa1-8385-0f8af8fc1ecc", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "7ed5ef7d-c136-436c-b6f8-395ef154a776", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063046Z:e7a06ae2-07ae-4fa1-8385-0f8af8fc1ecc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "442d74b7ea28ebcf2e1ee5bf002c7419", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "231d56e6-2ea2-444d-8a44-bb43cff40c56", + "x-ms-client-request-id": "442d74b7ea28ebcf2e1ee5bf002c7419", + "x-ms-correlation-request-id": "344712e6-0f80-46b0-84ba-13423e8715bb", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "996e4a0f-308d-4dc9-aaec-169aa1ffbc80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063047Z:344712e6-0f80-46b0-84ba-13423e8715bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7ffbbd488206679b4eb39c07465f1d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06f688dc-4797-4143-a148-8a656b8b5a65", + "x-ms-client-request-id": "f7ffbbd488206679b4eb39c07465f1d8", + "x-ms-correlation-request-id": "729b636b-42e0-44d3-84d0-2a4693f81ffa", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "0d3aa554-46b7-4b6d-88f4-3f34e30d2ef7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063048Z:729b636b-42e0-44d3-84d0-2a4693f81ffa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f379f421eb9480f23108d75c2840cb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc5deb9b-ebb1-457d-8de4-394534b67214", + "x-ms-client-request-id": "3f379f421eb9480f23108d75c2840cb7", + "x-ms-correlation-request-id": "db7fe7e5-e21d-45d4-8afd-188ec5f09159", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "7b7759f3-e4ac-46bc-b5c3-da4d5915abb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063050Z:db7fe7e5-e21d-45d4-8afd-188ec5f09159" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "faf775e862772e6efac6903db10e77c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "629f2867-0928-45ea-905f-571c043be051", + "x-ms-client-request-id": "faf775e862772e6efac6903db10e77c8", + "x-ms-correlation-request-id": "36cc9d07-4d82-4dda-a72e-c55ba46282f8", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "9baec999-1112-4b6a-a876-55a35c112022", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063051Z:36cc9d07-4d82-4dda-a72e-c55ba46282f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "607c0d2d34f4b660acb7d310fb04a330", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c73c775-8462-4f02-8719-c74147574fac", + "x-ms-client-request-id": "607c0d2d34f4b660acb7d310fb04a330", + "x-ms-correlation-request-id": "7798e8f0-5a6b-4247-b8f5-db08d2682ada", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "ea83af77-0e58-48c5-9acd-c0efd743baa0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063052Z:7798e8f0-5a6b-4247-b8f5-db08d2682ada" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fed781def66ee061310845f28dd19715", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8dd46da3-7fa0-4888-bdbf-4ce758733607", + "x-ms-client-request-id": "fed781def66ee061310845f28dd19715", + "x-ms-correlation-request-id": "0d650a42-86dd-4aaa-92bc-7616c7b62ce4", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "4a97c73d-8ac1-4203-b812-bfb980b32874", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063053Z:0d650a42-86dd-4aaa-92bc-7616c7b62ce4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b547c498ac07b4c215404ebf8f5d33f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98cc986a-b331-4ea8-9030-4978ba69cfd6", + "x-ms-client-request-id": "b547c498ac07b4c215404ebf8f5d33f6", + "x-ms-correlation-request-id": "02d7e0a4-dffb-4aff-bf6d-9a62c4251ad1", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "d4340ef2-0a8a-4dbf-b2eb-ba0217d836a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063055Z:02d7e0a4-dffb-4aff-bf6d-9a62c4251ad1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f5e5f237936365aac9c2febee6d28da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57c707b1-75f4-4603-ae6c-f2531571a3af", + "x-ms-client-request-id": "2f5e5f237936365aac9c2febee6d28da", + "x-ms-correlation-request-id": "d67ded59-470c-4cc6-826e-cd26d571d269", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "6d5fc92e-0bf4-490c-84f1-1cf814257e6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063056Z:d67ded59-470c-4cc6-826e-cd26d571d269" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3677be20eebc3228bf23e82ea7a151d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a81d54a1-8d00-470e-9801-3ebeacfdace3", + "x-ms-client-request-id": "3677be20eebc3228bf23e82ea7a151d3", + "x-ms-correlation-request-id": "4af83fc8-2a7e-46bd-bb9a-bdcb591ed14c", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "664a72c7-7dff-4bbd-a797-07facb2173da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063057Z:4af83fc8-2a7e-46bd-bb9a-bdcb591ed14c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ecf4fd568721ede6a11086b7cd6c5a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "228371da-30c1-473d-a272-2d859b174561", + "x-ms-client-request-id": "2ecf4fd568721ede6a11086b7cd6c5a8", + "x-ms-correlation-request-id": "1eeffdbf-8edc-40e8-a64a-68d5c572467f", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "4265db0d-045c-4c72-a640-ab7582304c3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063058Z:1eeffdbf-8edc-40e8-a64a-68d5c572467f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d09f7417fde63439362c7012912c8e0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:30:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "42be0bfa-5eed-4815-a462-4510b9c5e30e", + "x-ms-client-request-id": "d09f7417fde63439362c7012912c8e0a", + "x-ms-correlation-request-id": "8e6176e2-304c-4d72-b18d-633162e14f16", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "1f9fb913-b6f3-44ae-8e58-0b823f903270", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063100Z:8e6176e2-304c-4d72-b18d-633162e14f16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f165c4bfa9eb867e059ccaae5bdb5e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f8858ab-9d5c-47a4-ab0a-6daad46c41f6", + "x-ms-client-request-id": "9f165c4bfa9eb867e059ccaae5bdb5e8", + "x-ms-correlation-request-id": "b876c91b-b1a0-4092-b599-deb2625a07d9", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "91bb7422-115c-41e8-befa-8f1205984a72", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063101Z:b876c91b-b1a0-4092-b599-deb2625a07d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3316405e8002d7ed159af746f7cb8d3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "699bc3cf-9c9c-4658-a35b-2d36d4af88c9", + "x-ms-client-request-id": "3316405e8002d7ed159af746f7cb8d3e", + "x-ms-correlation-request-id": "271d4335-0a5e-4c8e-98fd-53df7edf5bd8", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "1fd36997-5af6-4fae-9dab-23dd65d0035c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063102Z:271d4335-0a5e-4c8e-98fd-53df7edf5bd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2020fd8325c01c090de7f08c318e4e79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "239ed247-a157-40b2-8c19-480b8b5f3334", + "x-ms-client-request-id": "2020fd8325c01c090de7f08c318e4e79", + "x-ms-correlation-request-id": "f8f2b44e-7efb-4145-9718-776142d88e51", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "2c3e920d-e7a1-4b4c-a7c4-24c3a71ad486", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063104Z:f8f2b44e-7efb-4145-9718-776142d88e51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51b487765b15ca086e3e8a040320c014", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d35ef4c4-c614-4184-894d-e4bce12d8987", + "x-ms-client-request-id": "51b487765b15ca086e3e8a040320c014", + "x-ms-correlation-request-id": "0055b8cd-a4d9-48b4-b64c-dfaa12dc0eb3", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "e784814a-f86e-4441-95a9-c080276f0a23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063105Z:0055b8cd-a4d9-48b4-b64c-dfaa12dc0eb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7278dcb959d392836f9261a9060a686", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9622e8e8-eea9-47e0-a051-d13d652b61bb", + "x-ms-client-request-id": "e7278dcb959d392836f9261a9060a686", + "x-ms-correlation-request-id": "c086c6e4-7a0b-4925-981f-dceddc8a8cb5", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "4a220fa1-d459-4f85-b4c0-823028da27ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063106Z:c086c6e4-7a0b-4925-981f-dceddc8a8cb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70cf7d4b3c172828f555b1819b0519ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6226a90c-480a-4580-9cc9-1636c856f3d5", + "x-ms-client-request-id": "70cf7d4b3c172828f555b1819b0519ec", + "x-ms-correlation-request-id": "ad221a71-dfc4-460a-b80e-bfca5bd0df02", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "75dbce01-70a5-4a50-84fa-3293f7b4df4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063108Z:ad221a71-dfc4-460a-b80e-bfca5bd0df02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3c0db276767e1dc5f7b1a1b34ed3a0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5af20c0-da82-4669-bc00-b55245fbe0d5", + "x-ms-client-request-id": "a3c0db276767e1dc5f7b1a1b34ed3a0e", + "x-ms-correlation-request-id": "99602c25-e65e-4b6d-8f24-2286782b0703", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "031d0022-967e-42a4-851a-9e0f35708f6f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063109Z:99602c25-e65e-4b6d-8f24-2286782b0703" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85b8039750518ffd64fff247e4a69d31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77937ba2-b243-4351-894b-1317e29aa66b", + "x-ms-client-request-id": "85b8039750518ffd64fff247e4a69d31", + "x-ms-correlation-request-id": "31a039b7-37df-4330-bfa9-3b8add595872", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "0847d9bf-1a87-4841-9f2a-dcc92064c076", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063111Z:31a039b7-37df-4330-bfa9-3b8add595872" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4f339e0039fe41fa1ee109c210cf307", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5411c060-6299-4b98-9e23-0e70fcf284a4", + "x-ms-client-request-id": "b4f339e0039fe41fa1ee109c210cf307", + "x-ms-correlation-request-id": "2b050873-0b53-4ddd-9fdd-ec2b198f7d59", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "df65868f-fb8a-461d-ace5-c60dfaf4c0c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063113Z:2b050873-0b53-4ddd-9fdd-ec2b198f7d59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98e9a31b934cd79bde313e677494fdb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e0c5a03-562c-46ff-b496-c5be097a99dd", + "x-ms-client-request-id": "98e9a31b934cd79bde313e677494fdb8", + "x-ms-correlation-request-id": "c19ac9e0-3e79-4e2a-bb3a-1f6a29d35f49", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "581ffe35-b37d-4e20-9648-a0bcd46924a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063114Z:c19ac9e0-3e79-4e2a-bb3a-1f6a29d35f49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb3be8dd85fa946ee3d4e3623f616d57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06b330a4-2e4b-49df-87a4-215bee06e7d1", + "x-ms-client-request-id": "fb3be8dd85fa946ee3d4e3623f616d57", + "x-ms-correlation-request-id": "6cb1c9fe-92a9-427c-abdb-b489ca2bbe14", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "682c8314-4ccd-4c4e-a2e3-6a3155219af7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063115Z:6cb1c9fe-92a9-427c-abdb-b489ca2bbe14" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "402bea0c05bd4ce59e1cd66ec5b86f0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66136a28-1212-4edd-83c0-2c3c3faef7e7", + "x-ms-client-request-id": "402bea0c05bd4ce59e1cd66ec5b86f0d", + "x-ms-correlation-request-id": "913943e5-4b73-49cf-ae81-98b799b89a36", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "29ce8a93-8572-4a53-8dd5-6f42417e4595", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063116Z:913943e5-4b73-49cf-ae81-98b799b89a36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39be57f1f8d1960d3454b478af38977c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22a48ab7-19cf-4bae-a6e5-b91a9077e2e4", + "x-ms-client-request-id": "39be57f1f8d1960d3454b478af38977c", + "x-ms-correlation-request-id": "7e1fbdc5-c54c-4c80-8561-dd716c65fd87", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "4481027e-22c8-4c4f-baff-da6b8d789d0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063118Z:7e1fbdc5-c54c-4c80-8561-dd716c65fd87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "895be6c3bc69d7fb02ef5cddae00cf2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e20348dc-f773-4556-9db5-7b6fdd7a3469", + "x-ms-client-request-id": "895be6c3bc69d7fb02ef5cddae00cf2b", + "x-ms-correlation-request-id": "7d52480b-e729-48a7-a51b-484e0bcedfb8", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "f8ce29cd-90bf-4f7d-8ed0-5e731e16083d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063119Z:7d52480b-e729-48a7-a51b-484e0bcedfb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e870d66434a21486dd940c68516d9c66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc381528-cb54-4bd5-ad3f-d86b9effdf82", + "x-ms-client-request-id": "e870d66434a21486dd940c68516d9c66", + "x-ms-correlation-request-id": "95c33ed9-e4ab-44ea-ba5a-c0a1b2680909", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "7e8d08b1-14aa-4328-ae60-ec1e59bf2e49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063120Z:95c33ed9-e4ab-44ea-ba5a-c0a1b2680909" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "deaa5a85e55d35a35be736e29b2fe733", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eae4b247-832c-46ad-a443-ec45a7557fa4", + "x-ms-client-request-id": "deaa5a85e55d35a35be736e29b2fe733", + "x-ms-correlation-request-id": "d146e71f-d02b-4fc8-b82f-8234640ed6d7", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "cdc91f7e-5141-4dfa-85e0-d57a0a8c7606", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063121Z:d146e71f-d02b-4fc8-b82f-8234640ed6d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9138985aec78fd96046acd4af928695", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9a8a5ec-b0e9-4d71-ae29-e6590d4376a7", + "x-ms-client-request-id": "d9138985aec78fd96046acd4af928695", + "x-ms-correlation-request-id": "6d450cea-1f97-48c5-ac30-2b51a8f3ed66", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "e823526e-c578-4966-9838-e4f933cf4260", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063123Z:6d450cea-1f97-48c5-ac30-2b51a8f3ed66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5458f652f0557fcd323b8cbbfda478ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddf01ee2-9327-4830-ae51-c5da5b7547cf", + "x-ms-client-request-id": "5458f652f0557fcd323b8cbbfda478ae", + "x-ms-correlation-request-id": "b04ec297-fb13-4725-820c-2a39aee9b996", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "4e970de8-fc6d-42b1-8931-52a025f4b650", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063124Z:b04ec297-fb13-4725-820c-2a39aee9b996" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7e2d8acc35ad79e801b7e1639cf85c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7790e291-c544-46ad-bc59-974f8123a2c7", + "x-ms-client-request-id": "c7e2d8acc35ad79e801b7e1639cf85c9", + "x-ms-correlation-request-id": "a214c3ac-adc5-43ec-a3e8-39e5d8e5f7d7", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "c0c81b79-d680-4af0-b2ca-7290ed363cab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063125Z:a214c3ac-adc5-43ec-a3e8-39e5d8e5f7d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a58fa16093d795debb94a68c211e91bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f74a449c-811e-4fae-902d-456185dcc47d", + "x-ms-client-request-id": "a58fa16093d795debb94a68c211e91bb", + "x-ms-correlation-request-id": "526e968d-09a0-435a-91fa-066532e2b672", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "461b3206-4a41-45ff-a8d9-76ac8e5f3a44", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063127Z:526e968d-09a0-435a-91fa-066532e2b672" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d727fecebeaf8f3b5781d43a71b74663", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2eb411e6-33c1-4f67-a841-af3edf9cf180", + "x-ms-client-request-id": "d727fecebeaf8f3b5781d43a71b74663", + "x-ms-correlation-request-id": "e7064b50-b7bb-47b3-9440-13a8bc3e159e", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "956933cf-94e0-4289-99a3-c19267fb75cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063128Z:e7064b50-b7bb-47b3-9440-13a8bc3e159e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c5bc3b6d21419d6fa4d0cc51c12b561", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b08cb89-eeab-4d59-bf47-38d24da75cad", + "x-ms-client-request-id": "5c5bc3b6d21419d6fa4d0cc51c12b561", + "x-ms-correlation-request-id": "7d768cbb-cd48-4e08-8f33-a3bfd36d538d", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "63828561-6fff-489b-86f6-c841d17a1da6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063129Z:7d768cbb-cd48-4e08-8f33-a3bfd36d538d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a47c289ada7a11966004e55bea32303", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ccb4258-b983-4c55-a52f-2882e1cc928d", + "x-ms-client-request-id": "3a47c289ada7a11966004e55bea32303", + "x-ms-correlation-request-id": "e1c075d7-c3f0-4f63-8037-cf4022287e5c", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "94d48025-b571-444f-94bc-b25cb382c203", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063131Z:e1c075d7-c3f0-4f63-8037-cf4022287e5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ed5434e35c3fca7270ddd61b2757245", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb58bea9-dce8-4cdc-96d9-e421935745d7", + "x-ms-client-request-id": "5ed5434e35c3fca7270ddd61b2757245", + "x-ms-correlation-request-id": "d27ae33e-4582-4195-8fbf-236687555dad", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "f85b4849-c6cc-4b46-929d-3df13b99c313", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063132Z:d27ae33e-4582-4195-8fbf-236687555dad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afb072cb0b6f08bba9b9f61383805b56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a09c4a6f-2036-4ee7-9ed8-df9cac6ce55e", + "x-ms-client-request-id": "afb072cb0b6f08bba9b9f61383805b56", + "x-ms-correlation-request-id": "02b36bbb-d396-4728-85c2-ba723f49acd9", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "4de4caf9-b963-4c77-90c8-ec6b8ead3cce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063133Z:02b36bbb-d396-4728-85c2-ba723f49acd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d977082a573c549e1a4b139ad0b7eff0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "811def9d-d96a-4b93-8f03-d9b894878d1d", + "x-ms-client-request-id": "d977082a573c549e1a4b139ad0b7eff0", + "x-ms-correlation-request-id": "eab71fcb-d93a-4e36-98a3-5f34c6feb43d", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "eaa93fc4-7c89-4b76-b42d-bb8208a02435", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063134Z:eab71fcb-d93a-4e36-98a3-5f34c6feb43d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b8a098e74f3439487ccb40a3f9478a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f3efc88-68a5-4842-aa91-000a6caa8507", + "x-ms-client-request-id": "4b8a098e74f3439487ccb40a3f9478a6", + "x-ms-correlation-request-id": "0babc480-b861-472c-8ebd-92945cf80e07", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "cdfca7e2-9882-48fb-b0fb-9c29fabf2dc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063136Z:0babc480-b861-472c-8ebd-92945cf80e07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a93787b298fd7408d45c9424f72138f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f41ddbb-1a81-4f68-aba1-f4a4a1590cda", + "x-ms-client-request-id": "a93787b298fd7408d45c9424f72138f1", + "x-ms-correlation-request-id": "b7a05a6c-b670-461f-8366-669d925fa96b", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "a7262858-2186-4d47-90b3-f38556fce71d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063137Z:b7a05a6c-b670-461f-8366-669d925fa96b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a8405c90ff6b56274345270a2941486", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b26a22c3-c3b6-41a5-a7a2-667f8fdbcc7d", + "x-ms-client-request-id": "7a8405c90ff6b56274345270a2941486", + "x-ms-correlation-request-id": "76be0e38-bc0f-4a63-b3b2-807128357e94", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "381a350c-7820-4ec2-9833-90e2d8a59578", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063138Z:76be0e38-bc0f-4a63-b3b2-807128357e94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49e76dd24580f6f301157797e06f4b65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e745898-9095-47ec-9bb6-6c018c35fe4c", + "x-ms-client-request-id": "49e76dd24580f6f301157797e06f4b65", + "x-ms-correlation-request-id": "15c18d61-d9e5-4979-865e-b13cb5207098", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "2e333792-d96b-49f6-93e2-c66a4e7f7541", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063139Z:15c18d61-d9e5-4979-865e-b13cb5207098" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3940c294fd0fa3af248135c84598d23f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "814b7213-7cf5-48c2-9302-a80335466b39", + "x-ms-client-request-id": "3940c294fd0fa3af248135c84598d23f", + "x-ms-correlation-request-id": "8be711e8-aa66-4c13-8386-0f8aa03e2d99", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "e9b2f0d5-1e5c-42ac-8acc-5a7acf9e27d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063141Z:8be711e8-aa66-4c13-8386-0f8aa03e2d99" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a510d47ef398471128e79e197cbd504", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52d73faa-9849-483c-a3d2-91ea9ac46834", + "x-ms-client-request-id": "8a510d47ef398471128e79e197cbd504", + "x-ms-correlation-request-id": "d502a9b5-1e44-4508-9653-3d8953d97472", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "ee12dd00-57c2-4a8d-94f4-8c8f9101cb69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063142Z:d502a9b5-1e44-4508-9653-3d8953d97472" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfdbece9da54d476bd4424fe102ab069", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c37bf006-757f-4ff2-b4bd-66776f9c0347", + "x-ms-client-request-id": "dfdbece9da54d476bd4424fe102ab069", + "x-ms-correlation-request-id": "eed27f90-0f0f-4e35-9b24-e8e1163d08f9", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "2bc47939-5774-4827-81b5-892ed0e1dbf2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063143Z:eed27f90-0f0f-4e35-9b24-e8e1163d08f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2503742c11ea42b50bb278184cd0b59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5a5f20a-7c7d-49f0-9735-318dd7c359d2", + "x-ms-client-request-id": "d2503742c11ea42b50bb278184cd0b59", + "x-ms-correlation-request-id": "068e0712-9872-4175-bf72-dac99f31f96c", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "ceeb40b9-6e07-476a-adb0-bcd70657c780", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063145Z:068e0712-9872-4175-bf72-dac99f31f96c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59df30abf2bc6ceb977cccf5ca7374e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9524b6c-fccf-47a3-b392-e81e750bceef", + "x-ms-client-request-id": "59df30abf2bc6ceb977cccf5ca7374e7", + "x-ms-correlation-request-id": "4c08713b-d30f-4973-a3a8-7a0ecf6db0c0", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "31ae8e06-8b54-4d39-aa48-da0f2100e7bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063146Z:4c08713b-d30f-4973-a3a8-7a0ecf6db0c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "609e10de037b28e6c0378f98b3f450ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "740e7325-10c8-4ded-86d2-15b014a79272", + "x-ms-client-request-id": "609e10de037b28e6c0378f98b3f450ef", + "x-ms-correlation-request-id": "0e8a15f9-9c77-4ee8-bee5-556a1f3e916e", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "674ca6c4-3a0c-49c6-9fc9-efeb27d23644", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063147Z:0e8a15f9-9c77-4ee8-bee5-556a1f3e916e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df52cb39564b50ad4be33ba1f436d9dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c130267c-8819-4b2a-9f3f-da50762e3424", + "x-ms-client-request-id": "df52cb39564b50ad4be33ba1f436d9dd", + "x-ms-correlation-request-id": "9b7c498b-85ea-46a9-ab10-4331acffb783", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "10ce43cb-4509-490a-9506-82f4ffd2c770", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063148Z:9b7c498b-85ea-46a9-ab10-4331acffb783" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74a34047aa2ea8dd49b798846353b9a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "835bbcdb-8eae-48c0-bea9-2c3b992e2603", + "x-ms-client-request-id": "74a34047aa2ea8dd49b798846353b9a2", + "x-ms-correlation-request-id": "bf4571fe-a060-4d17-befb-c79220443036", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "5a132854-9b20-498a-a0be-5e901a80e2d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063150Z:bf4571fe-a060-4d17-befb-c79220443036" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffbcdc2c9421879c634e1497c844338a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7fb5b4ba-88f2-4081-8893-c279c73d595f", + "x-ms-client-request-id": "ffbcdc2c9421879c634e1497c844338a", + "x-ms-correlation-request-id": "bfe84b5a-25c4-4a33-9dee-5382ed3bd835", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "7c379077-67b1-4477-b754-3cd8d12c6e5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063151Z:bfe84b5a-25c4-4a33-9dee-5382ed3bd835" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7351b15ddb518ec1eda99593be28ecf8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b506098-df52-41b3-84d5-d6cc3055d339", + "x-ms-client-request-id": "7351b15ddb518ec1eda99593be28ecf8", + "x-ms-correlation-request-id": "d8c124d2-abd8-4e53-8cf0-bc079a01679c", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "b90cf489-8d1d-4aef-8355-89ca62135467", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063152Z:d8c124d2-abd8-4e53-8cf0-bc079a01679c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1775982ada79b2bba31c11e09646df05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f264ae23-50a6-48c1-83bf-da73567e5a54", + "x-ms-client-request-id": "1775982ada79b2bba31c11e09646df05", + "x-ms-correlation-request-id": "ee87ca35-2caf-49ea-966b-fd58aa781613", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "1fbf473a-0dc1-42ee-84e7-2a07cbd5d7a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063153Z:ee87ca35-2caf-49ea-966b-fd58aa781613" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1270e83460150501b2e1177ff08c93a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6b1c194-571d-4d5b-a201-f4b2f5aaab34", + "x-ms-client-request-id": "b1270e83460150501b2e1177ff08c93a", + "x-ms-correlation-request-id": "9d381c91-484f-466f-9873-680f1aafe1f1", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "d27c8cc2-ea52-497e-8195-bf243b2c1122", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063155Z:9d381c91-484f-466f-9873-680f1aafe1f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f6c1b621bce8210f59ecf35cae0f7a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a92d8454-ef87-4521-af8b-f90071de5a19", + "x-ms-client-request-id": "2f6c1b621bce8210f59ecf35cae0f7a7", + "x-ms-correlation-request-id": "e593044b-8e88-46a8-a5b0-d504a2ee49fd", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "9f395bd3-ff40-4793-ae46-af8787886e9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063156Z:e593044b-8e88-46a8-a5b0-d504a2ee49fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af0f90c93b00e4f64825fc4bc944b39a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "352d8047-882b-441a-ba10-d673e6033f44", + "x-ms-client-request-id": "af0f90c93b00e4f64825fc4bc944b39a", + "x-ms-correlation-request-id": "957ce85a-5dd0-4f07-a2fa-db798731b9fe", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "830f8065-95a0-4239-875b-3ead641c5dce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063157Z:957ce85a-5dd0-4f07-a2fa-db798731b9fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a7ed653b0d96836fea5bb63761b853a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:31:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63a43ddf-a313-47f5-8303-8ae213978ffa", + "x-ms-client-request-id": "7a7ed653b0d96836fea5bb63761b853a", + "x-ms-correlation-request-id": "103f975e-ccbe-43a0-b6f0-5d27da591254", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "7126c483-5ab2-4f8e-87e0-95f8ed17cc9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063159Z:103f975e-ccbe-43a0-b6f0-5d27da591254" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ead693619f8263a2488e7a91fc4b9b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d2d1346-b43d-4226-b972-337758d04f6e", + "x-ms-client-request-id": "6ead693619f8263a2488e7a91fc4b9b1", + "x-ms-correlation-request-id": "941d636b-df01-46ff-8a0e-f98e45104630", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "94e5aa11-0aa1-4786-a473-4f4f00b2e9df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063200Z:941d636b-df01-46ff-8a0e-f98e45104630" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3e234eb7d6219ce59a7b15b7f936e2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81cff832-e67a-4983-8d84-268cf01a29e6", + "x-ms-client-request-id": "f3e234eb7d6219ce59a7b15b7f936e2c", + "x-ms-correlation-request-id": "f9dd778d-4885-406b-b472-99885e4ba9b6", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "d4205ad2-c98b-4fdc-b921-b6c8ad1ae643", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063202Z:f9dd778d-4885-406b-b472-99885e4ba9b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f15c1a0449739a19c575551c88d4839", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6adacf89-8408-4dfb-b4db-b49cb99aa900", + "x-ms-client-request-id": "5f15c1a0449739a19c575551c88d4839", + "x-ms-correlation-request-id": "40376be1-b509-4b49-b0e4-d53f8fc294f6", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "720fa7d2-fea8-485c-a85d-514b5feec326", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063203Z:40376be1-b509-4b49-b0e4-d53f8fc294f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41780aec9139b8d79b93145167dfa791", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92518710-7bfb-4c34-bc75-1b150afae9ab", + "x-ms-client-request-id": "41780aec9139b8d79b93145167dfa791", + "x-ms-correlation-request-id": "90bd4fca-98b2-4b56-a8f1-53abf198e99e", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "599587c6-d662-4c81-a1ca-50bd843f14f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063204Z:90bd4fca-98b2-4b56-a8f1-53abf198e99e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e08ba1a59aea61a92a8570b277d51cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6d063e8-f10e-4bc5-a2bf-f13fae0df97e", + "x-ms-client-request-id": "5e08ba1a59aea61a92a8570b277d51cc", + "x-ms-correlation-request-id": "a1450285-47cb-4ec2-974d-c2fab9b14ab4", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "61becbfc-5d34-41e3-8ab8-cebd83019a87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063206Z:a1450285-47cb-4ec2-974d-c2fab9b14ab4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "756f775f2c1b0ef3e95cc4032f50d2bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49857bea-7c25-4d5d-978c-785853320163", + "x-ms-client-request-id": "756f775f2c1b0ef3e95cc4032f50d2bc", + "x-ms-correlation-request-id": "29cc66a9-c2c4-4ef1-a091-30e8fb249a63", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "28e24f04-1876-41c6-9f5e-876c283615c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063207Z:29cc66a9-c2c4-4ef1-a091-30e8fb249a63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d36c4afe984928befd1ae903acb911e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1bac679e-03ef-4dbd-8e35-3ec23ea07f61", + "x-ms-client-request-id": "0d36c4afe984928befd1ae903acb911e", + "x-ms-correlation-request-id": "749fea4f-dd45-4162-abe9-5f15e831fb3f", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "45aa6212-5a6b-4bcf-81e8-4722369c1bf2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063208Z:749fea4f-dd45-4162-abe9-5f15e831fb3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eff148423270ed76c7fa755195167642", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95d19d0b-104f-462c-a6ac-2e914a065321", + "x-ms-client-request-id": "eff148423270ed76c7fa755195167642", + "x-ms-correlation-request-id": "a0360a42-6c1c-494a-9b14-42424bb88bd4", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "f3409a9d-2c0d-4cf5-b8b6-3c985473d6d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063210Z:a0360a42-6c1c-494a-9b14-42424bb88bd4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "635c9ad643467547ecdc85497d62d41d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49d0c1cb-5b07-476d-a444-12f93810f587", + "x-ms-client-request-id": "635c9ad643467547ecdc85497d62d41d", + "x-ms-correlation-request-id": "af861b77-aff2-4d07-b92b-21aa838f909a", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "219d035c-0cb4-4fe4-98c6-57bcda0788b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063211Z:af861b77-aff2-4d07-b92b-21aa838f909a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6c0a6cbe25f7d4c4d4946897439fdd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3e69bd8-490f-4d2e-9e67-627ab12a0c9c", + "x-ms-client-request-id": "e6c0a6cbe25f7d4c4d4946897439fdd8", + "x-ms-correlation-request-id": "ce4d9cfb-ce37-4b1e-8bed-a3b567c89f32", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "fae441c6-8091-4618-a643-17ac34d1edff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063212Z:ce4d9cfb-ce37-4b1e-8bed-a3b567c89f32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fba6c5b2d6fffd7007c0393ad2d6f64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a0a4989-01e1-4bf0-8972-9e4bb941fe42", + "x-ms-client-request-id": "9fba6c5b2d6fffd7007c0393ad2d6f64", + "x-ms-correlation-request-id": "6746aa4c-f487-492b-9cac-ddfb9a525ff1", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "1ed5d1e1-42db-4ebc-8935-90c335d72492", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063214Z:6746aa4c-f487-492b-9cac-ddfb9a525ff1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee8557268f56f4e34ddf15fcfcbd00b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de4f0e91-e4fc-4fa7-8f33-21c75f08e04e", + "x-ms-client-request-id": "ee8557268f56f4e34ddf15fcfcbd00b3", + "x-ms-correlation-request-id": "cc86b653-5005-4593-9969-91f347b53be9", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "1f9063c5-2fd6-415f-9d02-14be2c9ae6b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063215Z:cc86b653-5005-4593-9969-91f347b53be9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11eeacde34a89eadcec1e6e3deb9cf20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66828a51-d096-4ac6-9782-43e1af84b44d", + "x-ms-client-request-id": "11eeacde34a89eadcec1e6e3deb9cf20", + "x-ms-correlation-request-id": "149a4f6b-bddc-4afa-ac48-a0516cda5b7d", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "e47ec22a-8744-4ffb-994f-0aac1f98016c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063217Z:149a4f6b-bddc-4afa-ac48-a0516cda5b7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d63e2d90eb3cb8289c6519017db0342", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d4d3a19-8d5b-4093-9625-95d11f8987f4", + "x-ms-client-request-id": "1d63e2d90eb3cb8289c6519017db0342", + "x-ms-correlation-request-id": "b77cc20d-a1ef-473c-9f82-b632c2de7152", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "121e6075-4d42-4871-8cfe-17d3028573c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063218Z:b77cc20d-a1ef-473c-9f82-b632c2de7152" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00b44f7b5e3ff1bba9e72094a9001594", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb478d47-81bd-4d20-abed-c46b98fd5a76", + "x-ms-client-request-id": "00b44f7b5e3ff1bba9e72094a9001594", + "x-ms-correlation-request-id": "21a9493e-477b-42e3-8d4a-4ad16f14984c", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "f58caab9-749c-4fd2-8ea3-4d4fa6d23e70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063219Z:21a9493e-477b-42e3-8d4a-4ad16f14984c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1922f40fe35ad0ff292288e2e31d86f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20c6f8cd-c715-4583-ad35-37ec2d223c02", + "x-ms-client-request-id": "1922f40fe35ad0ff292288e2e31d86f3", + "x-ms-correlation-request-id": "b186ce96-f769-41ce-8e4c-2c0e1f744b82", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "0eccaaee-ad00-49aa-9d45-7f615cb013d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063221Z:b186ce96-f769-41ce-8e4c-2c0e1f744b82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f67a3becf047be1277173cceeee2189", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "402d9ed6-e049-42d1-9627-83d73bb6962a", + "x-ms-client-request-id": "8f67a3becf047be1277173cceeee2189", + "x-ms-correlation-request-id": "350a13ac-6651-440b-bb6f-921fe1b139c0", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "0ca8df33-86d6-4097-a020-13eb1ec5293f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063222Z:350a13ac-6651-440b-bb6f-921fe1b139c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2281bcb0e9b897e850e4d71cd5d80e8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49e57ae6-7e78-43a2-96e1-e9300e4ef166", + "x-ms-client-request-id": "2281bcb0e9b897e850e4d71cd5d80e8c", + "x-ms-correlation-request-id": "b5d69bb7-c4d4-490f-94a8-bbb129a92067", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "fd6e52f2-037a-4fef-9c2e-3ab6e7f9ce38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063223Z:b5d69bb7-c4d4-490f-94a8-bbb129a92067" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06d62d608698409013a7f2e96f33e23b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28072d7c-142e-4b6b-9e86-39606ca33b45", + "x-ms-client-request-id": "06d62d608698409013a7f2e96f33e23b", + "x-ms-correlation-request-id": "a017c68e-d37b-4700-b6cb-c3b3552ac9ab", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "ce70772f-c0f5-4385-90cb-410c0d9edc34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063224Z:a017c68e-d37b-4700-b6cb-c3b3552ac9ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2631fe00639cd43bbacf3e1ff7c5a64e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47eeea59-5347-4376-aa57-5584f65e7f40", + "x-ms-client-request-id": "2631fe00639cd43bbacf3e1ff7c5a64e", + "x-ms-correlation-request-id": "8dcb1e7a-c94b-407b-b9fd-785dfe71bcab", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "760c4034-1252-4e67-ba55-9f488438c628", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063226Z:8dcb1e7a-c94b-407b-b9fd-785dfe71bcab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c06be7631b172af02c400f11f7fe281c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b20a2934-020c-4d1c-8efd-fe916c5267cd", + "x-ms-client-request-id": "c06be7631b172af02c400f11f7fe281c", + "x-ms-correlation-request-id": "56988096-e92e-44b5-bfd9-94cd830c6c35", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "74fa47ca-d9ca-448a-a70d-b981222ba6d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063227Z:56988096-e92e-44b5-bfd9-94cd830c6c35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d61c9c02e7a7fdeff2024bc84771484d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63c2e259-0ce9-425f-8796-f6756cf4b746", + "x-ms-client-request-id": "d61c9c02e7a7fdeff2024bc84771484d", + "x-ms-correlation-request-id": "07c8724e-e7ff-4b9a-a1a1-66087aa64268", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "bbe31694-2618-493a-af06-fdd2baddeb02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063228Z:07c8724e-e7ff-4b9a-a1a1-66087aa64268" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8885a30121c8e5230d07fa5b5429dcbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26642513-42b0-4e61-9dbb-a8983a7a8079", + "x-ms-client-request-id": "8885a30121c8e5230d07fa5b5429dcbb", + "x-ms-correlation-request-id": "632114d2-cdf9-405b-98d8-ae29033c3d9e", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "c72e402c-7d7f-4038-9e40-d933c5b83344", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063229Z:632114d2-cdf9-405b-98d8-ae29033c3d9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b1c22a7cfa97ca7f76dce15cf28e3ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "054d98a7-07fb-4900-95d6-5b2f6b6af8e9", + "x-ms-client-request-id": "5b1c22a7cfa97ca7f76dce15cf28e3ba", + "x-ms-correlation-request-id": "c5851132-3c4a-474a-b1d9-39bf23302d3f", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "f86677d4-d155-489c-a14f-05cd93c85559", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063231Z:c5851132-3c4a-474a-b1d9-39bf23302d3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5310c1f8a079e1537936c89fec93a9c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e765133e-7cfa-4a8c-a8ce-e6d7ba0fe688", + "x-ms-client-request-id": "5310c1f8a079e1537936c89fec93a9c8", + "x-ms-correlation-request-id": "a5447dd7-0571-4e08-9a00-747174540f3e", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "79c754bd-1d9a-4d21-8559-4a84ac1e9fe0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063232Z:a5447dd7-0571-4e08-9a00-747174540f3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24218f25ed5431a4fc09905a530d15e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a7e510d-513c-4d5d-b4d7-485b5b34ce3f", + "x-ms-client-request-id": "24218f25ed5431a4fc09905a530d15e5", + "x-ms-correlation-request-id": "61b9746e-4447-42a0-be95-2249b83fb421", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "3d885490-0413-4a33-bf7b-cf97b85d6904", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063233Z:61b9746e-4447-42a0-be95-2249b83fb421" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92633f2489190742ce3be27206079064", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b63b480-1ce4-4795-906f-632bec3840b4", + "x-ms-client-request-id": "92633f2489190742ce3be27206079064", + "x-ms-correlation-request-id": "1d610205-71cb-476f-a28b-d59fc428171b", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "b846092b-2d11-4c41-93ec-67c374d98613", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063234Z:1d610205-71cb-476f-a28b-d59fc428171b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ff005c4be070b661dde566f0ff88d6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84b2ad80-f584-4661-b602-bc76e0a234bb", + "x-ms-client-request-id": "3ff005c4be070b661dde566f0ff88d6b", + "x-ms-correlation-request-id": "be0a4d96-65cf-46f9-84fc-7fc60c219f8e", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "a12266d5-28c6-4a29-9f58-d46c1954c588", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063236Z:be0a4d96-65cf-46f9-84fc-7fc60c219f8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac7be32116309cae4d1955190a322bf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e766687-d408-4d54-994a-e24f400ddb78", + "x-ms-client-request-id": "ac7be32116309cae4d1955190a322bf5", + "x-ms-correlation-request-id": "784d98fa-5bf1-4a56-aaf6-e952c8686176", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "0a1996f3-b7fa-4bfa-a567-5ebf15f77608", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063237Z:784d98fa-5bf1-4a56-aaf6-e952c8686176" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d952c79d51d66ded958753b32d2f7d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "edd5a962-70b6-435d-809b-e2c4c519bf60", + "x-ms-client-request-id": "4d952c79d51d66ded958753b32d2f7d5", + "x-ms-correlation-request-id": "fdbd578e-4013-45e3-85ce-4748523aa734", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "ebdcb630-cc88-4078-9132-67f7a8c83401", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063238Z:fdbd578e-4013-45e3-85ce-4748523aa734" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "225076ade38cae335654f2ed684c00ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15584182-0b18-4f03-93ee-0c2ab10a5144", + "x-ms-client-request-id": "225076ade38cae335654f2ed684c00ea", + "x-ms-correlation-request-id": "9e0c8943-face-42c1-9bd6-d126520eb2a3", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "eeca1d70-dcde-4749-a36c-cf36969ed935", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063240Z:9e0c8943-face-42c1-9bd6-d126520eb2a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3f661b23f634c4e0415d2d8a172697a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6216e4b-215b-4f57-9944-95c8050f0ea5", + "x-ms-client-request-id": "e3f661b23f634c4e0415d2d8a172697a", + "x-ms-correlation-request-id": "3e21c2ab-c98d-4466-8066-5097b8c35f8b", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "091ddf21-eaa1-4535-89b8-41849c347254", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063241Z:3e21c2ab-c98d-4466-8066-5097b8c35f8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "946c802208e19568f8e7f7c9e2f1fe8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "665a8fe5-f6e7-46b3-bef1-3b39c93a58f7", + "x-ms-client-request-id": "946c802208e19568f8e7f7c9e2f1fe8d", + "x-ms-correlation-request-id": "eed9f890-802a-4309-be27-e99bb560a75a", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "8ead9c28-4d63-4777-bd46-44c20fc6fe69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063242Z:eed9f890-802a-4309-be27-e99bb560a75a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0898a5813dc6d7228041e77105b0ce4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0919038e-0165-4e14-a7a1-8a48b85238ff", + "x-ms-client-request-id": "d0898a5813dc6d7228041e77105b0ce4", + "x-ms-correlation-request-id": "e045462a-bfb7-4dbb-9a74-7c938fd136e8", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "e9df7bb3-7111-48da-a84b-bb9c73e6f79d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063243Z:e045462a-bfb7-4dbb-9a74-7c938fd136e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8ca78ea6cdfa908f860eb7b48856913", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0683b248-5d33-4132-ab21-42739255b423", + "x-ms-client-request-id": "e8ca78ea6cdfa908f860eb7b48856913", + "x-ms-correlation-request-id": "d8dddaa4-43e4-4c61-988e-724281252bbd", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "c580f8f2-df02-475a-81d3-2dcbc023fce5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063245Z:d8dddaa4-43e4-4c61-988e-724281252bbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "167f451799e90f9d0dfe6bddeaf1849c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7a8715f-a11a-4ee5-ad6f-77526d90f5b4", + "x-ms-client-request-id": "167f451799e90f9d0dfe6bddeaf1849c", + "x-ms-correlation-request-id": "05e615a5-b91a-4955-8886-f41fd5d731c4", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "a08abcca-afba-4728-9e31-c3c031a76287", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063246Z:05e615a5-b91a-4955-8886-f41fd5d731c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69de13db1527ecad82dfd77b27f724a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bf3ea84-f605-42ff-93f3-63058a924441", + "x-ms-client-request-id": "69de13db1527ecad82dfd77b27f724a3", + "x-ms-correlation-request-id": "2dbda546-7d0a-4933-89ed-8fec8367e67e", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "e8c23a24-9d4b-4d6b-9ae5-c3306c3d67fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063247Z:2dbda546-7d0a-4933-89ed-8fec8367e67e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb600a9af5db50fadabbdae1002abe06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9747ada5-8b76-4c7d-84ac-784b26bfde58", + "x-ms-client-request-id": "cb600a9af5db50fadabbdae1002abe06", + "x-ms-correlation-request-id": "8b5f0b25-9fa7-472d-8732-c2c607f82592", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "1f2af5d5-a317-4db8-9de4-9ff3e8b564d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063249Z:8b5f0b25-9fa7-472d-8732-c2c607f82592" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "359f4edbffa601ec97939409c122e715", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd2b9339-ca15-44e8-a5ac-7bde9f67431a", + "x-ms-client-request-id": "359f4edbffa601ec97939409c122e715", + "x-ms-correlation-request-id": "35e4c11b-2573-4ae6-ae4a-d480a148d928", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "0580791b-33a0-45e4-9858-21af652b7d9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063250Z:35e4c11b-2573-4ae6-ae4a-d480a148d928" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df42c8dab991e5c1188e8e6b3bcceb57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5ddc3f5-db62-4dc7-a8c5-54b7e03d8f6a", + "x-ms-client-request-id": "df42c8dab991e5c1188e8e6b3bcceb57", + "x-ms-correlation-request-id": "ad336750-3e49-4163-8911-4be4b33cc11c", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "c73b8cb7-5545-45e4-99b9-05a7768da80e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063251Z:ad336750-3e49-4163-8911-4be4b33cc11c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d99fd021ee579bfd1e5f334861f18eb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "231e94da-3e1e-491a-855c-1868df5af918", + "x-ms-client-request-id": "d99fd021ee579bfd1e5f334861f18eb8", + "x-ms-correlation-request-id": "00aca1f1-c26a-41bf-ae10-7e576019f530", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "86766cff-152f-404e-b0c5-5b8cd44e8afc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063252Z:00aca1f1-c26a-41bf-ae10-7e576019f530" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3806c5d3dee822758dba1d177180c6cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1d7acf7-85dd-4609-b3f9-49fe5952d66a", + "x-ms-client-request-id": "3806c5d3dee822758dba1d177180c6cb", + "x-ms-correlation-request-id": "b569c413-ab46-4d7b-9a88-0f689fdd5bd6", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "d20f9008-c675-4357-a5ed-357f839befd0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063254Z:b569c413-ab46-4d7b-9a88-0f689fdd5bd6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1e83da70d82ebbdcaa7c13285788427", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7377461b-969a-4b63-b53c-f60362741258", + "x-ms-client-request-id": "f1e83da70d82ebbdcaa7c13285788427", + "x-ms-correlation-request-id": "f50e54f9-72cf-49d1-8fdc-4a397f36f5d9", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "a22de1c8-f9d2-4f3e-bdce-bd93276503b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063255Z:f50e54f9-72cf-49d1-8fdc-4a397f36f5d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7598d6ffb3c5426e5b7d4b9dd1e5299e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d249d2c-b49e-4bcc-aeea-a36d76537231", + "x-ms-client-request-id": "7598d6ffb3c5426e5b7d4b9dd1e5299e", + "x-ms-correlation-request-id": "4ea59b0b-e885-4d88-95a5-c3257ea2f6a5", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "f35fd97e-a4aa-4151-8726-b35021506d3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063256Z:4ea59b0b-e885-4d88-95a5-c3257ea2f6a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24a068999d08c536071b6d401d429c14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a30513a1-bd5f-4bd1-aa6e-410ba05f529c", + "x-ms-client-request-id": "24a068999d08c536071b6d401d429c14", + "x-ms-correlation-request-id": "132e7c8c-6e31-42b0-a73a-380c1bfe97de", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "41695ab7-8115-427b-9dc7-84e0f3296b86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063258Z:132e7c8c-6e31-42b0-a73a-380c1bfe97de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a18f53550e8f405cea59504c11f19e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e04c7fd3-02bf-4afd-9e5d-f6199409bf40", + "x-ms-client-request-id": "9a18f53550e8f405cea59504c11f19e5", + "x-ms-correlation-request-id": "da317b5a-5b27-47b2-9ece-d285bbbb5628", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "146d8c28-56b0-4176-a117-aa979d9fbd3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063259Z:da317b5a-5b27-47b2-9ece-d285bbbb5628" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d99237d5fd7611e9fd26da9452d2518", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:32:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93e08e66-8594-49c1-98c3-5501e24cd3d4", + "x-ms-client-request-id": "1d99237d5fd7611e9fd26da9452d2518", + "x-ms-correlation-request-id": "91d6e857-bd71-4ee0-a616-8e2a2c9c2268", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "2548cd87-f258-4d0a-85bc-dc362e8ca618", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063300Z:91d6e857-bd71-4ee0-a616-8e2a2c9c2268" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db6737e08fcc48b662ac5663083103e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fc5020f-c7c4-4957-9679-8e7858046e98", + "x-ms-client-request-id": "db6737e08fcc48b662ac5663083103e7", + "x-ms-correlation-request-id": "e32f138d-5acb-49c2-b163-a265236e410b", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "4250337d-9da1-4a88-955f-9c3dc1ded10f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063301Z:e32f138d-5acb-49c2-b163-a265236e410b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fac388017fa9d63dd7b7fb15e25baea0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da6904f2-893b-472a-9d2f-d24aeca9fc68", + "x-ms-client-request-id": "fac388017fa9d63dd7b7fb15e25baea0", + "x-ms-correlation-request-id": "77fb03fa-0047-44cd-a730-be6eb932e75a", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "0ba7ea0a-d88e-4fda-9f85-9c9d39bab649", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063303Z:77fb03fa-0047-44cd-a730-be6eb932e75a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a237d803db8ee186c50bb2b09bb586e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f541332-dc59-465c-bd7b-7506b8cf9eac", + "x-ms-client-request-id": "8a237d803db8ee186c50bb2b09bb586e", + "x-ms-correlation-request-id": "8934b1fd-f41e-4925-9e0c-71dc97b01d94", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "a6f59ae7-49c1-4482-930b-ae9a74574569", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063304Z:8934b1fd-f41e-4925-9e0c-71dc97b01d94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bda886ce2b6a616ff991041593a06606", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1554decd-1e75-4eff-b06f-caf4f900b40b", + "x-ms-client-request-id": "bda886ce2b6a616ff991041593a06606", + "x-ms-correlation-request-id": "d94a7b40-a4ea-4785-afd7-56ec9eed18da", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "cfe8d093-a9b8-434c-877e-d702b7a69216", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063305Z:d94a7b40-a4ea-4785-afd7-56ec9eed18da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8be2b6fe780dc42f70d58d58c412cc1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05745ea8-84c2-41b3-98ba-00c1e2c3f845", + "x-ms-client-request-id": "8be2b6fe780dc42f70d58d58c412cc1c", + "x-ms-correlation-request-id": "dccca8ba-226a-4684-96ba-22417d7a008f", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "eff72750-ce8d-411f-bcf5-2bfc8c17ca63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063306Z:dccca8ba-226a-4684-96ba-22417d7a008f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c478c5ef0b355350dc2902639025acc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18c55dfe-4ee3-40da-b3f2-485416fade40", + "x-ms-client-request-id": "5c478c5ef0b355350dc2902639025acc", + "x-ms-correlation-request-id": "0c1334a3-ec83-4d2c-8e4f-0f62244e5d2f", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "c243c81a-661a-4264-ba77-74788eef6307", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063308Z:0c1334a3-ec83-4d2c-8e4f-0f62244e5d2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "532cb4eacdd8556156e34d959d169de7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4be6330-0459-4701-9e35-30b22fba6560", + "x-ms-client-request-id": "532cb4eacdd8556156e34d959d169de7", + "x-ms-correlation-request-id": "de2107da-e282-42a8-904b-c9fa73fb27d3", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "21b704a1-2149-46c7-8a30-8d984e324dfb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063309Z:de2107da-e282-42a8-904b-c9fa73fb27d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07b7e8c409590d52808d7d4be8088a6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1d8119d-f79d-482d-b7e3-a9b8d59557ad", + "x-ms-client-request-id": "07b7e8c409590d52808d7d4be8088a6d", + "x-ms-correlation-request-id": "160db2bb-ac0d-4b60-ae40-e87d76ceb40b", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "50144018-e26e-4ccc-a6c2-7a9befc448e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063310Z:160db2bb-ac0d-4b60-ae40-e87d76ceb40b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f6dc07a79e590432bf105cfa3a0b7f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab71d9e8-b254-4761-953c-4a01a54cf736", + "x-ms-client-request-id": "0f6dc07a79e590432bf105cfa3a0b7f7", + "x-ms-correlation-request-id": "22ce8f04-94b3-45c2-97d5-8f895dd430ed", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "469d597e-a29d-4488-b756-cc388959eeac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063312Z:22ce8f04-94b3-45c2-97d5-8f895dd430ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5161a824534be173621fd24b50156d4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0bba0a4-b03a-42f7-a391-33a9ce2f60c3", + "x-ms-client-request-id": "5161a824534be173621fd24b50156d4d", + "x-ms-correlation-request-id": "0d812253-2253-47c9-b431-b6759049ddfa", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "810464a7-3989-45a8-9cbd-df2a433c3b69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063313Z:0d812253-2253-47c9-b431-b6759049ddfa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd1adf598ea94b02a426dc67048269e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d3beceb-e7ce-4755-9e88-49e4a153acf7", + "x-ms-client-request-id": "dd1adf598ea94b02a426dc67048269e0", + "x-ms-correlation-request-id": "278cb22b-5de6-4083-b1a0-d209e7eecfae", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "af01af1e-f481-4fdf-9a07-822e64c147ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063314Z:278cb22b-5de6-4083-b1a0-d209e7eecfae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f2786d538a627224d8cadc6a6f73f15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4390a473-1bd2-4637-8ef9-00c961a13d50", + "x-ms-client-request-id": "3f2786d538a627224d8cadc6a6f73f15", + "x-ms-correlation-request-id": "7857f06f-ef39-40b7-ad51-c22e0f95134e", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "54cbab97-fd05-4c79-b16d-b47f22c32d3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063315Z:7857f06f-ef39-40b7-ad51-c22e0f95134e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c476b784da85954da616ac24770bdcdf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7c5060d-9801-42ed-aea6-afee641d906d", + "x-ms-client-request-id": "c476b784da85954da616ac24770bdcdf", + "x-ms-correlation-request-id": "ce0d7057-b0d9-4592-928b-d752d50e5253", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "523f96d6-deb9-4327-80d8-94522eed46bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063317Z:ce0d7057-b0d9-4592-928b-d752d50e5253" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca76f2b52eee21a7bdf38f1ce13ca5ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "677d3e18-e168-4d21-a480-e12e1f9cc1b7", + "x-ms-client-request-id": "ca76f2b52eee21a7bdf38f1ce13ca5ad", + "x-ms-correlation-request-id": "663ce857-0e70-41b4-8056-35eeef31c389", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "5cb5db5d-f2bc-4add-943a-187ba55f9aaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063318Z:663ce857-0e70-41b4-8056-35eeef31c389" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ce3c6e6a50cfa5a389198908bfdb041", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75c009b5-5f76-4972-b763-ef3ff9b87f55", + "x-ms-client-request-id": "4ce3c6e6a50cfa5a389198908bfdb041", + "x-ms-correlation-request-id": "46bf1367-d9d9-4d65-97fc-1436cd4a0bf3", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "d86bdca7-8c82-46be-9df3-105d1ea6ec76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063319Z:46bf1367-d9d9-4d65-97fc-1436cd4a0bf3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b310cdaf75815626105406914a31b469", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3131475c-770e-4242-ae3c-19b2087a652b", + "x-ms-client-request-id": "b310cdaf75815626105406914a31b469", + "x-ms-correlation-request-id": "2ed8e6e1-53af-4f94-b9b4-5243f85344ce", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "103bc7c1-ce24-422d-8d33-9befd61b07ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063320Z:2ed8e6e1-53af-4f94-b9b4-5243f85344ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b03dff71902810d3987b925d951695c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "717bed97-82a9-49f1-b01d-96cb1d946fcc", + "x-ms-client-request-id": "b03dff71902810d3987b925d951695c0", + "x-ms-correlation-request-id": "6be92806-4b1d-415c-9766-c984b2a14d4a", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "ca508567-efcc-4cd8-8c48-63e333c0e9f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063322Z:6be92806-4b1d-415c-9766-c984b2a14d4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "136d4e43f12c712b9f8d3bb79ec8af06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "821778a4-b171-42ec-be79-63713e24e75a", + "x-ms-client-request-id": "136d4e43f12c712b9f8d3bb79ec8af06", + "x-ms-correlation-request-id": "45a861b9-e358-4ccc-b92e-b1d865b6f076", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "03e028e1-1be1-4a91-8f9f-5f1fcc390ff5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063323Z:45a861b9-e358-4ccc-b92e-b1d865b6f076" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b1f2fdcffbf1e18faff1b06e2c9c0f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4741226b-3164-4786-889e-f4678b3bf032", + "x-ms-client-request-id": "8b1f2fdcffbf1e18faff1b06e2c9c0f9", + "x-ms-correlation-request-id": "50b19852-cb30-44c3-a407-957f918d127f", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "9bf8884d-8629-4a9d-9eab-3f15d107a01b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063324Z:50b19852-cb30-44c3-a407-957f918d127f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc4e46bfa0c47f3dd4cb109b541b71cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2a8a628-44fc-46be-a847-c512929a7ac8", + "x-ms-client-request-id": "fc4e46bfa0c47f3dd4cb109b541b71cf", + "x-ms-correlation-request-id": "b3013648-2f57-4406-92cf-5f402fb10402", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "93d0f843-c909-4d5c-b76b-2e81dfcca3fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063326Z:b3013648-2f57-4406-92cf-5f402fb10402" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66808bcb09f74300354e192cd6258ed6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68185002-6738-4a13-add8-7438dd4f2fdc", + "x-ms-client-request-id": "66808bcb09f74300354e192cd6258ed6", + "x-ms-correlation-request-id": "4ca67724-6f1b-466a-8130-f1882ea5656e", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "ff47777e-662c-4ad3-a730-8e456926b177", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063327Z:4ca67724-6f1b-466a-8130-f1882ea5656e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58f841ccb37a3c42f29fb7f3ee7cc9df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d2c3cd3-a2d3-4cda-8c0f-1fb4a543464f", + "x-ms-client-request-id": "58f841ccb37a3c42f29fb7f3ee7cc9df", + "x-ms-correlation-request-id": "6c2d4192-eb70-4d2c-955c-44596d810f62", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "42ffa33a-d22e-4468-9d03-06024f20bf43", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063328Z:6c2d4192-eb70-4d2c-955c-44596d810f62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "573a4b8e5a48b502460ac6758710a9af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac4ff2fe-86b1-4d81-96d0-4182144288d6", + "x-ms-client-request-id": "573a4b8e5a48b502460ac6758710a9af", + "x-ms-correlation-request-id": "8418e42f-2bf1-4047-93de-9f77326a394f", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "2e397bf6-0fff-40f1-b7d2-0f32a34db608", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063329Z:8418e42f-2bf1-4047-93de-9f77326a394f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13cf3a3d1923185549447457520c55b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9dbabae7-4602-4eaa-996f-3f778b4b286f", + "x-ms-client-request-id": "13cf3a3d1923185549447457520c55b9", + "x-ms-correlation-request-id": "3ed54a94-a004-48a6-9b72-7c4d403081c3", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "b6f23465-758d-4f07-82c9-c780fa7afa40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063331Z:3ed54a94-a004-48a6-9b72-7c4d403081c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a9e3a8437ea728d3f42126fecccb4e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "509291cd-f52d-42ff-8f30-43f5f92ccde0", + "x-ms-client-request-id": "8a9e3a8437ea728d3f42126fecccb4e1", + "x-ms-correlation-request-id": "86dd680f-868d-4000-8cd3-18fecd479731", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "941fdad4-239f-4ecb-8e2f-4916f4808038", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063332Z:86dd680f-868d-4000-8cd3-18fecd479731" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4b608f5b6ad75bbf6220e04e6aa623a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4df2655e-af56-4688-b104-375345337371", + "x-ms-client-request-id": "b4b608f5b6ad75bbf6220e04e6aa623a", + "x-ms-correlation-request-id": "1cd67fe8-cdc3-4a9e-af78-3c7d351426d3", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "dce3bfed-40f3-4f09-a688-9cd7294867b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063333Z:1cd67fe8-cdc3-4a9e-af78-3c7d351426d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4df10db51f7205c5ac5dd3e007e52c7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "70beeeb2-990b-49b1-8781-762290dd36d3", + "x-ms-client-request-id": "4df10db51f7205c5ac5dd3e007e52c7c", + "x-ms-correlation-request-id": "09525eaa-0c63-467f-a085-29d59af14398", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "2b0bd99a-d66b-412e-bec7-73987acb1db0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063334Z:09525eaa-0c63-467f-a085-29d59af14398" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a62928fa055cd0b7e2893c729898c94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6f7f8f5-27a8-44c4-9235-cae820ec3ca6", + "x-ms-client-request-id": "4a62928fa055cd0b7e2893c729898c94", + "x-ms-correlation-request-id": "6c9ed16f-971c-4b9d-ab55-1ddde851540a", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "4d469801-1c83-40d5-abbb-8ed68996ec61", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063336Z:6c9ed16f-971c-4b9d-ab55-1ddde851540a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "debad7df66dbd66e43b10750e2db6e11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ad2d565-6a6e-4e7c-baf1-447f033b9841", + "x-ms-client-request-id": "debad7df66dbd66e43b10750e2db6e11", + "x-ms-correlation-request-id": "08538b75-5c3e-42cc-b654-259ad691777a", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "29605554-d784-4ea8-83cc-bb5cf28bdd46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063337Z:08538b75-5c3e-42cc-b654-259ad691777a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "537491f6184814e40223cf498bfddb22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4dc34259-18d9-46c7-a8cc-df338a4d8f72", + "x-ms-client-request-id": "537491f6184814e40223cf498bfddb22", + "x-ms-correlation-request-id": "4e21db39-8cd0-45d5-8759-5bdbabbaed95", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "5ab0911c-70d2-4473-9a8c-9e7f6d620289", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063338Z:4e21db39-8cd0-45d5-8759-5bdbabbaed95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f003fd14d2b28a0248b07a398bbeaa2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "658e769b-4520-42ae-99f2-517879fa93b3", + "x-ms-client-request-id": "2f003fd14d2b28a0248b07a398bbeaa2", + "x-ms-correlation-request-id": "b671c13f-c97f-4bd8-9e11-05e90b59a62c", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "cf7a8571-f8dd-4c25-addf-d0330c80827d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063340Z:b671c13f-c97f-4bd8-9e11-05e90b59a62c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97d182ba3814c74cf3a5dcb797244a45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3083a013-1224-4a5e-ad25-b5d6cea1c8ab", + "x-ms-client-request-id": "97d182ba3814c74cf3a5dcb797244a45", + "x-ms-correlation-request-id": "d3833789-4711-4478-b2ad-55e322f2a9be", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "dda87856-06b6-4c19-acb3-37c4fdd67915", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063341Z:d3833789-4711-4478-b2ad-55e322f2a9be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a37fe4d63edba8e5f14b2ebc11417b46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ce3c3e2-95ee-4bc7-bac3-bc4c38b5dd52", + "x-ms-client-request-id": "a37fe4d63edba8e5f14b2ebc11417b46", + "x-ms-correlation-request-id": "59ba5426-3449-4b06-9dfd-dd2c42f70376", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "f542c6a7-99ab-4a82-8ec2-aade3fa72a6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063342Z:59ba5426-3449-4b06-9dfd-dd2c42f70376" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "098f2c39432c980ef2393c8671e991ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d65f5ce0-829b-4206-bf9c-4623c55e3ff2", + "x-ms-client-request-id": "098f2c39432c980ef2393c8671e991ff", + "x-ms-correlation-request-id": "e03147f0-2be6-49e0-b9b2-42315a0da65b", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "0ec01b3d-83e4-448a-afe4-6f1a757d851e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063343Z:e03147f0-2be6-49e0-b9b2-42315a0da65b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3ccc141463c7bc79d28a6c90a8fb5b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "977c9bdc-7499-4d25-9b66-ec192fd34a6a", + "x-ms-client-request-id": "b3ccc141463c7bc79d28a6c90a8fb5b1", + "x-ms-correlation-request-id": "e03febc2-4b93-43ba-afdd-6717b0fe0420", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "2733a224-987c-4fa2-b990-0563fce738e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063345Z:e03febc2-4b93-43ba-afdd-6717b0fe0420" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a7e952941959319d6e6b0a1025f3708", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1e084a5-0605-43d6-a526-d7c492592c69", + "x-ms-client-request-id": "6a7e952941959319d6e6b0a1025f3708", + "x-ms-correlation-request-id": "744e051f-bacd-424e-8a11-e4945275771b", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "9f5ab85f-33f3-4f53-be5c-f3f475d48cac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063346Z:744e051f-bacd-424e-8a11-e4945275771b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f7b2ebac874f20a65136c049c458e63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35c0c41a-d8d1-4c8f-acd0-f88d2f72407b", + "x-ms-client-request-id": "4f7b2ebac874f20a65136c049c458e63", + "x-ms-correlation-request-id": "1ea85755-6b6d-4553-a1ed-440168d30cbc", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "bf470787-43a8-4448-a361-c336a4651f53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063347Z:1ea85755-6b6d-4553-a1ed-440168d30cbc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db5c8a83266aff6aa839dc559625793d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ca51f59-656a-4051-b3f1-828114eb4f03", + "x-ms-client-request-id": "db5c8a83266aff6aa839dc559625793d", + "x-ms-correlation-request-id": "7e4c18ba-c671-4463-a904-060e048484d2", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "f2f0be16-4d00-4347-ac49-d2739bf9eac5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063348Z:7e4c18ba-c671-4463-a904-060e048484d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db0e9ef06513613d8b8c0582d414f691", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5d08bf9-f9ab-4cd4-ac39-1ce5d4a9ee37", + "x-ms-client-request-id": "db0e9ef06513613d8b8c0582d414f691", + "x-ms-correlation-request-id": "e46b8ebc-1249-4b0b-aaeb-ac21766cba09", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "23b5676b-b706-4a27-b00c-f6b5b55ad697", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063350Z:e46b8ebc-1249-4b0b-aaeb-ac21766cba09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "781e4d585c02939dc47ba73aebb45c3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a7a9d1f-76ee-4c2f-8c31-435e6473c512", + "x-ms-client-request-id": "781e4d585c02939dc47ba73aebb45c3f", + "x-ms-correlation-request-id": "d90edc08-ef25-476e-91e0-d17e165b34e2", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "aeefe6e8-9d30-470a-8366-fcdada43c055", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063351Z:d90edc08-ef25-476e-91e0-d17e165b34e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe142e9ab2361d4f4cfb4fde21e82b93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91ab34d3-1aa5-4403-a2f6-2466c1a41673", + "x-ms-client-request-id": "fe142e9ab2361d4f4cfb4fde21e82b93", + "x-ms-correlation-request-id": "726fa975-edb5-4fc0-b159-9d76ed8c30c4", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "57bb112b-272b-47eb-8849-483cc2ba8b88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063352Z:726fa975-edb5-4fc0-b159-9d76ed8c30c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48fd4b430007933b007a1797be0375d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a90998a-dff5-46aa-8bf0-99f62060b684", + "x-ms-client-request-id": "48fd4b430007933b007a1797be0375d7", + "x-ms-correlation-request-id": "1283d8fb-9f08-4906-83e8-be9520d3d5a0", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "be2f5195-c075-4159-a122-e6c39b636260", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063354Z:1283d8fb-9f08-4906-83e8-be9520d3d5a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6e7c52ff700a55bfd002b060cbe72db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32d46854-371b-4ab9-922e-8c0f440fbf7f", + "x-ms-client-request-id": "a6e7c52ff700a55bfd002b060cbe72db", + "x-ms-correlation-request-id": "e1b4644f-89f1-4b8f-bd7a-d7096e7beead", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "6eb889c7-2e2b-4dee-bb91-2aae937c5a9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063355Z:e1b4644f-89f1-4b8f-bd7a-d7096e7beead" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0f6135013b79937f380febc9bb75f49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c8b1e91-5287-460d-a005-b98f6f4bc210", + "x-ms-client-request-id": "a0f6135013b79937f380febc9bb75f49", + "x-ms-correlation-request-id": "9bcad2a7-64a6-48f9-af97-cbaae350d077", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "398bd7d8-215e-4d63-9526-4be71370266c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063356Z:9bcad2a7-64a6-48f9-af97-cbaae350d077" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5bae788584004c93f0574b07d4348641", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23b5b794-167d-4ae8-9324-849d8d08749e", + "x-ms-client-request-id": "5bae788584004c93f0574b07d4348641", + "x-ms-correlation-request-id": "5ebe5445-aa90-424e-a860-10ef72ba9417", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "fe684c3b-f21b-437e-86ae-1a24d8485bf9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063357Z:5ebe5445-aa90-424e-a860-10ef72ba9417" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa473b07d50c1c1f8d4eb27ff99e0945", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:33:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b38c61ec-f28b-4b81-beac-637f270a379e", + "x-ms-client-request-id": "aa473b07d50c1c1f8d4eb27ff99e0945", + "x-ms-correlation-request-id": "71b2872e-8e82-4c72-987b-3cc1cb6361ef", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "eafdb3a4-74a7-4725-8ba2-7be1800419cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063359Z:71b2872e-8e82-4c72-987b-3cc1cb6361ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9480e2a1160fcbda80aaaf60c830c4be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52e3e3b8-26e6-4355-aa45-c5681ed10a0d", + "x-ms-client-request-id": "9480e2a1160fcbda80aaaf60c830c4be", + "x-ms-correlation-request-id": "6816bac3-b99b-428e-80f4-aa3610f47fb0", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "607ecbb6-752b-4b88-8a10-b09487dc338d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063400Z:6816bac3-b99b-428e-80f4-aa3610f47fb0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60b4bcf9b470b03d5992cdb2d2135351", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ad5d2ac-ae45-4c3e-8bbc-1cfaa8f5b875", + "x-ms-client-request-id": "60b4bcf9b470b03d5992cdb2d2135351", + "x-ms-correlation-request-id": "d8f184b5-860b-451c-a1be-c3feb538e12d", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "8ec3e4c6-b8e0-46b7-b9fc-e4c0cc8d7d85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063401Z:d8f184b5-860b-451c-a1be-c3feb538e12d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f265054df2b4f131607b2a6225bf535c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fad4cdab-ca84-4837-9015-00dae764e5b1", + "x-ms-client-request-id": "f265054df2b4f131607b2a6225bf535c", + "x-ms-correlation-request-id": "747617cf-9d84-4883-a374-f1e330482f15", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "cfec92df-c145-4cef-b2b9-b8ab142f5262", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063403Z:747617cf-9d84-4883-a374-f1e330482f15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c86f489a9eaedd4a4d03b7d4928f96d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3080fd3-400a-4ac0-beab-5f3b3c4f9718", + "x-ms-client-request-id": "3c86f489a9eaedd4a4d03b7d4928f96d", + "x-ms-correlation-request-id": "193dfb08-1eff-442f-a567-1cdd6f72137b", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "5a375181-f6a4-4d0d-b267-18ea0fb15696", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063404Z:193dfb08-1eff-442f-a567-1cdd6f72137b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3125e57d2cb070a8ac3fff589da8a99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89c219d6-b896-4263-bf91-6d5acd706f18", + "x-ms-client-request-id": "c3125e57d2cb070a8ac3fff589da8a99", + "x-ms-correlation-request-id": "240debe6-6a8c-4939-ab7b-1ddcdf69812d", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "c39744f7-368f-4622-bb0c-e8a87829939f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063405Z:240debe6-6a8c-4939-ab7b-1ddcdf69812d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd28703f168da36630784de3b7b4a738", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0952a38-1b83-4612-a9d4-3a222b97091f", + "x-ms-client-request-id": "dd28703f168da36630784de3b7b4a738", + "x-ms-correlation-request-id": "94b6086d-de86-46d9-b05f-bcb10799e0b5", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "a28628f9-78ca-49e2-a177-1dc646054b3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063406Z:94b6086d-de86-46d9-b05f-bcb10799e0b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c60abd8190acb791ea7eb227aadf63c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5475e3e-bcf5-41da-8358-71d40e05523a", + "x-ms-client-request-id": "c60abd8190acb791ea7eb227aadf63c9", + "x-ms-correlation-request-id": "aea21510-7cce-4a60-9172-67216b7d8c7e", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "0081e19b-5531-420d-8716-b272374ef2d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063408Z:aea21510-7cce-4a60-9172-67216b7d8c7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d83da1451bff41e0f86f9252842650d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "868dfe2a-27d1-4513-97be-8bb6853e9506", + "x-ms-client-request-id": "d83da1451bff41e0f86f9252842650d6", + "x-ms-correlation-request-id": "8360e3ea-69c5-4bfa-bb86-af031eb59804", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "5b2aae98-10be-4f6b-9e44-3150255cf169", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063409Z:8360e3ea-69c5-4bfa-bb86-af031eb59804" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc73c71bc3d0aeeddf71f30e633ff951", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6532013e-4c1b-4606-86e8-fb3c93c3d248", + "x-ms-client-request-id": "cc73c71bc3d0aeeddf71f30e633ff951", + "x-ms-correlation-request-id": "69de0f7a-2d43-48f1-9846-00adaedfcff5", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "687eb298-17c1-48b1-8c43-6a571de7bf09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063411Z:69de0f7a-2d43-48f1-9846-00adaedfcff5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "159e8315cf766538ddc9ce3cfe3f32c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "084bec53-a0e6-401d-b614-564dc252476a", + "x-ms-client-request-id": "159e8315cf766538ddc9ce3cfe3f32c3", + "x-ms-correlation-request-id": "5b423525-970a-4e6a-aa11-f9c9654dec00", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "6596e4d0-9970-4033-86a4-1e5a9f7d96c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063412Z:5b423525-970a-4e6a-aa11-f9c9654dec00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e30cdc2e966b81f9b38ff88d28d1ddb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f197c70f-61bd-4383-b731-43f7a9a61d95", + "x-ms-client-request-id": "e30cdc2e966b81f9b38ff88d28d1ddb9", + "x-ms-correlation-request-id": "f288025e-4a5c-4cce-ae4a-24a7dca39ca0", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "b1743150-8273-4e84-848f-acf443f5fe88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063413Z:f288025e-4a5c-4cce-ae4a-24a7dca39ca0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "003c40763a884b5f8e0eef06f4b0b09f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d020511-5d22-42f3-a2e8-5af83c28ba7b", + "x-ms-client-request-id": "003c40763a884b5f8e0eef06f4b0b09f", + "x-ms-correlation-request-id": "295b0991-422c-4c01-8574-4fde2c354bf5", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "1915d25b-bbef-4a80-ac8b-23f78cb7a6dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063415Z:295b0991-422c-4c01-8574-4fde2c354bf5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87e02f3e15327fe5891c62e7d6aa3d0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c07ac2c5-9907-47dc-a687-5e2b24707ef3", + "x-ms-client-request-id": "87e02f3e15327fe5891c62e7d6aa3d0b", + "x-ms-correlation-request-id": "e2bc2b3d-8a65-416a-8570-0751199bc93b", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "db973510-e128-47a4-833c-84bf14961a31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063416Z:e2bc2b3d-8a65-416a-8570-0751199bc93b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdc615ec3202f33b7cc0545da7f38c02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1b58a56-06df-4ed5-8d71-8217ff2ee7f3", + "x-ms-client-request-id": "bdc615ec3202f33b7cc0545da7f38c02", + "x-ms-correlation-request-id": "bd005435-05a5-40e5-860d-0a02a4936b79", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "f6d421c7-c6e7-4b13-8a75-41addef92323", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063417Z:bd005435-05a5-40e5-860d-0a02a4936b79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f84f59de55f060865abd766bd87774e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d0ec878-ca42-4d7e-a0a2-01f61eeb12eb", + "x-ms-client-request-id": "f84f59de55f060865abd766bd87774e3", + "x-ms-correlation-request-id": "0de1be31-92ed-4224-94a7-ad0062f48064", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "28a2c180-723c-4198-b1f2-8d393b552f9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063418Z:0de1be31-92ed-4224-94a7-ad0062f48064" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df19e3d0f3ea0c9cf4ed0a71c088d895", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "664968ff-0eb1-4938-a255-f80a3e1b7267", + "x-ms-client-request-id": "df19e3d0f3ea0c9cf4ed0a71c088d895", + "x-ms-correlation-request-id": "6a4d4936-fce8-4998-9c8d-eaf0ead592ee", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "d4b81e5d-da0f-4084-ad77-fce492893a58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063420Z:6a4d4936-fce8-4998-9c8d-eaf0ead592ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d085f8f445b961b8f656245bbd01a05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d091701-d854-42a5-a8a9-9b7b403c259e", + "x-ms-client-request-id": "7d085f8f445b961b8f656245bbd01a05", + "x-ms-correlation-request-id": "0ed42035-af3b-4ba5-b52e-50a1a40a73d0", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "7cd78550-d08b-43a4-8729-c0e5e1352500", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063421Z:0ed42035-af3b-4ba5-b52e-50a1a40a73d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c38c714caddaeb18bc4304034b149fd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2df9544e-86c8-4166-beef-710bb1a90ad1", + "x-ms-client-request-id": "c38c714caddaeb18bc4304034b149fd2", + "x-ms-correlation-request-id": "da02230b-1aaf-4ce7-bcb9-e14d781667d1", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "bb6dd86e-54b0-4579-8946-f1c45306b5a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063422Z:da02230b-1aaf-4ce7-bcb9-e14d781667d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79dbe0e5f66f8c88c8824f8490575024", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ddafb61-ae8b-4962-8adf-93ea90043038", + "x-ms-client-request-id": "79dbe0e5f66f8c88c8824f8490575024", + "x-ms-correlation-request-id": "3ecd8a4d-5eab-45fc-a9f4-dc5e018ca25e", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "84bde6d2-8dae-4506-93b7-635e7af43722", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063423Z:3ecd8a4d-5eab-45fc-a9f4-dc5e018ca25e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f2505d214fce2bb461cc11840184b7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2af61a5c-e1a8-416f-9e24-8e8beaccfb39", + "x-ms-client-request-id": "4f2505d214fce2bb461cc11840184b7a", + "x-ms-correlation-request-id": "c6a13112-3b61-4f9a-9ad3-19076d8cfe82", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "3d82b79c-3c4e-41f1-954e-d36630ed478e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063425Z:c6a13112-3b61-4f9a-9ad3-19076d8cfe82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da5f8fc5a1f45595e900fb575d935a64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72653bec-f69d-45f4-b870-2465269cc29b", + "x-ms-client-request-id": "da5f8fc5a1f45595e900fb575d935a64", + "x-ms-correlation-request-id": "1a5949e8-edf0-40f0-b940-9d0d019b656e", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "cfd38496-3fef-4283-a4d7-8b06ca11cd21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063426Z:1a5949e8-edf0-40f0-b940-9d0d019b656e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4530dff250efd0d625f93252356f4baf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c59cf829-918f-4c83-8302-8dbd1cf5ce35", + "x-ms-client-request-id": "4530dff250efd0d625f93252356f4baf", + "x-ms-correlation-request-id": "22cbff5b-d530-4762-a2fd-5ca4d4b9ba21", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "f9b0d1b3-c88a-40e7-8f28-67f992cbcf49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063427Z:22cbff5b-d530-4762-a2fd-5ca4d4b9ba21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01bfd53676f8313070cf65fb196484b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7c349f2-05d0-4a56-baf5-02cc17081783", + "x-ms-client-request-id": "01bfd53676f8313070cf65fb196484b3", + "x-ms-correlation-request-id": "9589d44f-56d9-4876-b259-fe5bd91a7683", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "27848bd1-0ffa-4484-9462-718eeccbec75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063428Z:9589d44f-56d9-4876-b259-fe5bd91a7683" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60255cc206e7758ab98eb5fa6e431f79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92155596-3da8-4212-a263-de0fdb29217b", + "x-ms-client-request-id": "60255cc206e7758ab98eb5fa6e431f79", + "x-ms-correlation-request-id": "70d78c95-3473-4591-8dcb-6533db7a167e", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "077214d9-9586-4bb0-a102-2c33ef73ee30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063430Z:70d78c95-3473-4591-8dcb-6533db7a167e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88204bb559d47c6cafffd51feadab7c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6befc612-8b35-47e8-bb9b-9385f5526a37", + "x-ms-client-request-id": "88204bb559d47c6cafffd51feadab7c1", + "x-ms-correlation-request-id": "229029dd-33f6-4a6b-b694-d49ba22c5fc2", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "30563424-aded-4a42-b19a-c63fcef89e2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063431Z:229029dd-33f6-4a6b-b694-d49ba22c5fc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9907f75ea4a30c74a4a4769c135c22c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f323ffeb-8b45-4903-9343-d44c6072957e", + "x-ms-client-request-id": "d9907f75ea4a30c74a4a4769c135c22c", + "x-ms-correlation-request-id": "b37c3846-b549-4ce3-8c1f-d8d1311b6922", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "2b7ac83c-57e9-4932-a2b4-6fa3a42af2ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063432Z:b37c3846-b549-4ce3-8c1f-d8d1311b6922" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd46ecb0fb4368def0a9b1e8306a8ade", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec0131bf-6a73-4d41-afd0-91b326208d6a", + "x-ms-client-request-id": "cd46ecb0fb4368def0a9b1e8306a8ade", + "x-ms-correlation-request-id": "9dcb5e46-0f4d-4709-afbf-c5fbef4d8688", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "c9b6327e-d4c1-4319-a892-7139486e5aea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063434Z:9dcb5e46-0f4d-4709-afbf-c5fbef4d8688" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef84f4d746b2ca2f84ef3d8a1203bb79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "112dcdb8-2530-468b-832a-49c6ce520162", + "x-ms-client-request-id": "ef84f4d746b2ca2f84ef3d8a1203bb79", + "x-ms-correlation-request-id": "ad92ebc6-978b-42c3-976e-503ae7fc4a2f", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "6ad64b1c-8007-4f21-8173-d2512fb6dcf0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063435Z:ad92ebc6-978b-42c3-976e-503ae7fc4a2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe6fa83dea94797da028e9a039dfffdf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb31de63-7eed-4b52-b01d-ca51d4810cf5", + "x-ms-client-request-id": "fe6fa83dea94797da028e9a039dfffdf", + "x-ms-correlation-request-id": "ebd0a534-d262-4c53-8887-cd4d5359751e", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "fb966f0c-474f-4fe9-8b31-8d0a9c31de0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063436Z:ebd0a534-d262-4c53-8887-cd4d5359751e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc9168bfd2b1697abd7c4953be5456ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25690597-bd1e-4bcb-8eb8-fdcd6650f165", + "x-ms-client-request-id": "cc9168bfd2b1697abd7c4953be5456ec", + "x-ms-correlation-request-id": "74e9008d-3b48-472d-9947-3319e844999b", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "e2f79f22-cb58-47ca-9619-6a620ee0c7ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063437Z:74e9008d-3b48-472d-9947-3319e844999b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88ab37ee8cfbed4a760b4f8a5d8e90a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b65c677-9e44-4f98-845f-c558c6bd4394", + "x-ms-client-request-id": "88ab37ee8cfbed4a760b4f8a5d8e90a4", + "x-ms-correlation-request-id": "60202bc1-3a95-4265-9622-93e01b97ca4e", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "9ed73eac-c3f6-4ceb-8c5e-2c8cf9c62436", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063439Z:60202bc1-3a95-4265-9622-93e01b97ca4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9ca5defee716ac82e064017a029bb4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4641f1d8-3ffc-4439-9309-58ff3c17b848", + "x-ms-client-request-id": "a9ca5defee716ac82e064017a029bb4c", + "x-ms-correlation-request-id": "d6d47b9e-e65b-4041-8612-8d09f693dc17", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "df04ddcf-199c-49b2-bec4-d0fe4bb48ae5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063440Z:d6d47b9e-e65b-4041-8612-8d09f693dc17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02b2fcd2773333e41da456a583ef0c2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39a676a5-9462-457e-8554-d08b776b522e", + "x-ms-client-request-id": "02b2fcd2773333e41da456a583ef0c2e", + "x-ms-correlation-request-id": "5519d669-05dc-4fb9-94cb-9c19909a5e89", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "a4135f25-6835-44a4-bf66-8336947c1b8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063441Z:5519d669-05dc-4fb9-94cb-9c19909a5e89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6063a4ebac89007b6e4059f44b334c4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8320018f-c690-439c-819b-447f9e1ace1b", + "x-ms-client-request-id": "6063a4ebac89007b6e4059f44b334c4c", + "x-ms-correlation-request-id": "d57e0fb1-59ca-4aa5-9094-fb588affb5e2", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "1c55d028-ad07-49d0-a8cd-b30dd595be70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063442Z:d57e0fb1-59ca-4aa5-9094-fb588affb5e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61b8024f8edc787179968ccc9722e73e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1762486e-cf4e-487b-9bc8-a7da9bad3d61", + "x-ms-client-request-id": "61b8024f8edc787179968ccc9722e73e", + "x-ms-correlation-request-id": "b88e7d6f-c886-4bf3-a971-3c6c248c2dd4", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "6476967c-b037-4d8a-a943-5cfec7ed3a1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063444Z:b88e7d6f-c886-4bf3-a971-3c6c248c2dd4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb2c12fa5bc625c280b194f21defe8ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6886c8e-9818-4d44-baee-48e1a6b1a6d8", + "x-ms-client-request-id": "fb2c12fa5bc625c280b194f21defe8ea", + "x-ms-correlation-request-id": "e64a5035-d690-4332-8b1e-ce7288bd4e66", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "e8bbb2d5-6ceb-420e-91f4-092ea71c72dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063445Z:e64a5035-d690-4332-8b1e-ce7288bd4e66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80560957aa375d5233ebe6f21fae684b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9e781db-92d1-4463-873f-421f80702a38", + "x-ms-client-request-id": "80560957aa375d5233ebe6f21fae684b", + "x-ms-correlation-request-id": "bf27b1cf-a5af-430b-9058-0e66a1992778", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "523fb334-6f0b-416b-becf-2bac4a86b387", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063447Z:bf27b1cf-a5af-430b-9058-0e66a1992778" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39fa1b595006f4864092e02af97e5a89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c75887cf-372d-488e-a360-7860a3d5a2d1", + "x-ms-client-request-id": "39fa1b595006f4864092e02af97e5a89", + "x-ms-correlation-request-id": "8d43bcc2-9643-47d2-bceb-6dd4c317aad7", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "47e96eef-5288-415e-8011-a5973687ceea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063448Z:8d43bcc2-9643-47d2-bceb-6dd4c317aad7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e75a1ae66cc4f07bfcec8da74cf06d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c955611-0af1-4fcf-96ad-6fa888fbdecc", + "x-ms-client-request-id": "8e75a1ae66cc4f07bfcec8da74cf06d2", + "x-ms-correlation-request-id": "a521ccc1-41f3-4138-87d1-9bb46aebd20e", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "6b77cf4b-a8a2-4b0a-aaea-452f02eeae0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063449Z:a521ccc1-41f3-4138-87d1-9bb46aebd20e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02994849aff506e3826140a4ca2763b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65b87a5f-d48b-42e3-8dd9-bc71c2823bb2", + "x-ms-client-request-id": "02994849aff506e3826140a4ca2763b4", + "x-ms-correlation-request-id": "abb5c3af-4142-45c5-a012-0b5d8dfd2807", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "88bcb3f0-0bd1-407c-b78f-25725b4ed936", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063450Z:abb5c3af-4142-45c5-a012-0b5d8dfd2807" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d445d90da39f27e14ab793788ab8070", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf416eac-88cf-40d1-8b7a-56b1a89b57c1", + "x-ms-client-request-id": "7d445d90da39f27e14ab793788ab8070", + "x-ms-correlation-request-id": "e0505de4-3c81-46e9-8e92-57b4163452e5", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "10214b85-7661-4dd0-bc54-23e2a5ad2418", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063452Z:e0505de4-3c81-46e9-8e92-57b4163452e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0e10d8c58e4ff94be6e0b6a26628497", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f1573ab-092a-4bb3-9c5e-0f86e61c79c9", + "x-ms-client-request-id": "b0e10d8c58e4ff94be6e0b6a26628497", + "x-ms-correlation-request-id": "d1b277d1-d383-495b-80a1-f8d797e6f86a", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "33c25da7-b0c9-478b-9580-e8a951c4ac2c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063453Z:d1b277d1-d383-495b-80a1-f8d797e6f86a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "174a136b888b6f99c9a7ee4935ab7ed6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0e9eb62-820a-4803-9b5d-85deecff02a6", + "x-ms-client-request-id": "174a136b888b6f99c9a7ee4935ab7ed6", + "x-ms-correlation-request-id": "84796040-ac91-49e9-a277-1740531979ec", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "8d1452dd-143a-4222-996c-14e6464847d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063454Z:84796040-ac91-49e9-a277-1740531979ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd18cfe1b24638cfc845bfcace14cbb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2eeb8de-0396-4539-8059-2cd4939c3ee8", + "x-ms-client-request-id": "bd18cfe1b24638cfc845bfcace14cbb1", + "x-ms-correlation-request-id": "d3852a79-2255-4033-8c01-6b72c2d79d72", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "ceedb42a-18d9-4990-95f9-1e574f6bd5b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063455Z:d3852a79-2255-4033-8c01-6b72c2d79d72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74cce126696103e57471e73d6a4ac912", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2fb2568a-2ca9-4159-8ecd-bd7b3ea82434", + "x-ms-client-request-id": "74cce126696103e57471e73d6a4ac912", + "x-ms-correlation-request-id": "b7065c7d-bc66-4a8f-9f5b-acd06bc14c71", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "f0928bdb-d9b0-4ca3-a180-5e94197c3e4a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063457Z:b7065c7d-bc66-4a8f-9f5b-acd06bc14c71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "578834f0c749b85143124e46c8cea0b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae42622b-e337-4db5-8743-8a5d573e189e", + "x-ms-client-request-id": "578834f0c749b85143124e46c8cea0b5", + "x-ms-correlation-request-id": "6e40f4a0-6149-4260-bebb-9cdf70f2a206", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "f212bf62-401f-42c9-89fe-d5d439eec135", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063458Z:6e40f4a0-6149-4260-bebb-9cdf70f2a206" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53223cdb09df7875ea1448d4cb91cd7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:34:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59eec3f2-804f-4a99-ae18-4df4a0a8ed1d", + "x-ms-client-request-id": "53223cdb09df7875ea1448d4cb91cd7e", + "x-ms-correlation-request-id": "0bb82e49-2417-425a-a8c3-0e79156afe30", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "83c295bc-ffb0-4e2f-9c84-812d9b9259a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063459Z:0bb82e49-2417-425a-a8c3-0e79156afe30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9adaad7b748b5f679013304f1b9f3ba5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e164efa-7441-486b-9763-3765acb62c01", + "x-ms-client-request-id": "9adaad7b748b5f679013304f1b9f3ba5", + "x-ms-correlation-request-id": "2dc62625-18f8-409b-8eb8-01ab85cd934e", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "dfbac093-ac12-410e-acac-08a9bf847abe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063500Z:2dc62625-18f8-409b-8eb8-01ab85cd934e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e6231d17627e632bf106c357e7cedb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2471a5bb-878f-4afc-808f-0b25807f76f5", + "x-ms-client-request-id": "2e6231d17627e632bf106c357e7cedb2", + "x-ms-correlation-request-id": "021d8df8-d244-4ec7-a371-9ae3d37d00ca", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "8aa240a4-32ad-4098-8434-4c62e723bdee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063502Z:021d8df8-d244-4ec7-a371-9ae3d37d00ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bcacf4406f3662ad4c3c2cbd9255d4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf8d310c-4878-41d7-b08e-c1364da7d4b0", + "x-ms-client-request-id": "1bcacf4406f3662ad4c3c2cbd9255d4a", + "x-ms-correlation-request-id": "ef4832a6-9ced-43d5-bd90-0470e8e69a6a", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "a5d799f7-6f91-4b32-b748-4adef2f97c2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063503Z:ef4832a6-9ced-43d5-bd90-0470e8e69a6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a03a3d99f2f05567af4da7b0732e114", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa0ac4a1-51df-4103-8c58-e2472b019085", + "x-ms-client-request-id": "9a03a3d99f2f05567af4da7b0732e114", + "x-ms-correlation-request-id": "04450a81-9e38-4d72-b632-77ce5312fd3e", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "fae925e5-246c-4321-8fd0-90266fbc42f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063504Z:04450a81-9e38-4d72-b632-77ce5312fd3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b0b7e261fd4cab107fc5964b3670d99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8deefcac-70fb-43a9-8fcd-c686ede30e7d", + "x-ms-client-request-id": "4b0b7e261fd4cab107fc5964b3670d99", + "x-ms-correlation-request-id": "72964fbd-ebf1-4ad6-b639-0c38bf009132", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "2cb2d45f-5a51-46d2-810d-300b61f2948a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063506Z:72964fbd-ebf1-4ad6-b639-0c38bf009132" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db5b22b25279a48278c5a1ff2baf5ea1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dfeb09a5-368d-493f-ac07-0d51cefafd6f", + "x-ms-client-request-id": "db5b22b25279a48278c5a1ff2baf5ea1", + "x-ms-correlation-request-id": "98e2b4a8-b7f2-438a-a5d4-b87822c11cc2", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "97f0f59a-f2cb-47aa-9a30-1a3ba6c0ba3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063507Z:98e2b4a8-b7f2-438a-a5d4-b87822c11cc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5aa5aee1121aba75f138933246f25113", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a78b510-2534-4b22-9314-db1e635e9c5e", + "x-ms-client-request-id": "5aa5aee1121aba75f138933246f25113", + "x-ms-correlation-request-id": "8ad3a87c-981a-4d34-a95d-12e561e7782d", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "a949a768-6f08-47e4-9386-9d767d31eb10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063508Z:8ad3a87c-981a-4d34-a95d-12e561e7782d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5c840e706d7d39afb66d20f7eb29e57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93f507ae-a9bc-4d61-a77f-c399dcba07e8", + "x-ms-client-request-id": "e5c840e706d7d39afb66d20f7eb29e57", + "x-ms-correlation-request-id": "a45ea46c-e0ab-4dc3-92b5-f54fb6e887da", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "202d423d-bcc4-4cdc-891f-fc503b3530c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063509Z:a45ea46c-e0ab-4dc3-92b5-f54fb6e887da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0482b79db2c2a07faca1e940bf505e86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1314a6df-2911-40a3-b452-9a689747e88c", + "x-ms-client-request-id": "0482b79db2c2a07faca1e940bf505e86", + "x-ms-correlation-request-id": "eaa151ea-9b27-4d39-94b7-8128537bbdd1", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "0754aea9-c9c7-4527-b0fa-015bf97879bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063511Z:eaa151ea-9b27-4d39-94b7-8128537bbdd1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb188d7479e6dbca13d15fb33f663c3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea67f70f-c1ab-4ae2-bded-2f1d1fd76167", + "x-ms-client-request-id": "eb188d7479e6dbca13d15fb33f663c3f", + "x-ms-correlation-request-id": "924befe9-0630-4976-b5cd-9e4955f2a956", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "57e1bf91-7197-4651-813a-6abea54cacbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063512Z:924befe9-0630-4976-b5cd-9e4955f2a956" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e953b994c703451c12739351c5914ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f94f7f6-e378-4b98-8443-249464630eec", + "x-ms-client-request-id": "8e953b994c703451c12739351c5914ab", + "x-ms-correlation-request-id": "b386377e-997a-4416-9a28-f0cec700f13f", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "2352059d-f1cc-458a-8c61-2255b54e63c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063513Z:b386377e-997a-4416-9a28-f0cec700f13f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f09a4c07b3992470eca6f0f053cb6145", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e267ab59-b2ad-4e8d-83cb-eef2b3ea7d3f", + "x-ms-client-request-id": "f09a4c07b3992470eca6f0f053cb6145", + "x-ms-correlation-request-id": "48a89eac-adf3-4a44-9b44-d987d90e9223", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "0e854dc8-f773-4bd1-ae3b-eafdf8e910f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063515Z:48a89eac-adf3-4a44-9b44-d987d90e9223" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84a7aa65cfba27153ce32abe4095beba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dbf7e6a8-9cab-452b-8183-0c77aa30f6c2", + "x-ms-client-request-id": "84a7aa65cfba27153ce32abe4095beba", + "x-ms-correlation-request-id": "8d8d9edf-a726-4d8c-9fbb-9fc254b4ba18", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "d818ebe6-3340-47bc-b76d-a355d9541b0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063516Z:8d8d9edf-a726-4d8c-9fbb-9fc254b4ba18" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2abb3bd4bcbe5a5ca70a2c95b60e1f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34392e50-6633-40b8-86bd-e991e54d6f44", + "x-ms-client-request-id": "f2abb3bd4bcbe5a5ca70a2c95b60e1f5", + "x-ms-correlation-request-id": "2cde4454-f310-4adc-8f77-2dc998214b7e", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "97320ad5-e0b6-499b-89c6-34a94203e75b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063517Z:2cde4454-f310-4adc-8f77-2dc998214b7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72d0f3c68fb238f03673b3b689b1e457", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9d4fc81-a0aa-4133-ba11-4daef415e8d8", + "x-ms-client-request-id": "72d0f3c68fb238f03673b3b689b1e457", + "x-ms-correlation-request-id": "ae85c92a-3f6f-4c89-9acb-32e36d55056a", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "ca6dd00f-3f39-42a1-8263-0df71e11a210", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063518Z:ae85c92a-3f6f-4c89-9acb-32e36d55056a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f3336e86e1f197905c1b94a2d4ccbdc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8bd458fe-93fd-4cc0-860d-0027067a07fb", + "x-ms-client-request-id": "9f3336e86e1f197905c1b94a2d4ccbdc", + "x-ms-correlation-request-id": "5b056cf6-6473-4d35-b126-5c8192c40a9f", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "85dc85ee-4b70-4df4-8dd6-59720f4927d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063520Z:5b056cf6-6473-4d35-b126-5c8192c40a9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cf835024cc42d07c373bc5898ee5c18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f32ea87-28b4-446d-8e46-ebb6bcdbd743", + "x-ms-client-request-id": "4cf835024cc42d07c373bc5898ee5c18", + "x-ms-correlation-request-id": "85f1bf4b-2676-44cc-8417-070d413faea8", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "9007ac51-f1ed-4b6c-8c44-a8ab842c6816", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063521Z:85f1bf4b-2676-44cc-8417-070d413faea8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24e04a8c412d58d57ab76df1d5a60ae9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f360181-e5e7-49fa-a3c6-b8871e0aad42", + "x-ms-client-request-id": "24e04a8c412d58d57ab76df1d5a60ae9", + "x-ms-correlation-request-id": "00d82456-4224-4a55-9c25-e616968ff54e", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "b7df47da-4a18-470a-b866-f10615a611ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063522Z:00d82456-4224-4a55-9c25-e616968ff54e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54b4d7a797b99c922f05dcacb2218016", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25de9a68-710a-4320-9d7b-ede00b9c0152", + "x-ms-client-request-id": "54b4d7a797b99c922f05dcacb2218016", + "x-ms-correlation-request-id": "b9188855-ccce-469d-9c66-c8d9d07931fb", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "0f7d075c-2d27-4304-8be7-a9eb73f94140", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063523Z:b9188855-ccce-469d-9c66-c8d9d07931fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2bda164a66bc0ae5f9fd20dde16571c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6785bc8f-ff50-4278-a0e2-dcf497995f81", + "x-ms-client-request-id": "e2bda164a66bc0ae5f9fd20dde16571c", + "x-ms-correlation-request-id": "04032efc-df99-4de8-a0cc-0e275dd36043", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "5a8da8ab-fe11-4858-9556-8ef98804cac0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063525Z:04032efc-df99-4de8-a0cc-0e275dd36043" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1b0d269083af55eb844f5276529a658", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25520263-5aca-412a-b4fc-6081f2abaaf8", + "x-ms-client-request-id": "c1b0d269083af55eb844f5276529a658", + "x-ms-correlation-request-id": "9ee06c35-8613-465d-b686-dd1a9a7205ec", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "c2024846-d70d-4fc2-b48e-61323619c94e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063526Z:9ee06c35-8613-465d-b686-dd1a9a7205ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "348c563627e9017d28f3f41ac485bd18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "092a0984-db0d-4256-8dee-7948ea379fca", + "x-ms-client-request-id": "348c563627e9017d28f3f41ac485bd18", + "x-ms-correlation-request-id": "5cfa1c50-38ea-412f-9479-8e6a9c649e1a", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "e48d3536-f31d-4c99-82fa-15cd5b9ae090", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063527Z:5cfa1c50-38ea-412f-9479-8e6a9c649e1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df42bfaebf705cdb42c72a27b1875b36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a0fa746-2dfd-4396-97d0-ca7f9c88fced", + "x-ms-client-request-id": "df42bfaebf705cdb42c72a27b1875b36", + "x-ms-correlation-request-id": "9afeb357-04b6-4c04-91b2-53812addfdbd", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "ca77b0d9-e25a-4857-b262-a5f5d96e7912", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063528Z:9afeb357-04b6-4c04-91b2-53812addfdbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87d779f8228a413354af984613443033", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52418420-a4d0-4010-892d-2001860ec570", + "x-ms-client-request-id": "87d779f8228a413354af984613443033", + "x-ms-correlation-request-id": "a4e74932-cbac-4302-b7f0-bd4fa2fde3ad", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "6cc03cd4-c09f-4950-ae0d-0d11be59c8fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063530Z:a4e74932-cbac-4302-b7f0-bd4fa2fde3ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a579dc87c6e676e87b2ff221fd5650a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb5bc1cd-4b52-42d2-b934-4c64d97aae34", + "x-ms-client-request-id": "a579dc87c6e676e87b2ff221fd5650a0", + "x-ms-correlation-request-id": "b5966cb3-42a0-4768-99f8-890361d2609f", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "bd246279-7443-4621-b697-7f3819a2dfae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063531Z:b5966cb3-42a0-4768-99f8-890361d2609f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a21bd9835ad8b8e8c018bc1269549fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98358c8d-258d-462d-ab7a-09240970bf87", + "x-ms-client-request-id": "4a21bd9835ad8b8e8c018bc1269549fe", + "x-ms-correlation-request-id": "74eff36d-1293-4c09-b126-ee9cf2474ad5", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "e40d42d2-2238-4513-a223-af83ce5c9fd1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063532Z:74eff36d-1293-4c09-b126-ee9cf2474ad5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d49ff796b60d315091600c5a301243fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91b22f0a-b25b-43fe-a855-bd9f055e6db7", + "x-ms-client-request-id": "d49ff796b60d315091600c5a301243fd", + "x-ms-correlation-request-id": "dbfedde1-8f17-49a9-a41b-b5a5c498e87e", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "1ad2de0a-b725-4e92-94c6-e8cc881145ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063534Z:dbfedde1-8f17-49a9-a41b-b5a5c498e87e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55aef85ee52251854eee18e53b264fe5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca3b427d-6d71-46f3-9eb2-71f483448d36", + "x-ms-client-request-id": "55aef85ee52251854eee18e53b264fe5", + "x-ms-correlation-request-id": "49fe6744-b079-4f2a-927e-29afe17b965a", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "60c123e0-a94e-4423-b5e7-8767e83023d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063535Z:49fe6744-b079-4f2a-927e-29afe17b965a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "068af3e67bb6e2926defb94d28335a79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d950c20b-d89c-448a-bbed-b3090e939e0e", + "x-ms-client-request-id": "068af3e67bb6e2926defb94d28335a79", + "x-ms-correlation-request-id": "d67bd03d-617a-4b78-a37c-bace9f14a820", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "26711b0a-a959-4a13-ada7-80c9fd901e19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063536Z:d67bd03d-617a-4b78-a37c-bace9f14a820" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e628dbdf3e7b1dc714e861f9d6af66a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05cd57b3-92dd-4627-b5ca-d200c0ed6f93", + "x-ms-client-request-id": "2e628dbdf3e7b1dc714e861f9d6af66a", + "x-ms-correlation-request-id": "99e774c0-25c7-4743-8f5e-9d431d854345", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "4f430ac3-2d3a-44d6-aeb7-4211f55d42c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063537Z:99e774c0-25c7-4743-8f5e-9d431d854345" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c7427103d87e34665cbe7322c37291a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e01aa7f8-540a-4b1f-baec-3c97dbd245b9", + "x-ms-client-request-id": "3c7427103d87e34665cbe7322c37291a", + "x-ms-correlation-request-id": "7883e6de-8f31-4cd1-be06-095dc9764e3c", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "e70cdb4b-d6ff-4bac-88ad-a9afcea880bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063539Z:7883e6de-8f31-4cd1-be06-095dc9764e3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad279e9321c4f2fe17d99468f5734503", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32384ef7-3e36-4b41-bbd2-f7dbfa43057e", + "x-ms-client-request-id": "ad279e9321c4f2fe17d99468f5734503", + "x-ms-correlation-request-id": "a12c91c9-00b6-40fa-92e4-5f07feee4c91", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "a027fb95-6f93-4069-b0e3-6448094b66f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063540Z:a12c91c9-00b6-40fa-92e4-5f07feee4c91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "013c4ef91ebf80f2477fc91b0ba9843a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4372fd45-0047-4080-af61-ac6d9c795839", + "x-ms-client-request-id": "013c4ef91ebf80f2477fc91b0ba9843a", + "x-ms-correlation-request-id": "5f041c72-fab1-4f99-83b1-974de278cabd", + "x-ms-ratelimit-remaining-subscription-reads": "11548", + "x-ms-request-id": "510734c8-1f7e-4214-a841-e3ec601b18db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063541Z:5f041c72-fab1-4f99-83b1-974de278cabd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe8b6c254942efa6298124aea8ddedf1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ed241dc-817f-488d-b203-2261cb4fc993", + "x-ms-client-request-id": "fe8b6c254942efa6298124aea8ddedf1", + "x-ms-correlation-request-id": "39dec9f7-3f60-4acb-b584-026321beba6f", + "x-ms-ratelimit-remaining-subscription-reads": "11547", + "x-ms-request-id": "7259c469-aa1b-4116-817f-b21b6aaafd3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063543Z:39dec9f7-3f60-4acb-b584-026321beba6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd39e48627fb755baca7664458e2e66e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c78f5af4-387b-45d3-886e-694078fc0f09", + "x-ms-client-request-id": "dd39e48627fb755baca7664458e2e66e", + "x-ms-correlation-request-id": "740df699-b4ef-4069-a053-f0d2695137c3", + "x-ms-ratelimit-remaining-subscription-reads": "11546", + "x-ms-request-id": "797827c1-566b-42b1-a665-f3a1fb560e45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063544Z:740df699-b4ef-4069-a053-f0d2695137c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89435a5446e7b0c0a84dd83df943d769", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e612fc4-992f-4d84-bb38-9944d5c5ea8e", + "x-ms-client-request-id": "89435a5446e7b0c0a84dd83df943d769", + "x-ms-correlation-request-id": "8717ebd8-6acd-4c75-a7f5-13893c939c90", + "x-ms-ratelimit-remaining-subscription-reads": "11545", + "x-ms-request-id": "c831313a-d8aa-4660-950c-a7a7940e77fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063545Z:8717ebd8-6acd-4c75-a7f5-13893c939c90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2795d791a770fd3e1116519ae3619746", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "551b2b0f-bab6-4031-864d-c6307cded17f", + "x-ms-client-request-id": "2795d791a770fd3e1116519ae3619746", + "x-ms-correlation-request-id": "a3ebff8c-8a13-4208-bd1b-df3dc57640a1", + "x-ms-ratelimit-remaining-subscription-reads": "11544", + "x-ms-request-id": "f6ecba48-d4ff-488c-afe2-4155ff488bac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063546Z:a3ebff8c-8a13-4208-bd1b-df3dc57640a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d5ab69b649a3f0a248835ae4f1d7c69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14bac2f0-7b7c-4e7a-b7b9-586c5e2143ed", + "x-ms-client-request-id": "4d5ab69b649a3f0a248835ae4f1d7c69", + "x-ms-correlation-request-id": "6dc576ff-0b3f-4e81-8912-8e95586aa222", + "x-ms-ratelimit-remaining-subscription-reads": "11543", + "x-ms-request-id": "c0235571-8de5-4ba8-a5b6-eb51546e7067", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063548Z:6dc576ff-0b3f-4e81-8912-8e95586aa222" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80b3fcd0bf4dadfd1c4578d1f525cc46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "41b8df27-b821-493b-8cab-8555f54b1c7f", + "x-ms-client-request-id": "80b3fcd0bf4dadfd1c4578d1f525cc46", + "x-ms-correlation-request-id": "02ce54aa-87d5-4e65-b083-b7fa62d725c6", + "x-ms-ratelimit-remaining-subscription-reads": "11542", + "x-ms-request-id": "f50e3c5c-6f6d-4649-8b04-603771b2b7d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063549Z:02ce54aa-87d5-4e65-b083-b7fa62d725c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43a291b589e92ccfcc5502e77190aef3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4062879a-db78-49dd-91d6-caab1d23ed84", + "x-ms-client-request-id": "43a291b589e92ccfcc5502e77190aef3", + "x-ms-correlation-request-id": "34775074-3032-4c5f-9201-89b6a7f8274c", + "x-ms-ratelimit-remaining-subscription-reads": "11541", + "x-ms-request-id": "6e74c1d7-e91f-44da-a88d-b84c7e3b014d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063550Z:34775074-3032-4c5f-9201-89b6a7f8274c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6cae79a16aedbf9b8ac3154ec3949fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b61f1243-44c3-492f-b2cf-b3c6e4ed0a67", + "x-ms-client-request-id": "e6cae79a16aedbf9b8ac3154ec3949fe", + "x-ms-correlation-request-id": "d52c98e6-e263-418b-9f58-d7f6942105e2", + "x-ms-ratelimit-remaining-subscription-reads": "11540", + "x-ms-request-id": "bccbdf91-fee0-4866-b2d7-a75e034a12df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063551Z:d52c98e6-e263-418b-9f58-d7f6942105e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdf8efbb387b46802d86b4f7bc163b8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2cdb6ada-1ad6-4823-9c87-c45dda1ac887", + "x-ms-client-request-id": "bdf8efbb387b46802d86b4f7bc163b8b", + "x-ms-correlation-request-id": "b474d3fe-0848-4a7a-8357-f5c3f56f5e7e", + "x-ms-ratelimit-remaining-subscription-reads": "11539", + "x-ms-request-id": "8a81ba9c-7288-45d3-b959-dc6dbd7509c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063553Z:b474d3fe-0848-4a7a-8357-f5c3f56f5e7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e378597e65a9f9797c68a3c577a3f93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43fe3451-508a-4116-8511-7a8a15855434", + "x-ms-client-request-id": "0e378597e65a9f9797c68a3c577a3f93", + "x-ms-correlation-request-id": "a19c74c8-28c6-46c4-8c92-85991c0c040c", + "x-ms-ratelimit-remaining-subscription-reads": "11538", + "x-ms-request-id": "f604cf07-aafd-4339-8cd0-8a4c8d7d63db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063554Z:a19c74c8-28c6-46c4-8c92-85991c0c040c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "822b040bf09761776784b92762021ea2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c395773b-c7ea-4173-b709-8c5a3fa743ea", + "x-ms-client-request-id": "822b040bf09761776784b92762021ea2", + "x-ms-correlation-request-id": "040018af-4a61-4966-b251-3153a2a0f9ed", + "x-ms-ratelimit-remaining-subscription-reads": "11537", + "x-ms-request-id": "ec4d05d5-bffe-491d-ade7-735a1c01cf98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063555Z:040018af-4a61-4966-b251-3153a2a0f9ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67bca6703b02d5a4575925b5ae44eeb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "932fee3b-07d1-4019-9ae7-c076705bcb86", + "x-ms-client-request-id": "67bca6703b02d5a4575925b5ae44eeb2", + "x-ms-correlation-request-id": "caa49ab8-0ca8-4425-b66f-0e01f19de479", + "x-ms-ratelimit-remaining-subscription-reads": "11536", + "x-ms-request-id": "69b77d03-af57-462b-a903-8ddf40b65729", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063556Z:caa49ab8-0ca8-4425-b66f-0e01f19de479" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8eb2047b9eaa6f30dd5a7d62d6f3d95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4792c34e-9f97-4ee0-b7b4-5d24e9024f2d", + "x-ms-client-request-id": "b8eb2047b9eaa6f30dd5a7d62d6f3d95", + "x-ms-correlation-request-id": "b0d602b1-f612-44ca-8581-921d66346a9f", + "x-ms-ratelimit-remaining-subscription-reads": "11535", + "x-ms-request-id": "a3768587-f3f4-4757-befb-935d43795f65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063558Z:b0d602b1-f612-44ca-8581-921d66346a9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1cbe8a8d7bdcf9160562b3ecbc2b223", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:35:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fc718d7-c811-4987-b8ea-aa57b73e9f1a", + "x-ms-client-request-id": "b1cbe8a8d7bdcf9160562b3ecbc2b223", + "x-ms-correlation-request-id": "941bb132-cb6c-41bd-b2f6-a3b2dcc40ea1", + "x-ms-ratelimit-remaining-subscription-reads": "11534", + "x-ms-request-id": "b397370c-278c-46e0-8bc8-afe1f2410035", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063559Z:941bb132-cb6c-41bd-b2f6-a3b2dcc40ea1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41e006956516b7b8b2165a2c94cda8e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ffb9bd7-6c18-480f-931f-1d4bbc2ae7cc", + "x-ms-client-request-id": "41e006956516b7b8b2165a2c94cda8e7", + "x-ms-correlation-request-id": "3888d26f-e955-43bf-bd87-5a3ef56f327e", + "x-ms-ratelimit-remaining-subscription-reads": "11533", + "x-ms-request-id": "1207ce52-dc26-4b07-bd9d-cc8803df6788", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063600Z:3888d26f-e955-43bf-bd87-5a3ef56f327e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c60c901b3c786ff48f1b58938db5db4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52fe70ad-fe3c-454f-a630-d868d6ac2039", + "x-ms-client-request-id": "c60c901b3c786ff48f1b58938db5db4b", + "x-ms-correlation-request-id": "847c5869-4ac5-4850-a06c-f92db50bd379", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "72a4bba0-e182-4fe2-bc0a-ceb71dba97c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063602Z:847c5869-4ac5-4850-a06c-f92db50bd379" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26418323fb8e427f2f13ffa77d653b92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf141d62-4ef9-4581-8dd0-5f977615977d", + "x-ms-client-request-id": "26418323fb8e427f2f13ffa77d653b92", + "x-ms-correlation-request-id": "11452950-dfde-4483-95ac-09c10ce84099", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "6840fb3d-a51d-4fd5-9c86-fefd0b0f7ef5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063603Z:11452950-dfde-4483-95ac-09c10ce84099" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b2243aeecb558aa1171b2fa0d242afc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6052cd8c-848f-4074-879c-6f9668aaa0aa", + "x-ms-client-request-id": "3b2243aeecb558aa1171b2fa0d242afc", + "x-ms-correlation-request-id": "a00584c9-a6e8-4afe-978e-f1dbb6f01832", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "8ed5172b-ef5a-4187-b3a7-8184bc4cd948", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063604Z:a00584c9-a6e8-4afe-978e-f1dbb6f01832" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10090e3b818c1f5811ca96643d4df129", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91e849a6-516b-48a9-97ed-d9e4c0319a42", + "x-ms-client-request-id": "10090e3b818c1f5811ca96643d4df129", + "x-ms-correlation-request-id": "0e320fae-8e56-485d-99ac-aa66ec502000", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "21cb6dcd-1a62-4fda-99fc-5b1388061f69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063606Z:0e320fae-8e56-485d-99ac-aa66ec502000" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49e5c6e0a0923696d9e8151d4984340b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e6ff8de-e271-4195-9102-e0a2c74f5d04", + "x-ms-client-request-id": "49e5c6e0a0923696d9e8151d4984340b", + "x-ms-correlation-request-id": "2dc91087-0161-4ebd-8ed1-b5d4f3e29504", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "b9b9fb65-728f-4db9-a5b6-98b682010aa8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063607Z:2dc91087-0161-4ebd-8ed1-b5d4f3e29504" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f6c02e92a5c2c06eb0229ea56461bc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69f094a6-50fa-437a-a886-87f0f8a9b462", + "x-ms-client-request-id": "6f6c02e92a5c2c06eb0229ea56461bc4", + "x-ms-correlation-request-id": "b33f00b1-b24e-4cda-adb8-3f7a8e83617b", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "beac49a3-9595-4ba2-ba6a-5f54e343018e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063608Z:b33f00b1-b24e-4cda-adb8-3f7a8e83617b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "471a887fe03e9a6a77d237a46c3bd68c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64204911-82eb-474a-9323-d7be6a99886a", + "x-ms-client-request-id": "471a887fe03e9a6a77d237a46c3bd68c", + "x-ms-correlation-request-id": "f8935c0a-2c38-4ece-b8e1-5fb3df41d118", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "17cdc02b-2248-42e1-8114-0f3ae4c59741", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063609Z:f8935c0a-2c38-4ece-b8e1-5fb3df41d118" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a7a8a9582e0b5cdbfb95e8f76acdf93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87c216b4-ce89-47c1-b6ab-2b231fde9516", + "x-ms-client-request-id": "3a7a8a9582e0b5cdbfb95e8f76acdf93", + "x-ms-correlation-request-id": "727e1e27-2917-4fc2-a9d5-6fb80805bacb", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "ed8c8a06-a487-42c5-8493-bea0249c1c90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063611Z:727e1e27-2917-4fc2-a9d5-6fb80805bacb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c19d50cced6a09cc98d1f789f361c0b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b041c63-4c5a-49fb-91f3-2aa81bb18827", + "x-ms-client-request-id": "c19d50cced6a09cc98d1f789f361c0b0", + "x-ms-correlation-request-id": "765f399f-eba1-4657-b700-9acb2dad1f5c", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "dfdfea9f-91af-43af-82b3-291d6e0b0022", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063612Z:765f399f-eba1-4657-b700-9acb2dad1f5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb549d2ce1cbfde4ba64878581da24cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88f4564a-468b-4d72-8ac8-c847fdc2551f", + "x-ms-client-request-id": "cb549d2ce1cbfde4ba64878581da24cb", + "x-ms-correlation-request-id": "1d29ae43-c1a5-4ea8-a3a7-7c8b7b7a57eb", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "ebb7a9fc-9c1f-4eb6-b70f-b5bc24143d5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063613Z:1d29ae43-c1a5-4ea8-a3a7-7c8b7b7a57eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bd7a4f2149da822be70a10e8a44c25e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7efd2c2-dace-405c-b202-831c167614ca", + "x-ms-client-request-id": "1bd7a4f2149da822be70a10e8a44c25e", + "x-ms-correlation-request-id": "79eb24c6-8bbf-4f64-a9fe-82bcc7e9b72d", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "b087c88a-740c-4c04-b831-c8853469cc78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063615Z:79eb24c6-8bbf-4f64-a9fe-82bcc7e9b72d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d962aef91457ebc76c9f0605664788bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f319c864-2647-4882-833a-4dfab47f7753", + "x-ms-client-request-id": "d962aef91457ebc76c9f0605664788bd", + "x-ms-correlation-request-id": "c971fb44-7009-4f8c-bd33-2dd16433e1d6", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "29b60376-3afd-4945-812a-7b70f59aefe7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063616Z:c971fb44-7009-4f8c-bd33-2dd16433e1d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e962bada48a17127aac0d5a3fd57276", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8acd337e-d3f9-4a0d-a86c-7bce01ff1104", + "x-ms-client-request-id": "4e962bada48a17127aac0d5a3fd57276", + "x-ms-correlation-request-id": "19a54761-2ca8-4049-a238-67baef177374", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "9851169e-2705-4d8c-ad5c-d9daa7520b8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063617Z:19a54761-2ca8-4049-a238-67baef177374" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d38c29a14b77de74ddebaffd0d1d4176", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4517f925-055f-45c3-a86b-87888f6b570b", + "x-ms-client-request-id": "d38c29a14b77de74ddebaffd0d1d4176", + "x-ms-correlation-request-id": "a0d6b9fc-73a8-40e5-866d-2ef1467cc71e", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "9df929b7-5401-4bf8-b426-16b743d8345a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063618Z:a0d6b9fc-73a8-40e5-866d-2ef1467cc71e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f61e4e874ad54d39b4a5eab076cac97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1a16d8c-c92a-4148-b8bb-b327b2fc0aae", + "x-ms-client-request-id": "5f61e4e874ad54d39b4a5eab076cac97", + "x-ms-correlation-request-id": "835de81f-ce55-4da0-9ffd-cbcb90cc97bd", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "66fb54fb-7647-43b6-8a2f-d032dee5833e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063620Z:835de81f-ce55-4da0-9ffd-cbcb90cc97bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d64902db4bb6145b7b8719ef414095d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e880a794-9bad-424f-8306-1f9c47490b3b", + "x-ms-client-request-id": "3d64902db4bb6145b7b8719ef414095d", + "x-ms-correlation-request-id": "3b9e86c0-e889-4d04-a491-91ed81058181", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "7c00a073-a548-4ec0-9929-1d4690b08d3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063621Z:3b9e86c0-e889-4d04-a491-91ed81058181" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b72966a13732dc95537372cecc8d670", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c168958-7b93-4cc3-aff4-401dce6b6526", + "x-ms-client-request-id": "5b72966a13732dc95537372cecc8d670", + "x-ms-correlation-request-id": "c01bd6bf-4538-4ca3-8024-4b7015440b38", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "165ce5c1-45e1-492c-ba35-6b9468d50053", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063622Z:c01bd6bf-4538-4ca3-8024-4b7015440b38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dd0183f04b834ba9effa7f402356087", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c317c45f-7a98-46f4-9489-29ca461d040a", + "x-ms-client-request-id": "7dd0183f04b834ba9effa7f402356087", + "x-ms-correlation-request-id": "5f1d9bdc-eb28-4497-942a-e22f4d607512", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "dadd6a76-b6c9-4666-99ee-12b7acb2b361", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063623Z:5f1d9bdc-eb28-4497-942a-e22f4d607512" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7041014051fa1923c636e7847d1874ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80c34261-57fd-4bb7-8748-6b51005e4697", + "x-ms-client-request-id": "7041014051fa1923c636e7847d1874ef", + "x-ms-correlation-request-id": "0e864d8e-83cb-483d-851b-b6027878f935", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "fbc765a0-74f6-4e61-8a77-24787bea987a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063625Z:0e864d8e-83cb-483d-851b-b6027878f935" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc5e00e18c4365a4db3ebc736cd42a20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bfeade33-5021-4351-b661-edbecd80d5c7", + "x-ms-client-request-id": "dc5e00e18c4365a4db3ebc736cd42a20", + "x-ms-correlation-request-id": "f3eb7057-b44a-4671-8042-496c3f56dc05", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "dbb12569-fbf7-486c-8361-a4796067d07c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063626Z:f3eb7057-b44a-4671-8042-496c3f56dc05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebebb0d76687ee76f5b7b6811c36b785", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f19756dd-61c2-4214-b09b-339ba1c3a9c9", + "x-ms-client-request-id": "ebebb0d76687ee76f5b7b6811c36b785", + "x-ms-correlation-request-id": "787d3971-49d9-4bd4-a478-e1ef25d188ec", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "5aa4d959-bc53-4080-b391-2307382394c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063627Z:787d3971-49d9-4bd4-a478-e1ef25d188ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0212b88b83d6b4435cdb94bc94afadf2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6248804-40a2-4e69-ba18-b2975894318b", + "x-ms-client-request-id": "0212b88b83d6b4435cdb94bc94afadf2", + "x-ms-correlation-request-id": "1dcf9572-6f95-4eef-8cdc-1a571140853f", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "de186328-2464-42cb-8fe3-ff1e4ab74d5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063629Z:1dcf9572-6f95-4eef-8cdc-1a571140853f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccadc70c882c7b688970e78cd52249a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33dcb678-3fbc-4535-aaae-0bca49a990a4", + "x-ms-client-request-id": "ccadc70c882c7b688970e78cd52249a5", + "x-ms-correlation-request-id": "a7eab1c7-3519-416c-bfa6-9fa0719f614e", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "382833f5-9288-47e4-8efc-118089656868", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063630Z:a7eab1c7-3519-416c-bfa6-9fa0719f614e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3e8378728c253496d378fabd1ba5945", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e35dad9-71c7-49e4-bee9-c38f7880103c", + "x-ms-client-request-id": "b3e8378728c253496d378fabd1ba5945", + "x-ms-correlation-request-id": "f9e3ccf7-a5be-4f45-b9d5-76cbf86829f9", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "d5c671ce-5fb8-4993-9d99-00a6b1e41a89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063631Z:f9e3ccf7-a5be-4f45-b9d5-76cbf86829f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5575c40aea890258509778669cb6df3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8aa0d80a-5544-4b8a-bfba-8f122596bf03", + "x-ms-client-request-id": "5575c40aea890258509778669cb6df3a", + "x-ms-correlation-request-id": "5497d98e-0c84-4f0a-8884-822aef90dc0e", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "fea819e4-1301-4987-b0d1-f7b471005ef1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063632Z:5497d98e-0c84-4f0a-8884-822aef90dc0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d35ef92f9c6e4307e5a5ff5f9bca9ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13862fde-1ffb-4303-81dc-5158edea8696", + "x-ms-client-request-id": "5d35ef92f9c6e4307e5a5ff5f9bca9ce", + "x-ms-correlation-request-id": "49e53695-8bbf-4099-ad48-4d0e0b04e6a7", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "86a558f6-2af5-41bd-addc-33bc6d2ab10e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063634Z:49e53695-8bbf-4099-ad48-4d0e0b04e6a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1182a116f4ad9c1cdee5632aafe3b6b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1643e851-2357-407f-bfc3-d05408f21573", + "x-ms-client-request-id": "1182a116f4ad9c1cdee5632aafe3b6b6", + "x-ms-correlation-request-id": "a0c87422-1dbf-4597-a2ae-6aa93268edc2", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "23b17b36-2dcc-4ba4-8e4a-121b23b9df88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063635Z:a0c87422-1dbf-4597-a2ae-6aa93268edc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2195558fc85107e9491d62e8b620894", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1013392-4ef0-406a-95b9-c5edf5248d84", + "x-ms-client-request-id": "e2195558fc85107e9491d62e8b620894", + "x-ms-correlation-request-id": "d73684e5-3f91-402c-8dac-86d6732c83f0", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "404ad1d4-6231-41e2-9c55-7c3716554c95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063636Z:d73684e5-3f91-402c-8dac-86d6732c83f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb4fa9edcd349e8cd3987ee19505349a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "935edaaf-672a-45a8-8c91-ba7153cbc344", + "x-ms-client-request-id": "fb4fa9edcd349e8cd3987ee19505349a", + "x-ms-correlation-request-id": "40885ba6-8b49-48d3-b623-09bc93854dbd", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "d5275824-6710-4120-9357-42c99aefc0cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063637Z:40885ba6-8b49-48d3-b623-09bc93854dbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a49da8a3c7a21a4922717c1b1ded117c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4996c22a-b9b5-4e75-ac54-f8c43b97b4ef", + "x-ms-client-request-id": "a49da8a3c7a21a4922717c1b1ded117c", + "x-ms-correlation-request-id": "d961567e-efa1-4223-a497-9e9781c9e0ed", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "c8320790-1707-4e1a-8e5d-e13b938fa375", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063639Z:d961567e-efa1-4223-a497-9e9781c9e0ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "063dcfdcba948a82c87b0fed7d9d7b8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ebd65d2f-5e85-4220-8760-57fe8f3f193c", + "x-ms-client-request-id": "063dcfdcba948a82c87b0fed7d9d7b8e", + "x-ms-correlation-request-id": "1050c482-a8c4-4d7b-8309-b6d676b9bed8", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "1e19d272-b4b5-4344-908e-84c922ea68de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063640Z:1050c482-a8c4-4d7b-8309-b6d676b9bed8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e28b3c5c64c526f16035d9c2507181e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ffaf8fbd-2d91-42cd-8d9a-310b4c106c2a", + "x-ms-client-request-id": "e28b3c5c64c526f16035d9c2507181e5", + "x-ms-correlation-request-id": "5ac37181-0f0e-474a-84f3-4de497e0ca33", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "14eb6cc8-dfea-49f3-9307-bb7e586278ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063641Z:5ac37181-0f0e-474a-84f3-4de497e0ca33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c50402872ec8e8062612dc27b75b9c84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bec7e0c0-7961-444e-bf86-963d69344fd5", + "x-ms-client-request-id": "c50402872ec8e8062612dc27b75b9c84", + "x-ms-correlation-request-id": "d42a848a-4b98-4d9e-a2b3-84b0314f8b77", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "d6ba1893-aa04-4886-81da-53653f66f27a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063642Z:d42a848a-4b98-4d9e-a2b3-84b0314f8b77" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0beeef62f6278b6de16a55fe1bf3956", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "24e43684-ddc2-4ae1-a044-855ee1933439", + "x-ms-client-request-id": "e0beeef62f6278b6de16a55fe1bf3956", + "x-ms-correlation-request-id": "07a0859a-9ef3-45c4-bf4b-a5d6b88f3aa8", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "41777b5e-72cc-42eb-b253-96ed753ada1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063644Z:07a0859a-9ef3-45c4-bf4b-a5d6b88f3aa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b6629fab5992ec635a2bbb288c96e04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b49ae2b-22e5-4921-b7f3-f205c43b16fa", + "x-ms-client-request-id": "7b6629fab5992ec635a2bbb288c96e04", + "x-ms-correlation-request-id": "2b348419-239f-4bae-88ba-8208f154b7fb", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "055067de-b004-48c4-b0c6-7e8145b9df46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063645Z:2b348419-239f-4bae-88ba-8208f154b7fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62cc5598a0b257834b8be7b188a70767", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a814d419-6da1-44e5-8697-dc664b20bcea", + "x-ms-client-request-id": "62cc5598a0b257834b8be7b188a70767", + "x-ms-correlation-request-id": "42bb9e97-fd60-4ea8-98d2-f668d5cddc83", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "59859031-6d62-4684-98b7-8ea1f81a4166", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063646Z:42bb9e97-fd60-4ea8-98d2-f668d5cddc83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e2d85d920f540ea2790abbf7304f014", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75429512-b05c-44ef-9b10-2e547c60dcb6", + "x-ms-client-request-id": "8e2d85d920f540ea2790abbf7304f014", + "x-ms-correlation-request-id": "3ff8d148-fc03-4fb8-bd0f-fe419615500a", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "1d688b26-1dcb-47df-9eaf-14c4d2a42cdd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063648Z:3ff8d148-fc03-4fb8-bd0f-fe419615500a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cc6a1a8d6f259a4a50e300ece15a68e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f77a75d-6fd2-475b-9081-96b85f962078", + "x-ms-client-request-id": "8cc6a1a8d6f259a4a50e300ece15a68e", + "x-ms-correlation-request-id": "956cd94b-6058-41c2-9620-68960091f2c0", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "29939ff1-8b53-4918-b8d9-1a861b4b204d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063649Z:956cd94b-6058-41c2-9620-68960091f2c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02d8539ae09b770e6a8b3b22f5c3e346", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a339d2c6-0e71-4328-b371-4c2e4b1f3521", + "x-ms-client-request-id": "02d8539ae09b770e6a8b3b22f5c3e346", + "x-ms-correlation-request-id": "bc88797d-bb26-40b7-8562-e1c202ce5d89", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "318f7a8a-d882-4658-a1af-a939c970a502", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063650Z:bc88797d-bb26-40b7-8562-e1c202ce5d89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e608d29b7be10274e0d3e8e7f0dc7211", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8aac0fef-4e54-4593-af01-27f8e0b5e174", + "x-ms-client-request-id": "e608d29b7be10274e0d3e8e7f0dc7211", + "x-ms-correlation-request-id": "742a5b73-53c2-409e-b227-14a3d63984dd", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "9b564c8d-d689-4674-84cd-d6f6a3659c94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063651Z:742a5b73-53c2-409e-b227-14a3d63984dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20241ce9ed2bc879924e21669b8264e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9a49431-a2ad-4d70-89d8-906466042115", + "x-ms-client-request-id": "20241ce9ed2bc879924e21669b8264e2", + "x-ms-correlation-request-id": "80e7bb66-37d3-464e-9a57-e723364daf0a", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "72b19b70-7469-45cd-bf86-74b2f50f4200", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063653Z:80e7bb66-37d3-464e-9a57-e723364daf0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb72e92abf0c1fadded521c8f727878e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98f331c7-86df-4f7f-a39e-efb78582be4e", + "x-ms-client-request-id": "fb72e92abf0c1fadded521c8f727878e", + "x-ms-correlation-request-id": "22abc0c6-d04f-4e74-80ca-f28b0dc9a5df", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "7affd523-db6a-44d4-9d36-4ba2791f27dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063654Z:22abc0c6-d04f-4e74-80ca-f28b0dc9a5df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8382919c39fad1a593f5392590e675e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3dae04b6-1032-4c25-a2a2-c39b8bee4619", + "x-ms-client-request-id": "d8382919c39fad1a593f5392590e675e", + "x-ms-correlation-request-id": "e495ec59-4016-4ea9-9eb8-4cf65f34784d", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "3b182a1e-bdd8-4601-8a11-dbb2840ac070", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063655Z:e495ec59-4016-4ea9-9eb8-4cf65f34784d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06bc066f76692a056f054156ccb1d06b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8de448ee-b30b-4e1e-a859-8157bf79e0fe", + "x-ms-client-request-id": "06bc066f76692a056f054156ccb1d06b", + "x-ms-correlation-request-id": "e16d6aa4-af09-44a1-909d-41006248b543", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "d1421b0d-a47b-443c-9de0-43d5da97aa94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063657Z:e16d6aa4-af09-44a1-909d-41006248b543" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "714d93c78c4a6743cec4a2cc6b1ac6d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4a695c5-6b42-44a0-830c-0d237e4fa471", + "x-ms-client-request-id": "714d93c78c4a6743cec4a2cc6b1ac6d0", + "x-ms-correlation-request-id": "8871f884-2228-498b-b1be-25c3e5ca2996", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "2c196963-cffa-4700-97c1-331b06158e39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063658Z:8871f884-2228-498b-b1be-25c3e5ca2996" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f158c36d816aa224240d689982c4e1a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:36:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eba3c557-4804-4608-bb82-350094ad4f8f", + "x-ms-client-request-id": "f158c36d816aa224240d689982c4e1a8", + "x-ms-correlation-request-id": "b837d3a8-936e-485e-9d4a-54cfeadc2105", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "92160266-ebdc-4031-95f5-1cce4b96f798", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063659Z:b837d3a8-936e-485e-9d4a-54cfeadc2105" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6cbe86ef6c0e314c35537a4d438be54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c0d3696-f43f-45c1-b2a5-e559a2fd6d0c", + "x-ms-client-request-id": "c6cbe86ef6c0e314c35537a4d438be54", + "x-ms-correlation-request-id": "98463746-f4c1-4f2b-b084-61444f5ab1c3", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "3948bbb1-24ab-40c7-b2d3-1c5e5b2c2477", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063700Z:98463746-f4c1-4f2b-b084-61444f5ab1c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08e8703fdf5845006faa4d3c23a9e40a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6e1a4f3-86e7-4c97-a34d-131a7b195d63", + "x-ms-client-request-id": "08e8703fdf5845006faa4d3c23a9e40a", + "x-ms-correlation-request-id": "cfc1c2e7-b2df-4af1-9f25-780c47038332", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "3cbdc27b-47e8-4fe1-aeb5-a62400cb819d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063702Z:cfc1c2e7-b2df-4af1-9f25-780c47038332" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "835dfae3ff4f770fae752d15497fceec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "945d1df4-a3ec-4734-96ae-f95ebaea3f99", + "x-ms-client-request-id": "835dfae3ff4f770fae752d15497fceec", + "x-ms-correlation-request-id": "a9472786-ec86-4bb2-ae7d-7e5da4911f97", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "1a495601-b063-4b81-a04b-1938934b6867", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063703Z:a9472786-ec86-4bb2-ae7d-7e5da4911f97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "115a144ed8dc8f4fe7855716a9d7bf1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53313bda-43e1-4720-a2b5-5d9d903602d3", + "x-ms-client-request-id": "115a144ed8dc8f4fe7855716a9d7bf1a", + "x-ms-correlation-request-id": "572e04a6-79ab-4198-85ba-5bbf661b0a7a", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "487a81fb-e1de-4994-9ff9-2b1c93f292d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063704Z:572e04a6-79ab-4198-85ba-5bbf661b0a7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9c12d703bda3f05607059e2b1ebfcef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6c61eca-b6eb-47c6-ad1d-49a424c80861", + "x-ms-client-request-id": "d9c12d703bda3f05607059e2b1ebfcef", + "x-ms-correlation-request-id": "d9b6a2b0-efd6-4eee-8c28-fb718c3bb602", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "745119b3-65e2-44cf-9c49-8e616198d38b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063706Z:d9b6a2b0-efd6-4eee-8c28-fb718c3bb602" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fed60dbd24e0a2daace9cc9a8f9ced7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4a520b9-09a3-4297-8477-29b1534b5b95", + "x-ms-client-request-id": "0fed60dbd24e0a2daace9cc9a8f9ced7", + "x-ms-correlation-request-id": "8ca625f4-92ba-4700-a61d-2d09fe017027", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "3fd1bee7-386e-4b33-819f-4cb2d916fe07", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063708Z:8ca625f4-92ba-4700-a61d-2d09fe017027" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ca413b5f4bd13110e1bb06b7f6dddfb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ba77278-3b38-43d2-8dd1-3b2322e3ad49", + "x-ms-client-request-id": "1ca413b5f4bd13110e1bb06b7f6dddfb", + "x-ms-correlation-request-id": "c585411f-cc2d-48a7-8bca-de8daf820e83", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "4c813f4f-9c23-4cbb-b2f6-9fee306618f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063709Z:c585411f-cc2d-48a7-8bca-de8daf820e83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "483a6788b0e99dcbffb72f0b9f3b9667", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "70d5afcc-e3c5-47e6-8468-d165fc29ae98", + "x-ms-client-request-id": "483a6788b0e99dcbffb72f0b9f3b9667", + "x-ms-correlation-request-id": "b877e4c6-4165-4342-83a2-c30db325ea7b", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "3bfbcb1d-6c7f-45e9-ac8f-a4ea710c237e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063711Z:b877e4c6-4165-4342-83a2-c30db325ea7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d2d82a2e047e7314eda003322c18b3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cfe47a0a-aa02-492e-8222-537fd987ca7c", + "x-ms-client-request-id": "9d2d82a2e047e7314eda003322c18b3d", + "x-ms-correlation-request-id": "9e9d9cbc-0c7e-4e76-b36b-9ac1043f10c1", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "9ec02322-2c11-4d61-8394-4db0eaf72ed5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063712Z:9e9d9cbc-0c7e-4e76-b36b-9ac1043f10c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4140a0f185be04ed48061c06c50674d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db8beb3e-998f-4557-95cf-4e0068a4778e", + "x-ms-client-request-id": "4140a0f185be04ed48061c06c50674d2", + "x-ms-correlation-request-id": "2ad59137-dbe4-4345-a5ee-a7af7e2b3fef", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "d4e5dd9d-3fe6-43fa-82e5-19caaed79c23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063713Z:2ad59137-dbe4-4345-a5ee-a7af7e2b3fef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcc949843f3fa8b43553f90faf977b3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1695ec0-6265-4153-ba44-613f770fe3db", + "x-ms-client-request-id": "fcc949843f3fa8b43553f90faf977b3e", + "x-ms-correlation-request-id": "78d802ec-aaa9-4658-8f6f-cb452dfecbae", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "4e43be41-6767-4f6b-9ff0-86b976672dcd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063715Z:78d802ec-aaa9-4658-8f6f-cb452dfecbae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff1af22c55fa1da894285541c42b2148", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18b815fe-ebe6-4d90-8b44-2c16a841739c", + "x-ms-client-request-id": "ff1af22c55fa1da894285541c42b2148", + "x-ms-correlation-request-id": "4488e1dc-8b9c-4386-b365-c983f666cd7a", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "5f337ecd-472e-422e-a74b-6fbc12a07f65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063716Z:4488e1dc-8b9c-4386-b365-c983f666cd7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9af2e658ef8b1fdeb980b6b8bdd54b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1515f421-4eea-4824-942c-8ba4b4140747", + "x-ms-client-request-id": "d9af2e658ef8b1fdeb980b6b8bdd54b1", + "x-ms-correlation-request-id": "98575c5b-90de-4207-9482-3c2a2fbf6da1", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "9b0b1d2b-b48e-4a9f-8af4-085b211c2332", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063717Z:98575c5b-90de-4207-9482-3c2a2fbf6da1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3dade8a75eb2fd7a0ac6717ea73e40a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "331302e3-1212-4fe9-a816-93567fc53780", + "x-ms-client-request-id": "d3dade8a75eb2fd7a0ac6717ea73e40a", + "x-ms-correlation-request-id": "3c43e1f0-770b-4cfb-88d7-0ef421521158", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "fc6ae06b-2be8-4ea1-a370-a557cecdb472", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063718Z:3c43e1f0-770b-4cfb-88d7-0ef421521158" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81a9b131a2e79d45f4691362493d91b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c93082c-b18a-4838-96f8-2e9ba115f66e", + "x-ms-client-request-id": "81a9b131a2e79d45f4691362493d91b6", + "x-ms-correlation-request-id": "1f122002-948f-49fe-ae0b-1f06f71ec428", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "191a73b1-056b-4d9a-bced-ad7fc26f0e37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063720Z:1f122002-948f-49fe-ae0b-1f06f71ec428" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5b6a3d34e51f05d5680384c26e6c778", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "498532cd-dbfe-4ebd-91d9-87225fc59e79", + "x-ms-client-request-id": "e5b6a3d34e51f05d5680384c26e6c778", + "x-ms-correlation-request-id": "61cf3ba1-d5a5-49f1-be60-63b2c307566c", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "8ceaa910-89ae-4b72-9ad0-c86708001ed2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063721Z:61cf3ba1-d5a5-49f1-be60-63b2c307566c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da3901b3d333e7c9983cde826275e562", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e51d67de-24ea-4dcf-8ec6-53f1cc8ce862", + "x-ms-client-request-id": "da3901b3d333e7c9983cde826275e562", + "x-ms-correlation-request-id": "5c502ec5-4302-4204-a332-570fb3220ac7", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "9987cbcc-ad8d-4efb-abbb-4fb1b40766e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063722Z:5c502ec5-4302-4204-a332-570fb3220ac7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4643b01afebce3b953b92b6769f9760e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d9163bd-1e9c-4b5a-91d5-5eef2fc191e5", + "x-ms-client-request-id": "4643b01afebce3b953b92b6769f9760e", + "x-ms-correlation-request-id": "0771044b-d08f-4b0c-b67e-bd68f34e32fa", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "9f8297bf-42b0-40ac-b8c7-0d463907f562", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063724Z:0771044b-d08f-4b0c-b67e-bd68f34e32fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48ae9aa2b7040082dace4d146fda8ee1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "82b12813-0529-4561-ae44-7cda66a5994f", + "x-ms-client-request-id": "48ae9aa2b7040082dace4d146fda8ee1", + "x-ms-correlation-request-id": "cd8dfef2-f6d7-4aa1-9376-806ccd36d9d9", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "1addadce-a2f1-408c-b725-3e2e01fe162c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063725Z:cd8dfef2-f6d7-4aa1-9376-806ccd36d9d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7532d69a80a3b5bc4855867aa7617d9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4eec98c-5d17-4187-8352-54c973afb5e3", + "x-ms-client-request-id": "7532d69a80a3b5bc4855867aa7617d9f", + "x-ms-correlation-request-id": "1f8d4b08-c7e7-4683-b546-9ad4a8b52222", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "6a24aa3f-94b8-4ebe-82a1-f3b0b3223240", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063726Z:1f8d4b08-c7e7-4683-b546-9ad4a8b52222" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7e0d0c59dc6635e2e426cedb1a47379", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d720cda3-d17c-4bf6-9486-4f4fd1360f52", + "x-ms-client-request-id": "c7e0d0c59dc6635e2e426cedb1a47379", + "x-ms-correlation-request-id": "debbe248-ff64-4fec-a439-1f9314605cb1", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "12481af0-bba6-4d5b-9add-6631f5a393d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063727Z:debbe248-ff64-4fec-a439-1f9314605cb1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93cc4a2a01c7216bdef900ae30085878", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "592caf9d-9a5f-4f7b-91ef-b28c09217460", + "x-ms-client-request-id": "93cc4a2a01c7216bdef900ae30085878", + "x-ms-correlation-request-id": "0d15667c-420a-40de-96c8-9c3774a6157f", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "a9dfdc85-7089-425d-9b55-7da311f18b6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063729Z:0d15667c-420a-40de-96c8-9c3774a6157f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f4eae50c6fafd1a77ce476014ce04a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21927d90-d789-4683-928f-9c123cd0402c", + "x-ms-client-request-id": "9f4eae50c6fafd1a77ce476014ce04a3", + "x-ms-correlation-request-id": "23fc1ed4-7cea-48a1-bd22-1e481b17c001", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "0941d7dc-d24d-45cb-b9a1-ab98c93e2f3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063730Z:23fc1ed4-7cea-48a1-bd22-1e481b17c001" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d4f0de2e995c4d765bee9cd9caf3225", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f878a27-4797-4c7d-abb8-d61934b27dd9", + "x-ms-client-request-id": "5d4f0de2e995c4d765bee9cd9caf3225", + "x-ms-correlation-request-id": "a43059ec-b7d8-49bc-a10b-a2c884c2f5d1", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "c3820304-7469-4f05-86d5-137c6cf6767f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063731Z:a43059ec-b7d8-49bc-a10b-a2c884c2f5d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "029df4e9d455647e2fce1bf8b90b0d10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "770c8617-948a-4ffc-b506-e5492e1e2df0", + "x-ms-client-request-id": "029df4e9d455647e2fce1bf8b90b0d10", + "x-ms-correlation-request-id": "044acfba-c4ad-41c6-816e-375ec667de8c", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "8af9e3d9-59ed-4769-9cce-749522f3e51d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063732Z:044acfba-c4ad-41c6-816e-375ec667de8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23cc5cf4fbb866e3d68a393bdc4d60c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a80874a7-a4b1-4a13-8eb9-a05768a483c1", + "x-ms-client-request-id": "23cc5cf4fbb866e3d68a393bdc4d60c8", + "x-ms-correlation-request-id": "0be7a194-2485-4087-b094-a21bc10def00", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "856087e9-443c-4575-9fd3-5847a4683211", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063734Z:0be7a194-2485-4087-b094-a21bc10def00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2076229c01310e4e8eeb2dc6cedf0b5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8963c159-cf61-417f-9590-d3a5ea8a1b5f", + "x-ms-client-request-id": "2076229c01310e4e8eeb2dc6cedf0b5a", + "x-ms-correlation-request-id": "b6e5f8ff-deff-4601-a46c-1d0f176914f8", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "97346b7f-e5fb-459d-8daa-0aa2b520caa1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063735Z:b6e5f8ff-deff-4601-a46c-1d0f176914f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40d8d9b10ee3ee6c11362ccb9a4287e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "490fdf18-0139-420a-8503-a903a97d57bb", + "x-ms-client-request-id": "40d8d9b10ee3ee6c11362ccb9a4287e2", + "x-ms-correlation-request-id": "863d447e-bfda-4c13-b7d7-422cbd907095", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "5323c30e-d871-43eb-a4d0-7e7dcf554098", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063736Z:863d447e-bfda-4c13-b7d7-422cbd907095" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "975b536ded94f3de0ebe94cdce1c98f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1bad482-5a41-45b7-8190-17b313245207", + "x-ms-client-request-id": "975b536ded94f3de0ebe94cdce1c98f6", + "x-ms-correlation-request-id": "f5a8d367-65fc-457c-b435-a61bd8ca8e2a", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "7f1758bb-70e3-4eb6-818f-d509cebf68df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063737Z:f5a8d367-65fc-457c-b435-a61bd8ca8e2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "038adf7e20748ee4b5870ffad482734c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ebe98d3d-edb9-4130-869f-ecf8cc1593c4", + "x-ms-client-request-id": "038adf7e20748ee4b5870ffad482734c", + "x-ms-correlation-request-id": "0387ac35-87cd-472b-a6a6-27dc58850163", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "e7790fd9-5b4c-498f-aeba-b64d896d8a20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063739Z:0387ac35-87cd-472b-a6a6-27dc58850163" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a584a637484c4c5fae53125799f1ff4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e3d1786-2dc3-41a9-add4-3c1772f96065", + "x-ms-client-request-id": "7a584a637484c4c5fae53125799f1ff4", + "x-ms-correlation-request-id": "6786ae75-febb-482e-9fe7-d10fdbaab67e", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "7fbc85c4-1c5e-4a70-a8cd-ef5d2402f7dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063740Z:6786ae75-febb-482e-9fe7-d10fdbaab67e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb4c369d83b84d6d6fcde20ddee31e8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "262ab976-d7c7-45f1-add5-ea59aa7d0b15", + "x-ms-client-request-id": "bb4c369d83b84d6d6fcde20ddee31e8c", + "x-ms-correlation-request-id": "ed6f45be-15e9-44e6-b5d4-88860ef5cfe5", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "ad8249ba-dc08-4aa9-86ec-8ea289e8e407", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063741Z:ed6f45be-15e9-44e6-b5d4-88860ef5cfe5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8369484a1ec40a7219c6088feebe1416", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c0e7bbd-efcd-4a2d-a633-4425a0cc35dd", + "x-ms-client-request-id": "8369484a1ec40a7219c6088feebe1416", + "x-ms-correlation-request-id": "b8413ffe-d87a-4798-aab6-4900e1247d44", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "2d4ed10d-9836-4353-a625-0fcb8f33af0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063743Z:b8413ffe-d87a-4798-aab6-4900e1247d44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e5d1a68b835df94dd0b0ab692b8e516", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48b35ddc-0553-4c7c-97be-2ab01814e90d", + "x-ms-client-request-id": "9e5d1a68b835df94dd0b0ab692b8e516", + "x-ms-correlation-request-id": "64b15a0e-a9f6-40b4-ba37-b8d300951f9d", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "34358b3f-5a94-451f-931a-4775387655f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063744Z:64b15a0e-a9f6-40b4-ba37-b8d300951f9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30dba5c79c357e30c342a1f17bde5eb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "932c30c7-e80b-4e1f-82cc-7b8da1f4bc6c", + "x-ms-client-request-id": "30dba5c79c357e30c342a1f17bde5eb0", + "x-ms-correlation-request-id": "0545be4e-7e30-4575-a6bb-1fde87c67534", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "a2f3eb3b-7ff4-4282-b7d7-58a7ca45a79a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063745Z:0545be4e-7e30-4575-a6bb-1fde87c67534" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3a5cbb87f869256b489a6b914bb7861", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "536d1af3-7674-457e-aa85-6d8482708c5a", + "x-ms-client-request-id": "c3a5cbb87f869256b489a6b914bb7861", + "x-ms-correlation-request-id": "23153cf8-00a0-4cd6-9924-d452add540e9", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "a579ce42-70e9-4c18-9466-16e5abbdb124", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063746Z:23153cf8-00a0-4cd6-9924-d452add540e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48c7f2e0e3e3cbe0eadfdaf317a264fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "447d3104-3306-4e81-a035-445cfb00bd2d", + "x-ms-client-request-id": "48c7f2e0e3e3cbe0eadfdaf317a264fe", + "x-ms-correlation-request-id": "7d698147-dde8-430d-bc53-b58760cd567d", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "0e57f451-479f-4d17-9b99-6179c979c9aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063748Z:7d698147-dde8-430d-bc53-b58760cd567d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6fe59ac221347904f487cabf5776a08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c73eb14d-cc04-453c-941a-972ff50621ad", + "x-ms-client-request-id": "c6fe59ac221347904f487cabf5776a08", + "x-ms-correlation-request-id": "e6cc1cc2-01a4-492e-a5ab-cc1d19db16c2", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "c970e334-6fd1-4ab8-b038-f8d66ad81cb6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063749Z:e6cc1cc2-01a4-492e-a5ab-cc1d19db16c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89103fc91517d5cdebd9d9a7a4637a12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76703855-a8f1-4fa3-b920-31b9cdeb8b66", + "x-ms-client-request-id": "89103fc91517d5cdebd9d9a7a4637a12", + "x-ms-correlation-request-id": "6d33377e-7e4e-4e41-9400-f154344a5193", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "9f3616a8-9ddf-4e61-8f19-dafaf7c18a96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063750Z:6d33377e-7e4e-4e41-9400-f154344a5193" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba0ca825b2bcbe4e617ff99a6735d573", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f530ffb-7961-48b2-b32f-801e9cd82ee4", + "x-ms-client-request-id": "ba0ca825b2bcbe4e617ff99a6735d573", + "x-ms-correlation-request-id": "83810e29-dd51-4c2b-8454-28e27bf85b80", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "705c4e6d-1889-48e8-a905-6a4a3bbe092f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063751Z:83810e29-dd51-4c2b-8454-28e27bf85b80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d729d274db9196e78c29da3948e9a3ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f8b5b71-9e68-42c0-9e69-7d135ce08d9b", + "x-ms-client-request-id": "d729d274db9196e78c29da3948e9a3ec", + "x-ms-correlation-request-id": "0196d86f-c791-44fa-a70b-511c09e7faf0", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "d78ddb93-b786-416e-8753-bb5539dea2f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063753Z:0196d86f-c791-44fa-a70b-511c09e7faf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d866aceb06a164bf15227971c326db6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eeaa873d-12b9-4593-b555-b97f8007b49a", + "x-ms-client-request-id": "4d866aceb06a164bf15227971c326db6", + "x-ms-correlation-request-id": "5e0e9a09-9b23-4843-9772-66be870325d5", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "755265c2-248d-4b68-ba8a-05e7c26c112a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063754Z:5e0e9a09-9b23-4843-9772-66be870325d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2326503a3394980c1752d93d8147578", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe1f1c16-4ca3-48a7-ac60-f031f75dd35e", + "x-ms-client-request-id": "d2326503a3394980c1752d93d8147578", + "x-ms-correlation-request-id": "9c6008f1-da8f-4e33-b978-f3137e955b23", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "732bacea-85e1-49c2-9d8d-e3b61cb11ce1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063755Z:9c6008f1-da8f-4e33-b978-f3137e955b23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fdcc0cdc87aec4088613e63fb44f7a59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3e839f6-6ede-4b1d-955c-23e350592594", + "x-ms-client-request-id": "fdcc0cdc87aec4088613e63fb44f7a59", + "x-ms-correlation-request-id": "ad832f7d-18a2-4802-90f1-ab941711baf9", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "ccf0569e-f497-4fd9-a22f-8257ffb0b49d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063757Z:ad832f7d-18a2-4802-90f1-ab941711baf9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e23624bbd0b62ab3e93c8cf482b73edd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b416e3f-aa3a-46e9-b1ec-3d644b090e5e", + "x-ms-client-request-id": "e23624bbd0b62ab3e93c8cf482b73edd", + "x-ms-correlation-request-id": "00c59939-dd9c-45ad-9c3f-76203e0e3591", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "8dcb798d-58a7-4364-9672-a08daaa03493", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063758Z:00c59939-dd9c-45ad-9c3f-76203e0e3591" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fbbaedc70667b075d6e4c26bd419571", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:37:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0552a783-c38f-47f7-adfc-289ed91aa9eb", + "x-ms-client-request-id": "0fbbaedc70667b075d6e4c26bd419571", + "x-ms-correlation-request-id": "9eeb5eb6-772e-4bc4-be3b-b3bedc31046d", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "25410ca4-ca72-48e2-8ea4-2c9116d821f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063759Z:9eeb5eb6-772e-4bc4-be3b-b3bedc31046d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3d8d4fb92de0bc259a21372fb1342ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2707fdf3-7c2c-48e7-911d-219925203320", + "x-ms-client-request-id": "b3d8d4fb92de0bc259a21372fb1342ce", + "x-ms-correlation-request-id": "ae351542-7772-46da-ae97-a9a3ef23569f", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "b125d5fd-9a13-49e2-bba0-c49dcd0aaa24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063800Z:ae351542-7772-46da-ae97-a9a3ef23569f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "056208d46a944af31dba8548848d6da8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6a05bbd-0bc4-4282-b53f-0aacdcb43ba7", + "x-ms-client-request-id": "056208d46a944af31dba8548848d6da8", + "x-ms-correlation-request-id": "bd7f8fac-8b34-4ac6-bacf-bbc966d3e11e", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "66f98048-8084-4c4e-af21-a82295f26ef9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063802Z:bd7f8fac-8b34-4ac6-bacf-bbc966d3e11e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "adf91ba68bdf4afeecafb5c45d948049", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98d8c4e3-7435-406b-bb2c-f2e3f4a1efc0", + "x-ms-client-request-id": "adf91ba68bdf4afeecafb5c45d948049", + "x-ms-correlation-request-id": "b9991218-5c5a-455e-a69f-089cb0a627e6", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "b63ff852-484e-416b-a483-c96513d1c246", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063803Z:b9991218-5c5a-455e-a69f-089cb0a627e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4517d2b8fde90dce08d96230c7a87cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a723db3-9973-4731-a1b5-dbcc6b87f124", + "x-ms-client-request-id": "b4517d2b8fde90dce08d96230c7a87cc", + "x-ms-correlation-request-id": "6a914d5d-a96c-40d0-bb99-0d5ba4f4fc27", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "c58a703c-cda5-48ca-9c33-8e4df2b76068", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063804Z:6a914d5d-a96c-40d0-bb99-0d5ba4f4fc27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfcb6a34941a49ee091819e5b52fed88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "824ae504-70e0-4466-978e-bb3a77ec44a1", + "x-ms-client-request-id": "dfcb6a34941a49ee091819e5b52fed88", + "x-ms-correlation-request-id": "be77ce85-b42a-46ca-84bb-d1222f94a92f", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "5cee811a-e2fb-496e-98b4-9299216d3997", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063805Z:be77ce85-b42a-46ca-84bb-d1222f94a92f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "061c3c39b83b16c93e68cd52f4db3d72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f35dcfe-dc45-4428-a1cb-16c4c371560c", + "x-ms-client-request-id": "061c3c39b83b16c93e68cd52f4db3d72", + "x-ms-correlation-request-id": "5f2b4a68-9350-4a83-8ff6-751f72545076", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "b522fdaf-88f2-42c6-b4cc-f42ac65c19ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063807Z:5f2b4a68-9350-4a83-8ff6-751f72545076" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f28fe827a0c8972f8f08aac676f7dbb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f4dd3c8-6d7b-407e-be67-b74e7e487bba", + "x-ms-client-request-id": "f28fe827a0c8972f8f08aac676f7dbb0", + "x-ms-correlation-request-id": "2f3a400a-3096-4a5f-9cad-2265e47d4694", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "0dfa04b9-9c24-445e-bcd2-d5d0a33c49d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063808Z:2f3a400a-3096-4a5f-9cad-2265e47d4694" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0ea0da0805d7b91a1b5a0b1c69c542e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e5d2f80-0a14-4aaf-a7bd-94b393379983", + "x-ms-client-request-id": "d0ea0da0805d7b91a1b5a0b1c69c542e", + "x-ms-correlation-request-id": "151f7f4d-c717-495c-aa87-cea3907fc4cf", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "3e76840e-5162-49e9-bdde-f355d0ef5e51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063809Z:151f7f4d-c717-495c-aa87-cea3907fc4cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccbda7dbfba098bf0d8477320e03a047", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83c39bf9-0116-454a-b4fb-53c75ac5a4cb", + "x-ms-client-request-id": "ccbda7dbfba098bf0d8477320e03a047", + "x-ms-correlation-request-id": "7c5d4757-e81e-49c9-abfd-8dfbcea85e71", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "c6ee71e0-d0cb-451f-abd1-429ebbae53b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063811Z:7c5d4757-e81e-49c9-abfd-8dfbcea85e71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6b21c8d6cf1a71457135113ff7dd0f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a272e57d-9603-4014-8f0e-b9643b8c1606", + "x-ms-client-request-id": "e6b21c8d6cf1a71457135113ff7dd0f2", + "x-ms-correlation-request-id": "76c0da13-4bdf-4c69-abd7-bd3a3a577923", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "782e9dca-6bf0-411e-a55c-33076eb745e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063812Z:76c0da13-4bdf-4c69-abd7-bd3a3a577923" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ceeb7bb40e39a4104d51c3d8095f6d9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf0a32a4-1c38-4710-9c3e-f43d49c837b2", + "x-ms-client-request-id": "ceeb7bb40e39a4104d51c3d8095f6d9d", + "x-ms-correlation-request-id": "b22611fb-e61a-4893-82d1-139371d43a4f", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "97dd10ef-b6d5-40b9-9b9f-67efff36fbd1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063813Z:b22611fb-e61a-4893-82d1-139371d43a4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa2458146eea6e3d9216758da9ac988f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8acdb63f-fb62-402f-a7b8-6a03e7c8b6ae", + "x-ms-client-request-id": "aa2458146eea6e3d9216758da9ac988f", + "x-ms-correlation-request-id": "55b4aa62-cd11-4c4b-baf6-07241a22d2c4", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "f5742d00-4a5e-46fa-98da-e677caa7f3f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063814Z:55b4aa62-cd11-4c4b-baf6-07241a22d2c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "927e84b4d2187e0e0c0d989fa83b9df8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fbb4d25b-ae25-436e-a492-869b34a26af2", + "x-ms-client-request-id": "927e84b4d2187e0e0c0d989fa83b9df8", + "x-ms-correlation-request-id": "7811b724-f7c1-435e-8f62-a30f2f418224", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "3dc452f1-18c9-4903-aa1b-975d99837cbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063816Z:7811b724-f7c1-435e-8f62-a30f2f418224" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7ffb3a5265845083d7c3b239983fba1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad2df235-805a-4189-a187-f4f8d0222484", + "x-ms-client-request-id": "a7ffb3a5265845083d7c3b239983fba1", + "x-ms-correlation-request-id": "86aef780-8c73-4483-9e19-779969319c1c", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "1534f335-2ecf-411b-be7b-30153537ee84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063817Z:86aef780-8c73-4483-9e19-779969319c1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "852434b8dae042854aa59dddd59dc657", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ee21abe-eadb-46e1-8d38-df7bc9898fd1", + "x-ms-client-request-id": "852434b8dae042854aa59dddd59dc657", + "x-ms-correlation-request-id": "22f7eb50-8255-4b6a-b8b0-f787755db29d", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "48b38196-5d9a-4c71-aa9a-30094090ca26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063818Z:22f7eb50-8255-4b6a-b8b0-f787755db29d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6e77d79f1ad8e367c38559b96ebe489", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b0eaaa3-6891-4ec8-a0be-b966743496b7", + "x-ms-client-request-id": "f6e77d79f1ad8e367c38559b96ebe489", + "x-ms-correlation-request-id": "5dffceb9-7442-4903-812e-a2cac3b60cc8", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "28da5346-1ef1-4546-9dd5-0f05cf8e0bad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063819Z:5dffceb9-7442-4903-812e-a2cac3b60cc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74e7f7121817cb172ebc5cb2882a709f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94525e6f-2a12-450c-8a26-69d09d144322", + "x-ms-client-request-id": "74e7f7121817cb172ebc5cb2882a709f", + "x-ms-correlation-request-id": "0a33bb6c-7228-4e35-af72-520e579ce531", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "cf75df3c-893c-469d-a660-cf9deefbfaea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063821Z:0a33bb6c-7228-4e35-af72-520e579ce531" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1caae4b6059cc6f4fd9508a885e9ac5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b941d0f0-39d5-4277-bbcb-b98032be9b0d", + "x-ms-client-request-id": "1caae4b6059cc6f4fd9508a885e9ac5f", + "x-ms-correlation-request-id": "f075bd58-5de3-4b2c-aafe-ebfeceff614f", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "9aca5abb-a4b0-46ef-9ac5-1b465a6a4c46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063822Z:f075bd58-5de3-4b2c-aafe-ebfeceff614f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "decb14c151b6603f651bc7f095830551", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b028de4-cafb-4a73-a4fd-1cdc74a807df", + "x-ms-client-request-id": "decb14c151b6603f651bc7f095830551", + "x-ms-correlation-request-id": "ada455f8-a1be-4f76-8c9f-31e21e08671d", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "df660734-a1fe-4937-a932-156e3e1fa4f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063823Z:ada455f8-a1be-4f76-8c9f-31e21e08671d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1e5b5c7c8410dec032177810f6f4645", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0bf596b-6b5a-437a-865e-f16077190efa", + "x-ms-client-request-id": "b1e5b5c7c8410dec032177810f6f4645", + "x-ms-correlation-request-id": "fcc71a3f-ebc0-404e-be15-713fba126db6", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "cebba4a9-c917-4fa5-95d8-0a532aa11785", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063825Z:fcc71a3f-ebc0-404e-be15-713fba126db6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73f1fc10925f64e9a549b7803d033079", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc859240-e953-49be-b4a4-601b7fe7c9da", + "x-ms-client-request-id": "73f1fc10925f64e9a549b7803d033079", + "x-ms-correlation-request-id": "731ecd36-6e18-4859-984f-b7207cba8023", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "113a46a2-51f5-4f99-9c10-a2c884e4150e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063826Z:731ecd36-6e18-4859-984f-b7207cba8023" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfe0b690fa03f91e28bedb94dabd50f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85599815-7f5f-46ca-9f37-31c8d1e34b9b", + "x-ms-client-request-id": "cfe0b690fa03f91e28bedb94dabd50f5", + "x-ms-correlation-request-id": "6618a20f-b053-40ae-928f-58e501354049", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "3d1e7d4b-8e2e-46df-9d02-b56869a4bcf9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063827Z:6618a20f-b053-40ae-928f-58e501354049" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98e082d5929235f2cc810cf7106ccfff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3d32335-6807-4157-b1bb-775d382817c8", + "x-ms-client-request-id": "98e082d5929235f2cc810cf7106ccfff", + "x-ms-correlation-request-id": "7c44a32d-c9cf-4255-96f3-167be6b130c2", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "278ee382-653b-4912-86c1-0fb447da08fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063828Z:7c44a32d-c9cf-4255-96f3-167be6b130c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58f1fdf0768f1641def84ba0b75489e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cbbb3c02-a66e-4c44-b6eb-ca2c68d53095", + "x-ms-client-request-id": "58f1fdf0768f1641def84ba0b75489e7", + "x-ms-correlation-request-id": "67080be6-484c-4ab3-96df-e3e17609ea20", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "42670885-19ec-4e4c-8f05-62888239ff42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063830Z:67080be6-484c-4ab3-96df-e3e17609ea20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbaac1f89723fde6c4aa0382ee26e8bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f357b7cb-80d0-4d5a-80a3-e7af0fb3db83", + "x-ms-client-request-id": "bbaac1f89723fde6c4aa0382ee26e8bb", + "x-ms-correlation-request-id": "6c7012a8-086f-442b-91aa-dcb561791dad", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "5a37ca4c-9acf-46a8-8471-2acd71fe453f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063831Z:6c7012a8-086f-442b-91aa-dcb561791dad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dca4dbeef8cb5f6640c9ba9947517e77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aee98426-8675-4abe-b482-e82e4b03d73a", + "x-ms-client-request-id": "dca4dbeef8cb5f6640c9ba9947517e77", + "x-ms-correlation-request-id": "cb75f1f0-49a4-42a3-bfc8-eca16773f01f", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "3bcd6e77-806b-427b-a5d6-2ccc160d8785", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063832Z:cb75f1f0-49a4-42a3-bfc8-eca16773f01f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4fff24f814c258dc16f494e572bf28b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76e40ff0-a4f1-48f0-a05f-f62aa0345fa2", + "x-ms-client-request-id": "4fff24f814c258dc16f494e572bf28b7", + "x-ms-correlation-request-id": "e2513102-d193-41a2-81ee-dfb6a02be2a1", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "e87dc25e-5f42-463b-90b9-cca068cd3189", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063833Z:e2513102-d193-41a2-81ee-dfb6a02be2a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbb18f10acb0001c5a4b7a59dd4db672", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85d5788b-3c4a-457d-a13b-7658dc878a95", + "x-ms-client-request-id": "dbb18f10acb0001c5a4b7a59dd4db672", + "x-ms-correlation-request-id": "e1ff7790-5343-46ba-9e86-d2c31d847041", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "01f8a2d6-719e-4433-8c0d-0ba78466314a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063835Z:e1ff7790-5343-46ba-9e86-d2c31d847041" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c98a8b2b9827daf9ff4bc5d76381ec81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd7da6e1-d94f-4503-a1ac-1f33ff889b8a", + "x-ms-client-request-id": "c98a8b2b9827daf9ff4bc5d76381ec81", + "x-ms-correlation-request-id": "85f5d8fc-b597-43d3-bfbd-6a164e54dfda", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "e41bacc7-5be0-4e18-b3aa-7d33a885bb40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063836Z:85f5d8fc-b597-43d3-bfbd-6a164e54dfda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b78902a1a3a04bc708fef57699827bc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4ec3b9b-4a4e-47ec-9046-9c6924655c31", + "x-ms-client-request-id": "b78902a1a3a04bc708fef57699827bc9", + "x-ms-correlation-request-id": "531f8aa1-afe2-472a-afe8-4eea006a46b0", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "8db90c89-551c-47ea-9a62-5361271426c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063837Z:531f8aa1-afe2-472a-afe8-4eea006a46b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7b9223d5e35779096d6dc65e6449dd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47c6b59e-66c7-41b9-9c7c-cdec3039a65c", + "x-ms-client-request-id": "e7b9223d5e35779096d6dc65e6449dd9", + "x-ms-correlation-request-id": "ac951a87-31fa-4097-9bc2-1fc8fbb12c39", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "139aed60-f94c-433e-9549-d7cc64f3477a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063839Z:ac951a87-31fa-4097-9bc2-1fc8fbb12c39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dab7f95efec388d1c43ec128a382417c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f5867e6-04b9-4cca-8d4c-102f0a5b27dc", + "x-ms-client-request-id": "dab7f95efec388d1c43ec128a382417c", + "x-ms-correlation-request-id": "65fcec33-6c26-42ab-8057-9946bb8b6c32", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "78f2b318-b224-45fb-8c9f-a4c72cba011b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063840Z:65fcec33-6c26-42ab-8057-9946bb8b6c32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "409afbcf05c7434c721221c9c76264c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb6d1d79-8165-4aa9-8641-4be01803755e", + "x-ms-client-request-id": "409afbcf05c7434c721221c9c76264c4", + "x-ms-correlation-request-id": "d25286c9-6c1d-4c1c-80df-635b4e78d16a", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "44f724e0-4e11-4267-bb50-a391531182b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063841Z:d25286c9-6c1d-4c1c-80df-635b4e78d16a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0181b61a0ca3e06503122f69c67d413", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fef79b17-6087-402d-9e08-2ed8097ab6fc", + "x-ms-client-request-id": "a0181b61a0ca3e06503122f69c67d413", + "x-ms-correlation-request-id": "076fabdb-5528-44a1-9f6c-f0e0e2702f9a", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "800c2b68-5d27-451b-85f0-0bcec8c2a098", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063842Z:076fabdb-5528-44a1-9f6c-f0e0e2702f9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea955f955daa5911ac7468b1dd08c162", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fc8e07a-cbf2-4b40-a0ce-12a0b04d4ba2", + "x-ms-client-request-id": "ea955f955daa5911ac7468b1dd08c162", + "x-ms-correlation-request-id": "2caab24e-7e14-4afa-8b4f-2fb5337f9f4c", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "f4ec7858-3bf3-498a-82a6-82b6dddd8911", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063844Z:2caab24e-7e14-4afa-8b4f-2fb5337f9f4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87c6fddaa06a2fb1f55bef96e255a60a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fb089dd-bbed-465d-a0a2-b09c71c71c52", + "x-ms-client-request-id": "87c6fddaa06a2fb1f55bef96e255a60a", + "x-ms-correlation-request-id": "4ed249cc-5af1-4bcf-bee0-f0a52eb20a2e", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "82ab2c1b-ac5a-41d8-8ce6-9391fb074f80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063845Z:4ed249cc-5af1-4bcf-bee0-f0a52eb20a2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67330d3d79cc04190abef35638556148", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a49678ef-e3b7-44a0-b9d6-5d93eba2ac13", + "x-ms-client-request-id": "67330d3d79cc04190abef35638556148", + "x-ms-correlation-request-id": "bdb7ba93-6687-43c7-bdd9-ec0826b2f676", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "322ec8d4-9c6e-469e-b56a-bcf8aced71a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063846Z:bdb7ba93-6687-43c7-bdd9-ec0826b2f676" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f1cc06f4da1f4a9ad66f54f6e7b7657", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b4aa057-0efc-48b9-8513-28273f529570", + "x-ms-client-request-id": "9f1cc06f4da1f4a9ad66f54f6e7b7657", + "x-ms-correlation-request-id": "acbf1133-7948-4838-99b2-fa5bfb897396", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "45c8cc25-aeb9-414f-8caf-f5164350413c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063847Z:acbf1133-7948-4838-99b2-fa5bfb897396" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0735ece59d56095e3c27dabad5bf79f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84f6b177-7430-44be-9e7c-3a402423560d", + "x-ms-client-request-id": "d0735ece59d56095e3c27dabad5bf79f", + "x-ms-correlation-request-id": "454007a5-95ba-4851-9883-36cb88e521ff", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "f271b326-ea37-4d6a-8b1a-3b16f3c1b10d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063849Z:454007a5-95ba-4851-9883-36cb88e521ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2226a6fa0639ef69643eba6684ca968e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32b49d56-ec38-4815-a8a9-1edb3f14a61f", + "x-ms-client-request-id": "2226a6fa0639ef69643eba6684ca968e", + "x-ms-correlation-request-id": "5a21be79-6b1c-4d03-81ef-b0d8cb984689", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "489df6ad-b3fd-43ac-a746-0abdebce0646", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063850Z:5a21be79-6b1c-4d03-81ef-b0d8cb984689" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9879c4890e116722abbbcded0fd4751", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0d47a4d-d284-4fe4-9a79-043bde77188a", + "x-ms-client-request-id": "d9879c4890e116722abbbcded0fd4751", + "x-ms-correlation-request-id": "d1f9d990-c3cc-4eda-b4b4-73abfa8165f4", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "423c18a8-a27a-4a3b-8700-9c3b89df7c63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063851Z:d1f9d990-c3cc-4eda-b4b4-73abfa8165f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c754556f5454c71df5846c969f2fdc18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8a04172-6a07-4af6-a424-fdccd7556fb5", + "x-ms-client-request-id": "c754556f5454c71df5846c969f2fdc18", + "x-ms-correlation-request-id": "5788fa32-4e7b-4e1d-8bcf-99acc1b10c6f", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "245b38c0-f793-47db-8185-86ac9b7e1ce5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063853Z:5788fa32-4e7b-4e1d-8bcf-99acc1b10c6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1162ee2c1dd369be3410f77d4a8a1f66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca5c95eb-7448-4048-8e63-6328147074d3", + "x-ms-client-request-id": "1162ee2c1dd369be3410f77d4a8a1f66", + "x-ms-correlation-request-id": "9369e83d-d865-436a-a36b-ddedd45e9eb8", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "88999704-4f59-4119-a5b7-a35f9f82d112", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063854Z:9369e83d-d865-436a-a36b-ddedd45e9eb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ef768f6cf75f4397ec0e45d24dc76fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50e635b1-5d78-42d3-a1e1-d1ff506ff8c9", + "x-ms-client-request-id": "2ef768f6cf75f4397ec0e45d24dc76fb", + "x-ms-correlation-request-id": "c478533c-323b-47ff-9cb8-e41e795cf9a9", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "9be66015-14c0-420b-80e1-aa7700ac2446", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063855Z:c478533c-323b-47ff-9cb8-e41e795cf9a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1b2a3df369b527d97eb93445ca07c6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6512f7b-b6cf-4c8a-ab9e-0aa229365803", + "x-ms-client-request-id": "e1b2a3df369b527d97eb93445ca07c6a", + "x-ms-correlation-request-id": "4791ea02-07e3-4a37-bfcb-c49d7b63d2c4", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "77fca054-d793-4291-aa3c-aeb92ba7385f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063856Z:4791ea02-07e3-4a37-bfcb-c49d7b63d2c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "379f0564ad385ca2b46e921338614457", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32e11d1f-3cae-4aed-bf3a-f785cd9b2a5d", + "x-ms-client-request-id": "379f0564ad385ca2b46e921338614457", + "x-ms-correlation-request-id": "e07bcab3-3990-4f84-b3fb-56dc9044e6b2", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "13523140-0db3-4287-ad7e-ffcd074eab40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063858Z:e07bcab3-3990-4f84-b3fb-56dc9044e6b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a79efb9a3dd7c0cbeaa4978a3cf597de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78e0aeaf-5e07-476a-898f-1e3659ea409e", + "x-ms-client-request-id": "a79efb9a3dd7c0cbeaa4978a3cf597de", + "x-ms-correlation-request-id": "3a2eae84-97b2-4c2b-8e2d-d9be23708ae5", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "8d12ba9b-8231-4fa4-97bd-dc1d0441c1a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063859Z:3a2eae84-97b2-4c2b-8e2d-d9be23708ae5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ef87a433e3c31c300552d2ca36a1936", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:38:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3bddc4ff-5210-49eb-81ba-22a2b3f99538", + "x-ms-client-request-id": "1ef87a433e3c31c300552d2ca36a1936", + "x-ms-correlation-request-id": "217bc25a-d25b-425b-a70f-16a34751c8f0", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "eee65394-cdd0-4e6b-a686-2065fe4a00bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063900Z:217bc25a-d25b-425b-a70f-16a34751c8f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61aa3ba6d50127933adf4c93161820be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "338c96dc-c6d4-483e-900e-34576bc511d4", + "x-ms-client-request-id": "61aa3ba6d50127933adf4c93161820be", + "x-ms-correlation-request-id": "5d0e4bf8-bde0-49e5-b3bf-7f22ef15974e", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "86284be1-3baa-4d0e-ba75-4e9934d8294d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063901Z:5d0e4bf8-bde0-49e5-b3bf-7f22ef15974e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "becfb4d726685b1b376ca782109e1c7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5dee1938-57ea-4cad-9844-46e4ff47ff88", + "x-ms-client-request-id": "becfb4d726685b1b376ca782109e1c7f", + "x-ms-correlation-request-id": "3cef137c-c04d-4e2d-ad01-40ed590a3f1a", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "c5a82bc0-b79f-4c00-ad14-64171156ce32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063903Z:3cef137c-c04d-4e2d-ad01-40ed590a3f1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00e3618b364b6edce7d1e35cf2301be7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8769cb3a-e3fa-44b1-ac0d-47a892256e6d", + "x-ms-client-request-id": "00e3618b364b6edce7d1e35cf2301be7", + "x-ms-correlation-request-id": "4cb3c9a1-0a85-415d-8083-ac4c931018d9", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "a2b7baf4-8117-4443-9a3e-fef9154fadbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063904Z:4cb3c9a1-0a85-415d-8083-ac4c931018d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee556e345b9a80cd1f4e29942e10179b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "833135d6-daba-4459-b509-d9e8777d33ac", + "x-ms-client-request-id": "ee556e345b9a80cd1f4e29942e10179b", + "x-ms-correlation-request-id": "cae98b10-9f44-4d8e-ad2c-a98bfe7256cf", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "580c02df-1f3b-4c27-8faf-fabdcb3ee30c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063905Z:cae98b10-9f44-4d8e-ad2c-a98bfe7256cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b407ccc21f35a173d861d79742be6906", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de6077a5-09df-4217-9df9-0cd75ff4f003", + "x-ms-client-request-id": "b407ccc21f35a173d861d79742be6906", + "x-ms-correlation-request-id": "7635ad7a-7ba7-4d03-8e5a-88ac57da1177", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "18a2814d-45d1-42be-9a4c-4ba0d13760bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063907Z:7635ad7a-7ba7-4d03-8e5a-88ac57da1177" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a14dbf512d492fe59462e1fc0c4740d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5eb00591-3de7-4cbb-a17c-403acaf7184a", + "x-ms-client-request-id": "a14dbf512d492fe59462e1fc0c4740d6", + "x-ms-correlation-request-id": "9192b4f8-9fc6-47d4-a863-c8a6e9af32bf", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "1660c54c-2bd5-478f-9b82-3f64471c37f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063908Z:9192b4f8-9fc6-47d4-a863-c8a6e9af32bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "259a47ba662814b2fbb4163984363e60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "931763b2-ccb8-4e00-9236-5cbc04f71689", + "x-ms-client-request-id": "259a47ba662814b2fbb4163984363e60", + "x-ms-correlation-request-id": "9aca148e-90fd-425f-9da0-3decde6c1aa1", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "bbc4ae9a-0fe4-433c-8051-d64b2b765dcf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063909Z:9aca148e-90fd-425f-9da0-3decde6c1aa1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e4322e575c39452e7d820d23e769490", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cef0c27d-f721-41c2-b1c2-b2102ede20ad", + "x-ms-client-request-id": "6e4322e575c39452e7d820d23e769490", + "x-ms-correlation-request-id": "9fdccaa6-5532-4c00-91c3-40e804afb9d6", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "a825b06f-3248-4b6b-a49a-5735c94d86d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063910Z:9fdccaa6-5532-4c00-91c3-40e804afb9d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fadd01214324eade0c38a69516abaa5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6887cd1e-778f-4d80-8129-193ef5196c9e", + "x-ms-client-request-id": "fadd01214324eade0c38a69516abaa5d", + "x-ms-correlation-request-id": "3fab561d-ede2-484b-8d4d-3c6a2d8ab114", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "a05e635f-b99a-409c-84f3-d9be4da30b2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063912Z:3fab561d-ede2-484b-8d4d-3c6a2d8ab114" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9168124d1044412f5053d5045e0d684", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5e3106a-3635-4322-8181-93a7e76b7e0a", + "x-ms-client-request-id": "e9168124d1044412f5053d5045e0d684", + "x-ms-correlation-request-id": "bc8ccbd3-2116-4664-a72b-efeb2a0ad783", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "084b3cf0-9385-4e9b-96e1-d477a2d4c374", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063913Z:bc8ccbd3-2116-4664-a72b-efeb2a0ad783" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8318861f4459a13b4458618bcebd7d3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3790803e-6d41-4e33-99f8-e50bcba3d654", + "x-ms-client-request-id": "8318861f4459a13b4458618bcebd7d3b", + "x-ms-correlation-request-id": "8e99c526-e382-4e29-b88c-15cfe139cfef", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "114f92c0-7601-4001-a9bf-6505067ae6aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063914Z:8e99c526-e382-4e29-b88c-15cfe139cfef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdaec22dab5f4f8bee98041f068da42c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16dcd7dc-1208-46ea-8296-a84a142d5f7a", + "x-ms-client-request-id": "bdaec22dab5f4f8bee98041f068da42c", + "x-ms-correlation-request-id": "481de3c9-1c33-47c8-8b37-897b168c188c", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "c7844d86-8aed-44b0-84b9-af9b07c5eea5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063916Z:481de3c9-1c33-47c8-8b37-897b168c188c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "907622612793df044574a4ac6f867638", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "62928159-0073-4dec-b0c5-92183b9c0ee6", + "x-ms-client-request-id": "907622612793df044574a4ac6f867638", + "x-ms-correlation-request-id": "27d736f9-3f07-4077-8fed-dd344282207e", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "e311e029-a9be-46f2-a1f5-e066ddaa9906", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063917Z:27d736f9-3f07-4077-8fed-dd344282207e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8322018719317424fac894c03f1b9bb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa8d2298-c86a-4b3c-9cef-4e83d1a04684", + "x-ms-client-request-id": "8322018719317424fac894c03f1b9bb6", + "x-ms-correlation-request-id": "be6ae7c4-b0c1-4a1b-838a-10a7d3516a82", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "3d22c2ac-971e-48ce-9269-c42b10451b95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063918Z:be6ae7c4-b0c1-4a1b-838a-10a7d3516a82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac2934b3ed4605a8bdce77ea06dfe067", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86895888-99ef-44f0-b06e-7859cfc2881e", + "x-ms-client-request-id": "ac2934b3ed4605a8bdce77ea06dfe067", + "x-ms-correlation-request-id": "02f0a07b-0c01-40dc-8e9e-4eb670bb1ea1", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "2c341fc7-b4f9-4943-bdb1-efd614679437", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063919Z:02f0a07b-0c01-40dc-8e9e-4eb670bb1ea1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0598cc21216b48fafd0295cb92439f2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8722e60-ee2d-400f-b732-68e051f47579", + "x-ms-client-request-id": "0598cc21216b48fafd0295cb92439f2a", + "x-ms-correlation-request-id": "f1162de7-4d96-49a0-8442-b7a3ac55e72b", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "d0c7c0cd-d458-4760-8423-b80f70d19755", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063921Z:f1162de7-4d96-49a0-8442-b7a3ac55e72b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3af8edd9c95d99f1581cc563a2396d1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43b9f0ce-3644-4ed8-a98a-3a4f145b8a6a", + "x-ms-client-request-id": "3af8edd9c95d99f1581cc563a2396d1b", + "x-ms-correlation-request-id": "3ce12616-0ce5-4b78-a5f8-8e1e78e22a27", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "ec42bdb4-87ce-45a8-80d7-56e5234714a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063922Z:3ce12616-0ce5-4b78-a5f8-8e1e78e22a27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "739f2ce89683914b39e1ae4458dd737a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88b8b089-0032-4697-948c-4915bbc76a6d", + "x-ms-client-request-id": "739f2ce89683914b39e1ae4458dd737a", + "x-ms-correlation-request-id": "3858d359-f97e-42f1-a8b4-b78a39a9993d", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "34fdeb27-4b6f-4550-9dfc-0142977f100a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063923Z:3858d359-f97e-42f1-a8b4-b78a39a9993d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18114d2ea5e7570adaffac4e5c97a6c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e87468f4-0fca-416e-b1ee-f91e1a232a73", + "x-ms-client-request-id": "18114d2ea5e7570adaffac4e5c97a6c4", + "x-ms-correlation-request-id": "b20a2cef-3cb5-45ff-b778-30dccd3744ef", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "bb079613-35b7-42c5-8b0a-f93e7a958c5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063924Z:b20a2cef-3cb5-45ff-b778-30dccd3744ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65e379942ba443a6a267007b1bac407b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a92781b-ce78-4be0-9512-90e4e720fe86", + "x-ms-client-request-id": "65e379942ba443a6a267007b1bac407b", + "x-ms-correlation-request-id": "b468c649-550b-4963-9eb5-0f6a70badd9a", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "03bbf0e9-d6ab-4a0f-b3d5-e9db75bb5797", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063926Z:b468c649-550b-4963-9eb5-0f6a70badd9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54344ba95528423422479883eafd34a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56829666-3de6-4c44-8ae2-dbeaa2eeb2de", + "x-ms-client-request-id": "54344ba95528423422479883eafd34a2", + "x-ms-correlation-request-id": "46b876e3-5501-4af9-a533-6d148d8da91f", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "74fd5cc1-eb4d-45c6-885a-1b01588e7c53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063927Z:46b876e3-5501-4af9-a533-6d148d8da91f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "deb0ea3b0dfa02d5a6ce767fa48e3c2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08f6ab3c-0073-418c-bc04-0705f323331f", + "x-ms-client-request-id": "deb0ea3b0dfa02d5a6ce767fa48e3c2e", + "x-ms-correlation-request-id": "3aec5b9a-01d9-4fa9-ae6d-18d481081565", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "134d9b16-4cc7-45a0-a827-4e1d556ae395", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063929Z:3aec5b9a-01d9-4fa9-ae6d-18d481081565" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11a430be51633f9b45a0435d922358a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91e693fe-fca6-4f43-b199-e39f3d1d1b4a", + "x-ms-client-request-id": "11a430be51633f9b45a0435d922358a4", + "x-ms-correlation-request-id": "51fdfef7-f052-44ed-b01a-94b97366e4df", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "3a9d1722-0ad9-4eac-9725-003956442df4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063930Z:51fdfef7-f052-44ed-b01a-94b97366e4df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31405e3262fc9c817531ae5adeb49d93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f738b27e-6e62-4f1d-8e65-8ffb9d8b1c1f", + "x-ms-client-request-id": "31405e3262fc9c817531ae5adeb49d93", + "x-ms-correlation-request-id": "4369f968-5a70-454c-bd42-20161252d47c", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "f501b17f-1aaa-48a8-a614-47b188843a97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063931Z:4369f968-5a70-454c-bd42-20161252d47c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9c56a0a2359e93e4e709859c9777083", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ded8a77-5f4d-4c66-ab4c-112cda6df0c3", + "x-ms-client-request-id": "b9c56a0a2359e93e4e709859c9777083", + "x-ms-correlation-request-id": "24d53df2-5a3f-47ec-b38b-ca342081847f", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "3f1402b6-8cc8-49da-9468-58b6c74c1339", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063932Z:24d53df2-5a3f-47ec-b38b-ca342081847f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "464dd1750b4d5b32af079b32a3416091", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26f53b0c-1d31-4c33-8d56-a648b2f58963", + "x-ms-client-request-id": "464dd1750b4d5b32af079b32a3416091", + "x-ms-correlation-request-id": "092eb2c7-bf44-4fa5-af2d-598096331a75", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "0af8ed14-a627-4e41-a305-e67433956bbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063934Z:092eb2c7-bf44-4fa5-af2d-598096331a75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2852af029e5d0f4b1f57e28bc927d2fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e79d895e-f505-48de-9ae0-1062e8bc8a1a", + "x-ms-client-request-id": "2852af029e5d0f4b1f57e28bc927d2fe", + "x-ms-correlation-request-id": "f8664a17-5944-4441-ba0c-4e3de27365fd", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "128cc4c8-c25d-45d2-bc66-5d0d3a1e5f15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063935Z:f8664a17-5944-4441-ba0c-4e3de27365fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ce42bc15766ff4538690a51870c460c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dabae530-e4ac-45ca-b52c-92eac47c1c4b", + "x-ms-client-request-id": "0ce42bc15766ff4538690a51870c460c", + "x-ms-correlation-request-id": "987ad189-e75a-4200-947f-1459fe9b0662", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "5eff4279-473e-4c94-bb0e-d4c83489ba7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063937Z:987ad189-e75a-4200-947f-1459fe9b0662" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "195607104724d625863e26f628a69287", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46e49146-e6af-42d7-926e-87d543906dc4", + "x-ms-client-request-id": "195607104724d625863e26f628a69287", + "x-ms-correlation-request-id": "d119c7bf-6c0a-46b0-9e38-23c4af0649a0", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "bef76c13-7609-4458-8a5f-31505a3ab2a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063938Z:d119c7bf-6c0a-46b0-9e38-23c4af0649a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78709d34545cab2a6953eff494f98813", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "208e1425-3664-49a1-8d85-491867d6e953", + "x-ms-client-request-id": "78709d34545cab2a6953eff494f98813", + "x-ms-correlation-request-id": "53b7c372-722b-43c3-ba44-4358fb36e9ef", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "b818bee3-760a-4167-9a82-7b081b295af9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063940Z:53b7c372-722b-43c3-ba44-4358fb36e9ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c17bd511b9d079d9050e8628304fd691", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4728eddd-6c61-45d8-93d9-c02f5becfa39", + "x-ms-client-request-id": "c17bd511b9d079d9050e8628304fd691", + "x-ms-correlation-request-id": "aba2bcc8-26af-4bbb-900d-9d61e94dfe7a", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "cab014c1-5c12-4eed-9af3-e4c78d93b032", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063941Z:aba2bcc8-26af-4bbb-900d-9d61e94dfe7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e91c83d6cd9bbbafddabafd05831428c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26ed4d5e-c531-4de4-9e4e-054bc3c57cc4", + "x-ms-client-request-id": "e91c83d6cd9bbbafddabafd05831428c", + "x-ms-correlation-request-id": "ce00991b-a0be-4b17-8608-cb0584c0da6c", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "18c58327-4110-49c0-a539-c0f383772b8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063942Z:ce00991b-a0be-4b17-8608-cb0584c0da6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53e513b6d02b7bb6c3f7724ece017a1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52aa5c75-4439-4eb9-be87-47ccb601a203", + "x-ms-client-request-id": "53e513b6d02b7bb6c3f7724ece017a1a", + "x-ms-correlation-request-id": "010a594e-f782-45b1-ae26-555d49f716d7", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "6f5d322c-1534-4286-ba0a-ca682203a4c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063944Z:010a594e-f782-45b1-ae26-555d49f716d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "101d5d7d9edd437725bfe425090921d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "07c1f50d-0535-46d4-924f-4b83b69a8d2d", + "x-ms-client-request-id": "101d5d7d9edd437725bfe425090921d4", + "x-ms-correlation-request-id": "223707dc-3772-44cb-80b8-306a0b663a17", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "d3733d40-22cc-4145-acc7-9c31ea79a7fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063945Z:223707dc-3772-44cb-80b8-306a0b663a17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d72f9cc836a0666cca025a45b61eddb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55ded156-c62e-41b7-ae33-0d21c5548d86", + "x-ms-client-request-id": "1d72f9cc836a0666cca025a45b61eddb", + "x-ms-correlation-request-id": "9e19d892-7c62-467d-ab71-6dfb3ecafc8f", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "8a116524-5cd6-4e74-a94a-b98174b0f686", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063946Z:9e19d892-7c62-467d-ab71-6dfb3ecafc8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa539531311317af9ba22d6ceb9172ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d58c8398-2645-4328-99c4-93fc4bf9aa95", + "x-ms-client-request-id": "fa539531311317af9ba22d6ceb9172ba", + "x-ms-correlation-request-id": "e922702e-d104-4f02-9adf-2f5e010b2bbc", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "31b5d003-6649-46da-9d8b-f20983d17af3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063947Z:e922702e-d104-4f02-9adf-2f5e010b2bbc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5819ed65c8ffab0f716433c78d3e7c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e04bfa5d-8c37-4b16-81af-8a7f9a5de7d5", + "x-ms-client-request-id": "d5819ed65c8ffab0f716433c78d3e7c4", + "x-ms-correlation-request-id": "27210eb7-9afe-47db-9f40-53e5e2accc7b", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "8b497aab-27a4-4b61-997f-5640b43198d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063949Z:27210eb7-9afe-47db-9f40-53e5e2accc7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74f309d126b59ac0495a82c755fa1a3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d66b9cb0-e08b-4fb0-889a-bee07fd526d8", + "x-ms-client-request-id": "74f309d126b59ac0495a82c755fa1a3b", + "x-ms-correlation-request-id": "1c159c0d-db95-46c0-841b-0d320e342ae5", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "af56c691-c0b9-4a81-9970-8f20d3ebcca6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063950Z:1c159c0d-db95-46c0-841b-0d320e342ae5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdcd6b2e18e0d44be45903fcee739fc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff5f5d18-5c02-4d5f-b966-a9effb7bb4a9", + "x-ms-client-request-id": "bdcd6b2e18e0d44be45903fcee739fc7", + "x-ms-correlation-request-id": "d4a47b6d-2862-4f44-894f-7ee057e6d219", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "43c6436d-0045-4840-a85a-339ad79164cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063951Z:d4a47b6d-2862-4f44-894f-7ee057e6d219" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e29a69bafe9db004dde68b34dae8a4fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0cef2f0-15ec-4f73-b488-1e749e099cee", + "x-ms-client-request-id": "e29a69bafe9db004dde68b34dae8a4fc", + "x-ms-correlation-request-id": "1f17555d-c900-4af7-8ec2-18c58d5bdca3", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "a2cc37ab-2069-4890-8645-0c893d6d8e97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063953Z:1f17555d-c900-4af7-8ec2-18c58d5bdca3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d0e08fc2a06b8e3bd1f8f5c22c3acd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7dd01edd-4300-4d79-9ca9-ecd65ab2f3c5", + "x-ms-client-request-id": "0d0e08fc2a06b8e3bd1f8f5c22c3acd6", + "x-ms-correlation-request-id": "468f52c6-ff9a-4233-8009-30bc8b6c023b", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "1876dd3a-85aa-4ff9-aedf-f35d148cdaee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063954Z:468f52c6-ff9a-4233-8009-30bc8b6c023b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec0dbabb385f2f9d661ddff98d16f9fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f26c82e9-d7dc-49f8-8909-8b96be36595f", + "x-ms-client-request-id": "ec0dbabb385f2f9d661ddff98d16f9fc", + "x-ms-correlation-request-id": "4a350dde-4634-4671-a9b6-03a3f75072ed", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "5a0060dd-5e96-4805-93a0-6d7b1b6e3ffa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063955Z:4a350dde-4634-4671-a9b6-03a3f75072ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e60006b492648fc185e1247e6fa88e19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5caaa59d-9a9d-4c93-be3d-5311c74d2bdc", + "x-ms-client-request-id": "e60006b492648fc185e1247e6fa88e19", + "x-ms-correlation-request-id": "d74139dd-2d09-4dc2-b386-fb5f2e96075e", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "34d4b03d-798d-42ad-a927-e7d93f100e00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063956Z:d74139dd-2d09-4dc2-b386-fb5f2e96075e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2079b43ab7dbc39d6adea6e94aea2ba7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd3192f4-bf4e-4ed1-acf6-9ccb49c49200", + "x-ms-client-request-id": "2079b43ab7dbc39d6adea6e94aea2ba7", + "x-ms-correlation-request-id": "35a0f4f8-27bd-4ae6-9a4c-0aa06222d350", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "1e132536-301c-4394-baa3-661ad4105682", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063958Z:35a0f4f8-27bd-4ae6-9a4c-0aa06222d350" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ba79325c6c32871f87d677d141fc0be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:39:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d279256a-3034-4a79-8583-b4f39aa67a19", + "x-ms-client-request-id": "1ba79325c6c32871f87d677d141fc0be", + "x-ms-correlation-request-id": "3f5c7c81-e116-465b-abb2-11b5d03b2d39", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "072317aa-8ea4-4f0b-a57e-4919694d2349", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T063959Z:3f5c7c81-e116-465b-abb2-11b5d03b2d39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8bfc68fd99cfd20693c7b86ebd8459a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94616c10-e425-49ab-89e3-3612f705a323", + "x-ms-client-request-id": "d8bfc68fd99cfd20693c7b86ebd8459a", + "x-ms-correlation-request-id": "ca196b44-af2d-4bef-9761-3a03b3d65633", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "02f2ddbd-3757-4016-a7df-63cc8103d047", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064000Z:ca196b44-af2d-4bef-9761-3a03b3d65633" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db587db6720073564350285e501faf4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "97e779ca-7975-478c-b6c4-c40ecb8b8416", + "x-ms-client-request-id": "db587db6720073564350285e501faf4a", + "x-ms-correlation-request-id": "59efdfd9-8e9b-4b36-bfac-9546b9c5ef95", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "0cc84a94-428f-483a-b685-25e7f4ee78da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064001Z:59efdfd9-8e9b-4b36-bfac-9546b9c5ef95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "845ae81d532b4c0a72aab2864aeb3d1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0bd5682-b0c1-4ae0-8b4f-153eb20bfd4e", + "x-ms-client-request-id": "845ae81d532b4c0a72aab2864aeb3d1f", + "x-ms-correlation-request-id": "8fad558e-d1d1-4736-8288-52e07d6135f1", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "343c5bb1-af46-49c4-a052-449694c303b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064003Z:8fad558e-d1d1-4736-8288-52e07d6135f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96c7cc37e4c71cbd6f4b954cb0c2ad49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a2d58db3-9996-41ad-84e3-26af41bc829e", + "x-ms-client-request-id": "96c7cc37e4c71cbd6f4b954cb0c2ad49", + "x-ms-correlation-request-id": "da99e083-a8fa-4154-ae5f-6360c6312a46", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "5102aaed-87ed-4e8f-a79b-b96da5be01d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064004Z:da99e083-a8fa-4154-ae5f-6360c6312a46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0269318cc07e636f720c6956c0d02858", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "500e77e9-ea85-46eb-8fb0-b78091e33273", + "x-ms-client-request-id": "0269318cc07e636f720c6956c0d02858", + "x-ms-correlation-request-id": "499997fb-c939-45e3-8d0b-7299193c5ee1", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "58df220b-39ee-4daf-accd-fabc14da52c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064005Z:499997fb-c939-45e3-8d0b-7299193c5ee1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83260813185838822b3d15dfbebe9baf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c27f0be5-018b-4d4f-9bed-08c2d72c9bbc", + "x-ms-client-request-id": "83260813185838822b3d15dfbebe9baf", + "x-ms-correlation-request-id": "ad3fbcbd-0848-4057-b60d-248838aea20d", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "5d8a29ba-0ade-47ba-9d2e-e2cf39103c49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064007Z:ad3fbcbd-0848-4057-b60d-248838aea20d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19f968fd3a8277a15d6424bb7b675c9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8c4f21e-b60f-479d-8615-d1a61edecb09", + "x-ms-client-request-id": "19f968fd3a8277a15d6424bb7b675c9e", + "x-ms-correlation-request-id": "51dbc8a8-5a7a-4fa9-9149-0b121fd148d8", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "1ce8745f-0d0f-44e7-a5e6-ff50b5d7025a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064008Z:51dbc8a8-5a7a-4fa9-9149-0b121fd148d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7383c23299c73f0ae30d741ab8fa5b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "adcc8ed2-c520-4377-8000-95fbe698cb97", + "x-ms-client-request-id": "a7383c23299c73f0ae30d741ab8fa5b4", + "x-ms-correlation-request-id": "eba2a2f0-a9e7-4ac6-923b-cb4211d9619f", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "24758c66-c0c4-495a-a7fa-8ad0128e3dae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064009Z:eba2a2f0-a9e7-4ac6-923b-cb4211d9619f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5758b9700fd7d8d567af25f4f4c7bcc3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c83babf-63c6-45e8-9bf7-c05ca571c829", + "x-ms-client-request-id": "5758b9700fd7d8d567af25f4f4c7bcc3", + "x-ms-correlation-request-id": "1fdac1e4-528a-4d7d-b225-643537daa2e2", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "63bce0d9-5776-4c99-803f-759b5d58cd5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064010Z:1fdac1e4-528a-4d7d-b225-643537daa2e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81bc76e0f385d31377856a516360cbcd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e38f4c5f-2929-4b91-8730-86a80d4ee9fc", + "x-ms-client-request-id": "81bc76e0f385d31377856a516360cbcd", + "x-ms-correlation-request-id": "16caec5e-1786-469c-8b1e-da0e4f750df9", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "c6f3cef4-53d9-4d4a-87db-cf1c3ada0021", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064012Z:16caec5e-1786-469c-8b1e-da0e4f750df9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c24a6fbf050e13c7676040ed04fc7fe7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c3b4e03c-49cd-4373-9973-4fb28a150b21", + "x-ms-client-request-id": "c24a6fbf050e13c7676040ed04fc7fe7", + "x-ms-correlation-request-id": "734e2a03-f01d-413c-a771-9c5daf8487f5", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "f0238daa-ef98-43be-8bf4-ce3ad657eeac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064013Z:734e2a03-f01d-413c-a771-9c5daf8487f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3560137323d37c2fa585df51a5847507", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da79d91a-ad54-45f1-a43e-5ee1229d76b1", + "x-ms-client-request-id": "3560137323d37c2fa585df51a5847507", + "x-ms-correlation-request-id": "43ed3ff1-873d-401f-8ab7-7dbd359a0ddc", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "5a2113db-877a-4561-9209-99185bee9d8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064014Z:43ed3ff1-873d-401f-8ab7-7dbd359a0ddc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "853557e3fa7ddbb5aea81a25b326ce7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2577df84-f307-4d29-809f-ebc54defee45", + "x-ms-client-request-id": "853557e3fa7ddbb5aea81a25b326ce7b", + "x-ms-correlation-request-id": "1e7da25b-104c-45f5-8053-a1962a60f86d", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "9d954299-57e2-4a55-b8eb-bb72cccfbe4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064015Z:1e7da25b-104c-45f5-8053-a1962a60f86d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4fdd830695ff9bfa40cd1c8926766ee2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "edbaec61-0896-4ca5-8834-6453d5373ab8", + "x-ms-client-request-id": "4fdd830695ff9bfa40cd1c8926766ee2", + "x-ms-correlation-request-id": "a6c2abe0-0117-4676-bb5c-b57d788da2e5", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "0875272a-93c6-4d03-b9e2-55ea6a029db9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064017Z:a6c2abe0-0117-4676-bb5c-b57d788da2e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac0938ebfac679695e84862a090ac97f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a414f7c-5157-4fce-8abe-12b758a6ac04", + "x-ms-client-request-id": "ac0938ebfac679695e84862a090ac97f", + "x-ms-correlation-request-id": "7f67d4af-4e4a-410a-abed-5ba917d18752", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "c2dfff37-2dbf-47d4-bc26-744589864fc2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064018Z:7f67d4af-4e4a-410a-abed-5ba917d18752" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "224b63b625a64d075d9a44afde2cb538", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b61b9140-da64-4cb5-a05f-cefe4e47dc3e", + "x-ms-client-request-id": "224b63b625a64d075d9a44afde2cb538", + "x-ms-correlation-request-id": "e9baf2e3-30d9-4e1b-8df3-11361b03efba", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "01928363-eb29-431f-baa0-7c413df5671d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064019Z:e9baf2e3-30d9-4e1b-8df3-11361b03efba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b39373a221c0cb41964f17b0fcf9136", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c2398779-7ee5-4045-98c1-075f5479dd62", + "x-ms-client-request-id": "7b39373a221c0cb41964f17b0fcf9136", + "x-ms-correlation-request-id": "a3831cef-3a02-4464-b798-bb772b2cb91e", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "7cb1f7d1-8c67-4960-8041-e521151f4ac9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064021Z:a3831cef-3a02-4464-b798-bb772b2cb91e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2d29c044b2ac53b30bb4f2cb5ba9b31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1498d070-3d88-459c-8f5f-749de6a8750b", + "x-ms-client-request-id": "c2d29c044b2ac53b30bb4f2cb5ba9b31", + "x-ms-correlation-request-id": "7bbc85bb-cdcd-4cdc-add5-70a847ed5136", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "ed414d76-9526-408d-9b16-d1ad12212ce9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064022Z:7bbc85bb-cdcd-4cdc-add5-70a847ed5136" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2f04ece4ed09463ae3f0942338c3e8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "418e02d7-adfa-4249-bf95-5f9cf1024fd8", + "x-ms-client-request-id": "d2f04ece4ed09463ae3f0942338c3e8d", + "x-ms-correlation-request-id": "abf059da-33eb-492a-a266-6c523630c67b", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "27db28e5-8463-4112-96b1-2440a7e64d80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064023Z:abf059da-33eb-492a-a266-6c523630c67b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41ab0e09f359ee0dfc744a60d388565f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1931f813-926e-49cc-9e23-7c7a36fd5570", + "x-ms-client-request-id": "41ab0e09f359ee0dfc744a60d388565f", + "x-ms-correlation-request-id": "ef6febc2-90bc-4943-8968-4e9302685054", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "626530b0-452b-449a-bfed-3d6c24bbf72b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064024Z:ef6febc2-90bc-4943-8968-4e9302685054" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0adc0c9bfdeb665393e13eb42f892a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bdfb4e5e-14c7-4d3a-8679-701d2d48afd1", + "x-ms-client-request-id": "c0adc0c9bfdeb665393e13eb42f892a4", + "x-ms-correlation-request-id": "e3b13545-e61d-4d53-8e47-b4a3712aa17f", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "a118f467-bf37-46b6-8a83-c5e622c1bfa1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064026Z:e3b13545-e61d-4d53-8e47-b4a3712aa17f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a623c17d590edbd84102d55b0302c126", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60fd2706-f20e-4ddf-a128-fc5bd8e89a38", + "x-ms-client-request-id": "a623c17d590edbd84102d55b0302c126", + "x-ms-correlation-request-id": "b3dd8e0d-e5c8-4d32-b927-576c32c9320e", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "ccaf77a4-ce82-44b1-955d-f9c6feec0c2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064027Z:b3dd8e0d-e5c8-4d32-b927-576c32c9320e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7379aae87edf49afa8f5081be021ab03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6e3007b-c4cf-491c-b70b-876e8eebd922", + "x-ms-client-request-id": "7379aae87edf49afa8f5081be021ab03", + "x-ms-correlation-request-id": "a4c9a001-2a65-4a9f-8626-be789c21b567", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "a5d38320-faf0-4edd-8ab2-dc6acdd45d10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064028Z:a4c9a001-2a65-4a9f-8626-be789c21b567" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11e3a6e2b0646f50e8d17fdce909b236", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d7c0c315-03d4-46a9-8f4d-df03667e67ec", + "x-ms-client-request-id": "11e3a6e2b0646f50e8d17fdce909b236", + "x-ms-correlation-request-id": "680fbddf-9412-41e9-a54a-c367d75322ac", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "52772cb5-1a39-4d88-bd64-3fbed2936b67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064029Z:680fbddf-9412-41e9-a54a-c367d75322ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9803ec7d1e7ffec512d9fd1951bcfb1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "310a82df-ad37-4984-96d7-fe1f17560548", + "x-ms-client-request-id": "9803ec7d1e7ffec512d9fd1951bcfb1f", + "x-ms-correlation-request-id": "6e10579d-f3c8-4c32-a351-0a4994a2e832", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "b56ad349-8c98-4feb-b1c8-96f5b9142fd1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064031Z:6e10579d-f3c8-4c32-a351-0a4994a2e832" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d79d256af1f37c1590a8b0dffd2609f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b687ebc-55c8-4e79-94d5-c153fefcde7f", + "x-ms-client-request-id": "5d79d256af1f37c1590a8b0dffd2609f", + "x-ms-correlation-request-id": "9d3cfff8-0c96-4a6e-838f-d1e3ac82e430", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "29cca814-fc9b-4177-b101-6aa750f241b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064032Z:9d3cfff8-0c96-4a6e-838f-d1e3ac82e430" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f39ed242131dc383e1e4ff8ab3371d2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59f373af-46ce-4d26-b88c-9ea24e25553a", + "x-ms-client-request-id": "f39ed242131dc383e1e4ff8ab3371d2b", + "x-ms-correlation-request-id": "fbb63628-3761-4232-9306-32a0b5a7e81e", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "2d7f58d5-5a83-4eb8-b8f4-9649aae6f5e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064033Z:fbb63628-3761-4232-9306-32a0b5a7e81e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16865fd65590cd162acb3e7592b7ff40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3879d367-9c69-48e0-be14-e5f62ddcbf39", + "x-ms-client-request-id": "16865fd65590cd162acb3e7592b7ff40", + "x-ms-correlation-request-id": "4d051922-04b9-4f37-ab33-9066e66eb666", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "fe59590a-5f10-46a7-8ef0-72b439cc4dbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064034Z:4d051922-04b9-4f37-ab33-9066e66eb666" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fd65e79071e43014fb57b3bb0368422", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b271026-983f-4d6f-ae7a-60d42deb2840", + "x-ms-client-request-id": "7fd65e79071e43014fb57b3bb0368422", + "x-ms-correlation-request-id": "4548a827-424d-43b3-b62c-b2b97c039c50", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "7bbc4e5e-9da7-4e43-af2a-e87d10ca6b85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064036Z:4548a827-424d-43b3-b62c-b2b97c039c50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f3660ec494bed0fbbd0c852d40e3029", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef379456-61dd-4a21-8a2f-7fbb5414e2ff", + "x-ms-client-request-id": "9f3660ec494bed0fbbd0c852d40e3029", + "x-ms-correlation-request-id": "555ff2ef-abf1-47e5-a4e9-760cb8a21fd0", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "1943684f-5feb-4021-a585-f261658333d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064037Z:555ff2ef-abf1-47e5-a4e9-760cb8a21fd0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5411bfe49e60ce0c5d43c7dad9db1df3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d80e6121-edd5-487e-9757-8f651460cfde", + "x-ms-client-request-id": "5411bfe49e60ce0c5d43c7dad9db1df3", + "x-ms-correlation-request-id": "78c6a07c-486b-4da5-aa0f-abb5f34f5d4f", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "74664ed2-da60-4a6a-b6bf-2d8ca3f65df1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064038Z:78c6a07c-486b-4da5-aa0f-abb5f34f5d4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32891c47608130f44fe8c44d3eaf6e40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e855899d-f441-4f8e-9ec6-17d0d978999b", + "x-ms-client-request-id": "32891c47608130f44fe8c44d3eaf6e40", + "x-ms-correlation-request-id": "718c6b6f-1326-4988-ad34-ce5960e3d9d1", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "5fb28c83-d6c5-4416-aad7-01da638a40c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064040Z:718c6b6f-1326-4988-ad34-ce5960e3d9d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f15652852f254ec153674108813513e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ebc23d62-5b30-4995-8119-017de4bd4ed5", + "x-ms-client-request-id": "f15652852f254ec153674108813513e0", + "x-ms-correlation-request-id": "1738ddb1-9754-4716-90b1-01b2765a0a96", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "b429ccd9-bd00-4ae9-ab0b-ef52277ab221", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064041Z:1738ddb1-9754-4716-90b1-01b2765a0a96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b70ad5b3fe8584a7cae10577dabe90ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fdcab674-730b-423f-b28c-b89a1488bfd0", + "x-ms-client-request-id": "b70ad5b3fe8584a7cae10577dabe90ae", + "x-ms-correlation-request-id": "83ae98f4-524c-4a0d-bcc7-6ab82f6ed0e1", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "67b81b96-8252-4b29-9d67-0fbda440ce8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064042Z:83ae98f4-524c-4a0d-bcc7-6ab82f6ed0e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "865486d42c8417ce5a3adf191eebae1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "621aa719-202b-4e7a-a028-207785c34a72", + "x-ms-client-request-id": "865486d42c8417ce5a3adf191eebae1a", + "x-ms-correlation-request-id": "9fa6681a-b7e7-4221-8785-f26e40f410f7", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "4a59cf99-f31a-428a-858c-c906ca3fa9ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064043Z:9fa6681a-b7e7-4221-8785-f26e40f410f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "699ae3d5b6a486bbabd2264429497494", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d1dc7998-778d-40c5-aab3-a7e81f076b2f", + "x-ms-client-request-id": "699ae3d5b6a486bbabd2264429497494", + "x-ms-correlation-request-id": "e0547bc2-9b68-4f5f-be60-096fc8b963c1", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "6f698a1b-6514-4646-9166-47afa03a17fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064045Z:e0547bc2-9b68-4f5f-be60-096fc8b963c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb3493d78ce0875c06f25d4a1e8e65df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08a9e96f-554b-433b-a370-6d6f1f65d283", + "x-ms-client-request-id": "fb3493d78ce0875c06f25d4a1e8e65df", + "x-ms-correlation-request-id": "86814abb-7e03-46d2-ac0a-ffe4c69e1bd9", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "413eb2ea-63db-46fb-a38e-e53cf588a4e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064046Z:86814abb-7e03-46d2-ac0a-ffe4c69e1bd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6a2eb3326241d09cacedbb10589ed11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86592ced-dd25-4a45-83ea-6a23306a2307", + "x-ms-client-request-id": "f6a2eb3326241d09cacedbb10589ed11", + "x-ms-correlation-request-id": "21237317-ee20-4dbf-b4f3-d09d7aadfaed", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "8c36f304-1cc2-470d-bbab-dd1e378f08ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064047Z:21237317-ee20-4dbf-b4f3-d09d7aadfaed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a414bc6b3b7483a871362b25971681c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92fa3a9e-a440-4bc8-9e61-3765b5012d18", + "x-ms-client-request-id": "8a414bc6b3b7483a871362b25971681c", + "x-ms-correlation-request-id": "4e4e2805-f5ff-4c50-85de-53f3d62f9528", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "8a18024f-dc7b-4be9-8d94-ce9ddc01d56b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064049Z:4e4e2805-f5ff-4c50-85de-53f3d62f9528" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e10476d7da7b1708a163011b1ab817c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "07b666b6-4274-4fbe-aeda-049310fd6d7d", + "x-ms-client-request-id": "3e10476d7da7b1708a163011b1ab817c", + "x-ms-correlation-request-id": "4470c926-ad23-4c4a-91bc-f2c052d9d9b5", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "c95f147b-de09-4edc-84ac-d191e284f8df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064050Z:4470c926-ad23-4c4a-91bc-f2c052d9d9b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3834c04da4c8028b15a6f10c356c359", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6b8e5e9-e215-4ac6-a9e7-c18042e84d24", + "x-ms-client-request-id": "d3834c04da4c8028b15a6f10c356c359", + "x-ms-correlation-request-id": "154113e7-dbe7-4f38-a5de-4e1400675b32", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "1d5faf53-bf89-4c25-afd8-55f40ccbf708", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064051Z:154113e7-dbe7-4f38-a5de-4e1400675b32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be43be66af794969da9000a0822897dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4b62db5-1081-43ba-bb7a-3eae594de45e", + "x-ms-client-request-id": "be43be66af794969da9000a0822897dc", + "x-ms-correlation-request-id": "75bfd570-f95a-43f3-b086-868478c05840", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "1347e7c9-0781-43bb-b329-b6a97abbae46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064053Z:75bfd570-f95a-43f3-b086-868478c05840" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0dade59194ee92d01f908c4c0e5fee33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2b26b9b-b187-450e-b736-3d5fd543d1ff", + "x-ms-client-request-id": "0dade59194ee92d01f908c4c0e5fee33", + "x-ms-correlation-request-id": "e7ed8a00-2839-4dfe-bc35-ea0c23fdbac7", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "497a26bc-79a5-4f41-9d95-79bcb3a5ad3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064054Z:e7ed8a00-2839-4dfe-bc35-ea0c23fdbac7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2abd752c3675503e239f9bbda87fd89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c65d0d4e-16cf-4848-a526-0eed716b6b8a", + "x-ms-client-request-id": "f2abd752c3675503e239f9bbda87fd89", + "x-ms-correlation-request-id": "784f60d2-8999-4561-8ff8-80e8da35edcb", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "8f3ed480-19ed-4bc3-ac7d-4ef53253ce88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064056Z:784f60d2-8999-4561-8ff8-80e8da35edcb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd7e92c2b6a9d16aeeb19fe8231d3a7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64d88f3a-c0b3-44e2-9608-3df511992cf1", + "x-ms-client-request-id": "dd7e92c2b6a9d16aeeb19fe8231d3a7b", + "x-ms-correlation-request-id": "fc519f5a-71ef-4710-8f2d-1a9580a04c21", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "f8db00b9-02ed-4417-8212-a8a3425bec3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064057Z:fc519f5a-71ef-4710-8f2d-1a9580a04c21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab4dcca2a57cce75e2582bb59b15b897", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5110b90a-0d22-41d8-a8d3-0a5e714a2ccb", + "x-ms-client-request-id": "ab4dcca2a57cce75e2582bb59b15b897", + "x-ms-correlation-request-id": "c10d29dc-bc32-470e-a962-33cc19bdffc5", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "4ea71d99-2ff3-4065-8996-f29042bedfe5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064058Z:c10d29dc-bc32-470e-a962-33cc19bdffc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b89039310e19c8a6cd903b6241b31c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:40:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9dbc28e0-5975-47c8-aab7-865b71f75cdf", + "x-ms-client-request-id": "7b89039310e19c8a6cd903b6241b31c5", + "x-ms-correlation-request-id": "4edac20e-362e-406d-b42f-ff3a290935e5", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "96fcfb52-bba1-47f4-917d-e9415b250987", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064059Z:4edac20e-362e-406d-b42f-ff3a290935e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e197dfe513a1d0c1daffb518bb536d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a217da8a-9fe1-4823-a0b4-fd4e8836cd78", + "x-ms-client-request-id": "0e197dfe513a1d0c1daffb518bb536d9", + "x-ms-correlation-request-id": "5927d339-6526-4139-ab42-909b3c0e57b0", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "f3c3331e-edd0-46a9-bc93-4e4c49acc0d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064101Z:5927d339-6526-4139-ab42-909b3c0e57b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f5407f8be93919942b03ea2a1bfaac6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b25d6ee0-b87b-46c8-91ab-d23a3d87b6be", + "x-ms-client-request-id": "1f5407f8be93919942b03ea2a1bfaac6", + "x-ms-correlation-request-id": "19eba270-00d1-482c-96e4-b414db64a569", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "009a78b5-734a-452f-938a-af7d6a9c85c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064102Z:19eba270-00d1-482c-96e4-b414db64a569" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1db66626aafb415df66c5e31153811b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe14fb01-03a7-4145-9617-64761aa217ed", + "x-ms-client-request-id": "1db66626aafb415df66c5e31153811b7", + "x-ms-correlation-request-id": "8970afa3-085a-4203-867c-b963155a8c5f", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "d105d4c0-5b8b-4497-92cc-47fbb9d8a7c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064104Z:8970afa3-085a-4203-867c-b963155a8c5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cbd2aa312c63f31e387cb89126a7c5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4db529f7-60ba-40b5-9f8d-bc743377b475", + "x-ms-client-request-id": "1cbd2aa312c63f31e387cb89126a7c5e", + "x-ms-correlation-request-id": "3cac5417-ffcb-4869-b884-f83007ab5408", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "4b5db2d7-1f6c-4bf6-9e55-e5710c7def8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064105Z:3cac5417-ffcb-4869-b884-f83007ab5408" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "252b340519ff4eddaa13282760687b09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f565a84e-4ec3-40ea-9522-ef4003a4d899", + "x-ms-client-request-id": "252b340519ff4eddaa13282760687b09", + "x-ms-correlation-request-id": "2ca61331-60c9-4d4f-969a-f2c47a92c6ae", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "40630aa3-7af5-473d-ba92-04f2e6a93bcc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064106Z:2ca61331-60c9-4d4f-969a-f2c47a92c6ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76ff879f8d0113ff34763974ded42e8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c471074-d689-4740-9825-763b37245493", + "x-ms-client-request-id": "76ff879f8d0113ff34763974ded42e8c", + "x-ms-correlation-request-id": "bbce4c62-8215-48bb-9249-e3acc5438dd5", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "d25b3238-2156-4dcc-9e80-d9664bacf669", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064107Z:bbce4c62-8215-48bb-9249-e3acc5438dd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e02b00efec0d89b84d6e72b3e90adf7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0dc2815b-76e9-468d-a781-29ead1cd79aa", + "x-ms-client-request-id": "e02b00efec0d89b84d6e72b3e90adf7b", + "x-ms-correlation-request-id": "2f1d7617-dbca-4b74-bf9e-fab1eb5083cb", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "bf43af92-69aa-4544-8e9c-c8bcc4c2d22c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064109Z:2f1d7617-dbca-4b74-bf9e-fab1eb5083cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8be9c10b066a785c3517f088e06970d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5180d93d-efd7-40e7-8dca-3bfeff97a8b8", + "x-ms-client-request-id": "8be9c10b066a785c3517f088e06970d5", + "x-ms-correlation-request-id": "7f0b6a43-be04-4432-84f1-084f469c2bff", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "48c8bb3a-f2af-42e4-a270-a4de32b5b4cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064110Z:7f0b6a43-be04-4432-84f1-084f469c2bff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60379ce49b3db3fcce7628931a4b2a29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd5f94f1-df4c-462f-bc04-69b6bd5f3600", + "x-ms-client-request-id": "60379ce49b3db3fcce7628931a4b2a29", + "x-ms-correlation-request-id": "293a9fa0-ba15-408d-b2f1-b52a6cbb69f5", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "791b6c37-4345-414a-9df7-d558242efe0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064111Z:293a9fa0-ba15-408d-b2f1-b52a6cbb69f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c68be96a3eae922a3b3abf5fb2fa9e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ecaabcff-0d6a-41e1-b771-27ca27221ba1", + "x-ms-client-request-id": "1c68be96a3eae922a3b3abf5fb2fa9e4", + "x-ms-correlation-request-id": "f12fa930-22aa-42fe-8c7d-858331f0877f", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "362cd8be-c022-4678-8b16-4cbbd444b6ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064113Z:f12fa930-22aa-42fe-8c7d-858331f0877f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dcf9cfe7fd3703ec535bcf4ddc95de9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b09a30c-e070-4bac-8d41-16e0460cb956", + "x-ms-client-request-id": "4dcf9cfe7fd3703ec535bcf4ddc95de9", + "x-ms-correlation-request-id": "5a1a5f12-197d-4c14-8bcd-e517e7a845bb", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "c6acdd21-c5dc-4d07-a6fd-1685a2baee72", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064114Z:5a1a5f12-197d-4c14-8bcd-e517e7a845bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22f1c6ed530041eb794dbc89ef06b89f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7754929b-ea98-4b1b-a663-3bae78f35b10", + "x-ms-client-request-id": "22f1c6ed530041eb794dbc89ef06b89f", + "x-ms-correlation-request-id": "0193122a-61db-4d9b-ad65-b826d9220fa4", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "3d2b2067-e147-48b8-bd12-2efcdfeb5d1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064115Z:0193122a-61db-4d9b-ad65-b826d9220fa4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d9443ccdc7c175680f757b4e62e0bda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9f697e3-2184-4fa6-8b56-8e4f6bfe350b", + "x-ms-client-request-id": "7d9443ccdc7c175680f757b4e62e0bda", + "x-ms-correlation-request-id": "f0cd2a30-17cc-4a2d-be60-421f1adee508", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "24c3fbcb-05a1-48e6-ad3b-8ae0a0320bdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064116Z:f0cd2a30-17cc-4a2d-be60-421f1adee508" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3408c155873daae4b18dd385c3b480be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7123e00-3398-403d-8492-fb21f20f46d7", + "x-ms-client-request-id": "3408c155873daae4b18dd385c3b480be", + "x-ms-correlation-request-id": "f7b31bef-5679-497b-8986-e9441ab5d904", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "1e433d7e-ae9d-42cb-a781-4c87a7415a4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064118Z:f7b31bef-5679-497b-8986-e9441ab5d904" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a271d7ddf34106d6fdaa209fc365b4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20b39b5c-72ad-4c60-9abb-0d7163b27a36", + "x-ms-client-request-id": "9a271d7ddf34106d6fdaa209fc365b4b", + "x-ms-correlation-request-id": "2d6d4c38-6be6-4288-981e-f7bf5d997512", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "c76fa577-8144-48a3-aa10-698ece069dec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064119Z:2d6d4c38-6be6-4288-981e-f7bf5d997512" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e33e24283fe45615feacbee08d154cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d7ce6e4-9625-43fe-8c00-373046c500a0", + "x-ms-client-request-id": "2e33e24283fe45615feacbee08d154cb", + "x-ms-correlation-request-id": "4d5d9ac4-01be-40d0-8017-4cc65b5cb5ee", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "c831a095-1c38-48a4-8224-8305ff8341f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064120Z:4d5d9ac4-01be-40d0-8017-4cc65b5cb5ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8379876710776a553f8c463e4daae7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd7d1d06-8adf-44fa-9dcb-61b665691396", + "x-ms-client-request-id": "c8379876710776a553f8c463e4daae7b", + "x-ms-correlation-request-id": "52833a4f-e892-4549-bccd-4f504ca41233", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "68065f3d-0f08-49d1-88e7-4ee34ac3623d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064122Z:52833a4f-e892-4549-bccd-4f504ca41233" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e04288325280f9c0bbe13a4a147e079e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e256aab-32aa-44b3-b673-4a1b4f314105", + "x-ms-client-request-id": "e04288325280f9c0bbe13a4a147e079e", + "x-ms-correlation-request-id": "c6b20298-b7f2-481f-81bc-fce79cca2d1b", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "fa94df44-19c2-41e1-976e-667c367949eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064123Z:c6b20298-b7f2-481f-81bc-fce79cca2d1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6392d68692fed1433dbdda05bffe6084", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e18b89a2-1ccc-4c36-8ece-1836466db6c7", + "x-ms-client-request-id": "6392d68692fed1433dbdda05bffe6084", + "x-ms-correlation-request-id": "5dab2f0c-b460-43a6-871b-e524349cab96", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "2a0ca862-1cca-48c1-9368-bc3e44ce0ec0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064124Z:5dab2f0c-b460-43a6-871b-e524349cab96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fbc503b738f244bd83e0d25365a62d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a49571d-98f4-44f6-bb78-0b3e4148d50d", + "x-ms-client-request-id": "7fbc503b738f244bd83e0d25365a62d5", + "x-ms-correlation-request-id": "ed02f7d9-7d97-4ed8-9d04-1be0e654726d", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "09ea8730-849a-4649-ab48-eab9d0d4e3e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064125Z:ed02f7d9-7d97-4ed8-9d04-1be0e654726d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0edc26f04a48a07d4471a3c277ba3abd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b0cbe5e-e5b8-48aa-b872-a023b241999e", + "x-ms-client-request-id": "0edc26f04a48a07d4471a3c277ba3abd", + "x-ms-correlation-request-id": "91a3d0b1-45c3-45c0-a1d5-c5fa361b7618", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "165a50e1-b720-4f12-ac7f-b457d679e1c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064127Z:91a3d0b1-45c3-45c0-a1d5-c5fa361b7618" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c40eb68088c2130f8b6e8bc0851d9ae2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28913457-6fc4-45d7-949d-8c3c5ae227e7", + "x-ms-client-request-id": "c40eb68088c2130f8b6e8bc0851d9ae2", + "x-ms-correlation-request-id": "c9b288bb-b701-4d27-8293-ad1ebe699fcd", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "b1adddff-487d-4416-a9ee-b0d1721a6638", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064128Z:c9b288bb-b701-4d27-8293-ad1ebe699fcd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9815055b5222f13cd21b3b1dcf88ac1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b8aa746-ace2-489c-8486-11f1cc981588", + "x-ms-client-request-id": "9815055b5222f13cd21b3b1dcf88ac1d", + "x-ms-correlation-request-id": "200f568d-7a69-4884-b2a8-374258905d8d", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "c18657a3-3562-43de-b326-2f31fdf71e6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064130Z:200f568d-7a69-4884-b2a8-374258905d8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80a54f039e4c681217c882d9bfbc1b26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a4be052-ab35-4799-a14a-a9599d5354e2", + "x-ms-client-request-id": "80a54f039e4c681217c882d9bfbc1b26", + "x-ms-correlation-request-id": "a2a0b062-c863-4a52-b3d5-2f5916325e58", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "ef97dbed-31a7-4b19-9ef4-30d4eda6fd54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064131Z:a2a0b062-c863-4a52-b3d5-2f5916325e58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7267c1d6a1a42d9b791df1a74cf14403", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5348c37-c8bc-4caf-97e2-528acc2c81f1", + "x-ms-client-request-id": "7267c1d6a1a42d9b791df1a74cf14403", + "x-ms-correlation-request-id": "b1eeebf1-2338-469d-bf87-cbcc7652e5dc", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "a5708254-f789-4bb2-87e9-fb781b526bb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064133Z:b1eeebf1-2338-469d-bf87-cbcc7652e5dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35bc6dc11a78bd96f3ad8159cf623215", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ffd20e65-ef69-4c38-a629-fa85272372d2", + "x-ms-client-request-id": "35bc6dc11a78bd96f3ad8159cf623215", + "x-ms-correlation-request-id": "14d89d9e-7080-4817-a162-c061a02432e0", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "d22eb782-e7bb-42ac-a620-faf462327644", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064134Z:14d89d9e-7080-4817-a162-c061a02432e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e4614003a206178b478062eac6b1b25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81f5ef8a-98d4-438d-95c7-0676a60d5e5a", + "x-ms-client-request-id": "0e4614003a206178b478062eac6b1b25", + "x-ms-correlation-request-id": "3bdf2d51-9f2e-4db9-9d3e-8b3ad83f5dc8", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "e9b3db82-2e31-46d8-9240-d1adffdc26ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064135Z:3bdf2d51-9f2e-4db9-9d3e-8b3ad83f5dc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51187f84e500bcae2aa97ff720415e17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76a05c3c-a6ff-433c-afb5-2273c8809b9a", + "x-ms-client-request-id": "51187f84e500bcae2aa97ff720415e17", + "x-ms-correlation-request-id": "a21c9cb1-d62b-4e94-9934-afa5f177492a", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "06fcd337-b14b-4b08-8905-e3cfabf4a979", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064137Z:a21c9cb1-d62b-4e94-9934-afa5f177492a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38a6dbeb36ab87e2f55a810014671088", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05674893-9a5d-4090-b9ae-96a818decf4a", + "x-ms-client-request-id": "38a6dbeb36ab87e2f55a810014671088", + "x-ms-correlation-request-id": "ecd6784a-42de-41ea-844d-7f06a7b363ee", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "a084e875-eb76-4f29-9e02-d1bea4fd3824", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064138Z:ecd6784a-42de-41ea-844d-7f06a7b363ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50d45b92e14a1a15658ae376bb814172", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa70690a-9ae1-4ec6-aec4-f37ce0227763", + "x-ms-client-request-id": "50d45b92e14a1a15658ae376bb814172", + "x-ms-correlation-request-id": "37e68932-c4dd-4c16-8b7f-2b37d1fcfd7f", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "9632e24d-d8da-45e3-bc4c-3e55bd047065", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064139Z:37e68932-c4dd-4c16-8b7f-2b37d1fcfd7f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d143ee19e2c44e7a9c905ca564aea7c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0fd94967-93f7-4b5f-a955-8aeafa2b11b7", + "x-ms-client-request-id": "d143ee19e2c44e7a9c905ca564aea7c3", + "x-ms-correlation-request-id": "639cebc7-aa0f-4a54-8b73-254c9eded715", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "1e62850b-1762-4377-bbb2-4620a1bf63bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064141Z:639cebc7-aa0f-4a54-8b73-254c9eded715" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c464f7990d6c0accc58cd221536bcc73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7bb1de27-31e1-481a-9f55-2fbdc93b676a", + "x-ms-client-request-id": "c464f7990d6c0accc58cd221536bcc73", + "x-ms-correlation-request-id": "51b1dc6e-6b79-4caa-9008-8b322ea860ad", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "e7d11e09-64b9-48ef-8e31-e7bb3225c615", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064142Z:51b1dc6e-6b79-4caa-9008-8b322ea860ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25e60e193f23b0c3e186b3b98470b5b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64d9689d-a1b4-4e63-8f20-53c2f6716fac", + "x-ms-client-request-id": "25e60e193f23b0c3e186b3b98470b5b7", + "x-ms-correlation-request-id": "177c2649-2c77-4ebc-98be-e50e1c8a30ec", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "ff8d802a-f188-477a-bab9-b2a3fed35063", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064143Z:177c2649-2c77-4ebc-98be-e50e1c8a30ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4dd1fe27c1d0b0521390b370f59fb30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5921c9c-db6f-4eb7-bc0c-ea8f2f98c443", + "x-ms-client-request-id": "c4dd1fe27c1d0b0521390b370f59fb30", + "x-ms-correlation-request-id": "673a5a38-7aa3-436f-a687-5b5a82a58fcf", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "fd673b7f-647c-4a3c-beab-680e3e23486e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064144Z:673a5a38-7aa3-436f-a687-5b5a82a58fcf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "558be8c482c7599f33b4e3e65a138554", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a39c87ad-c1cb-4d25-bf29-0e2649f066a8", + "x-ms-client-request-id": "558be8c482c7599f33b4e3e65a138554", + "x-ms-correlation-request-id": "0e81777b-5734-4e20-93a9-da1bdbf668e3", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "75312e72-5881-4361-8cb4-ddb53ffed1fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064146Z:0e81777b-5734-4e20-93a9-da1bdbf668e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "333f1bd6078e9d5609da03ea338ba087", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2bbe4de-1aca-48a0-bff5-8522804eb0f9", + "x-ms-client-request-id": "333f1bd6078e9d5609da03ea338ba087", + "x-ms-correlation-request-id": "eedefe65-99a5-446e-acb2-951e4f7260ff", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "8dd6c1f3-4aa4-47c3-98de-0469527690d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064147Z:eedefe65-99a5-446e-acb2-951e4f7260ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cf4828b60e55fef80839068981fb10e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd1edfa3-96a4-4b6c-841e-2be84d546593", + "x-ms-client-request-id": "9cf4828b60e55fef80839068981fb10e", + "x-ms-correlation-request-id": "777143ac-2ae7-4e77-8621-90050bb0f3cc", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "4ba21137-d0ae-442f-b61c-404646baa8cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064148Z:777143ac-2ae7-4e77-8621-90050bb0f3cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f461b6b4c81abca292ee4ced7fb526a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0dc723a-03ce-43b4-85cc-a753d9c34fd4", + "x-ms-client-request-id": "f461b6b4c81abca292ee4ced7fb526a7", + "x-ms-correlation-request-id": "52a77656-f134-44c1-88e4-9a54e36d62cc", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "5afab376-380e-4035-b7b5-e71e99244f7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064150Z:52a77656-f134-44c1-88e4-9a54e36d62cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d85b5b13e81e766f2bdfb30a77ed04e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c456ac5-d004-47e9-ba08-c41e7ec98e2f", + "x-ms-client-request-id": "d85b5b13e81e766f2bdfb30a77ed04e9", + "x-ms-correlation-request-id": "3b5e34e9-c69a-4b89-856e-702a6c43fb49", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "82f1c1cf-5192-41be-a36f-30485c0c68bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064151Z:3b5e34e9-c69a-4b89-856e-702a6c43fb49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c35f429ac2ac26ddf3709f71301e0cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb122e63-da64-4c56-8b73-7d895eaa07ff", + "x-ms-client-request-id": "7c35f429ac2ac26ddf3709f71301e0cb", + "x-ms-correlation-request-id": "43bb5d06-149d-4e64-864a-7311b363cf3e", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "d6083d4e-da1d-4f26-8f43-255443427af4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064153Z:43bb5d06-149d-4e64-864a-7311b363cf3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d55e95dd8c4cbef47ebc83a159845a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59ba6bae-d60c-4a3e-970e-4fd9c3720863", + "x-ms-client-request-id": "3d55e95dd8c4cbef47ebc83a159845a5", + "x-ms-correlation-request-id": "ecf9e8ed-89ba-4e5d-a1e9-b0078dbeb631", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "9f6c8f83-aacb-46d4-b412-dfa558678177", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064154Z:ecf9e8ed-89ba-4e5d-a1e9-b0078dbeb631" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ac463e9a97f677ded98f8e6de786329", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d440b451-00b2-432e-b2a7-11c8b068906a", + "x-ms-client-request-id": "8ac463e9a97f677ded98f8e6de786329", + "x-ms-correlation-request-id": "cc7379f5-807d-4401-bb05-bfc33bcc4adb", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "8dadcb38-4a83-4fb1-aaef-2d85c693c2fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064155Z:cc7379f5-807d-4401-bb05-bfc33bcc4adb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8dace7ffc7985025056a353fe333ad47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35febf30-decd-42ea-abd2-6cadf683d5d8", + "x-ms-client-request-id": "8dace7ffc7985025056a353fe333ad47", + "x-ms-correlation-request-id": "c4a6ff8f-db31-4bb5-8f7a-5249d2241585", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "0514033c-29d4-407b-af68-30983492930e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064157Z:c4a6ff8f-db31-4bb5-8f7a-5249d2241585" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b00d64f2563db44b6bed4f2be008eccf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:41:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a15a495d-1879-4144-9b88-5c51ecaeeaea", + "x-ms-client-request-id": "b00d64f2563db44b6bed4f2be008eccf", + "x-ms-correlation-request-id": "3ed5c24e-9c16-4a60-97fc-ba738461764d", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "d40b882d-defd-488b-9186-a057812c22c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064200Z:3ed5c24e-9c16-4a60-97fc-ba738461764d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d3b9f87b7eb220c3d748515743e84ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "212120c2-e5d2-47fa-99e2-46b826f876ca", + "x-ms-client-request-id": "2d3b9f87b7eb220c3d748515743e84ba", + "x-ms-correlation-request-id": "9202cce9-4fbe-4d5b-b045-fe5e2d4e02fb", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "dc22e543-1e17-45ea-9df0-80373fdbb7fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064201Z:9202cce9-4fbe-4d5b-b045-fe5e2d4e02fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79f4b1eab36ba9ec9bf821ab78fa6ffc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d8bf8c6-8ef0-4e16-8310-907211b73756", + "x-ms-client-request-id": "79f4b1eab36ba9ec9bf821ab78fa6ffc", + "x-ms-correlation-request-id": "9a8de2a1-fd40-4c32-b421-8857825c7e48", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "8fc522b2-dcaf-4e5d-a61a-d64a26011635", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064202Z:9a8de2a1-fd40-4c32-b421-8857825c7e48" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44b7657d80f73a5b58ea72c8d0363f2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6bb543de-1593-4a9c-adf3-0a2660a399af", + "x-ms-client-request-id": "44b7657d80f73a5b58ea72c8d0363f2d", + "x-ms-correlation-request-id": "84bc73d8-c771-421e-918e-558824eeb01a", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "1cc95bfc-dda3-4c8b-b7f4-f1ffaea93b2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064204Z:84bc73d8-c771-421e-918e-558824eeb01a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e4194687214d464b29291f39561aa43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b415f5be-9e31-4d09-b58f-794e70720e01", + "x-ms-client-request-id": "2e4194687214d464b29291f39561aa43", + "x-ms-correlation-request-id": "c1cafc8c-9abe-44b7-aa9b-18ce949fe87b", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "a649159d-7f63-426b-9cb0-9fda5990ed6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064205Z:c1cafc8c-9abe-44b7-aa9b-18ce949fe87b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e978904408669c256ba21804023d865", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f47f604-9aa5-402a-8a8e-b6ed7599a64c", + "x-ms-client-request-id": "0e978904408669c256ba21804023d865", + "x-ms-correlation-request-id": "2d26760d-6085-4b82-9ed3-32d4ac52e764", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "2dc92934-8611-4397-891f-3dd888a0c860", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064206Z:2d26760d-6085-4b82-9ed3-32d4ac52e764" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e342f4b941b80ae701e39165ef68a4f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f4b296f-68cf-46cb-92ae-44066fc26877", + "x-ms-client-request-id": "e342f4b941b80ae701e39165ef68a4f6", + "x-ms-correlation-request-id": "5305cbfa-189c-46eb-bc7f-ee3c5e43a727", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "1952b0b0-5605-42b2-823a-77528dc36fca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064208Z:5305cbfa-189c-46eb-bc7f-ee3c5e43a727" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47c42f40319e28a7d1d7d75950e3938e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f89af4b-8792-4d2a-b6a9-8bb3070db3bb", + "x-ms-client-request-id": "47c42f40319e28a7d1d7d75950e3938e", + "x-ms-correlation-request-id": "628209f5-d72c-4476-8300-f25c4a78cf77", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "c0e421a5-ac02-4ac9-b415-55c89bd4551a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064209Z:628209f5-d72c-4476-8300-f25c4a78cf77" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a13a2bbac61fc28aa18d0da3ae5d7aee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c135deb3-e45f-4ea4-becc-3e578aee4035", + "x-ms-client-request-id": "a13a2bbac61fc28aa18d0da3ae5d7aee", + "x-ms-correlation-request-id": "24d4770a-9923-4585-a227-e96a0de4c01a", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "6c09c192-c7ba-46d3-9c6a-f0dc4d32eebe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064210Z:24d4770a-9923-4585-a227-e96a0de4c01a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "113f2b16905f88c64c1a12e1698eb91d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a5b51af-1371-4823-b8f1-86549fc4bd38", + "x-ms-client-request-id": "113f2b16905f88c64c1a12e1698eb91d", + "x-ms-correlation-request-id": "48762f10-80c3-4931-a195-14d352d82046", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "dbc91373-ad2c-4df3-ac61-7bac4e00bafa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064212Z:48762f10-80c3-4931-a195-14d352d82046" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3ab024f022e7ad6a401a61123037974", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9eee2cc2-210e-456c-a84f-325e26126fe3", + "x-ms-client-request-id": "c3ab024f022e7ad6a401a61123037974", + "x-ms-correlation-request-id": "615c689a-82dc-423b-aa25-73f10a8139c0", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "3bedc6ff-f212-4d5a-a70c-a5a2faac337c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064213Z:615c689a-82dc-423b-aa25-73f10a8139c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2542e95d82a4292f65b25404b3a95912", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a7909882-1a8f-4d13-b61f-b4dec4ea6d99", + "x-ms-client-request-id": "2542e95d82a4292f65b25404b3a95912", + "x-ms-correlation-request-id": "9a64a779-8008-4a1a-be36-78c2b1120fac", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "ea8e8a97-431d-4721-8886-8ab8c754d02d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064214Z:9a64a779-8008-4a1a-be36-78c2b1120fac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab54efd3b6b114bf54c56c5ee9b46448", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a55b2738-3abe-448b-82cc-6d0f990c700c", + "x-ms-client-request-id": "ab54efd3b6b114bf54c56c5ee9b46448", + "x-ms-correlation-request-id": "e4fd746c-059b-4a20-b6e7-2767b9f74e38", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "2aee5409-ea28-4853-a544-b475bd9e46b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064215Z:e4fd746c-059b-4a20-b6e7-2767b9f74e38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f849ea0944bcc79d3815d7cadd1c6fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1cf4c2db-29e4-481f-80d9-b7c9fb546dfb", + "x-ms-client-request-id": "7f849ea0944bcc79d3815d7cadd1c6fb", + "x-ms-correlation-request-id": "d14ca817-e2fe-42c1-ae41-dcb62cf6fc5d", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "508db0c6-c934-4000-ace0-6a0407840f38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064217Z:d14ca817-e2fe-42c1-ae41-dcb62cf6fc5d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "343d94a8cdafa6c22a2ed0de16d040b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ecc95dd1-b8c3-4c5a-8bf6-c4cfe3d00a17", + "x-ms-client-request-id": "343d94a8cdafa6c22a2ed0de16d040b0", + "x-ms-correlation-request-id": "7cf4f2ed-d20c-4e51-b972-e500baf351d6", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "0f6c701f-66d8-4a99-9ad7-5a7418fac63f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064218Z:7cf4f2ed-d20c-4e51-b972-e500baf351d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15640c4dd9253fc77587d73058436782", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2fd6f29-ba12-4c43-b8fb-19da1767ef71", + "x-ms-client-request-id": "15640c4dd9253fc77587d73058436782", + "x-ms-correlation-request-id": "a8ba921f-d394-4011-a16a-f9f5d2c2e614", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "b83f7c21-c039-4dc9-ba86-62ead0b9f0da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064219Z:a8ba921f-d394-4011-a16a-f9f5d2c2e614" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55b671ff2f77d399dcdd551cc39bb603", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7a756cb-67b4-4ac2-86b9-bc5736810782", + "x-ms-client-request-id": "55b671ff2f77d399dcdd551cc39bb603", + "x-ms-correlation-request-id": "3d0e9541-4a0d-453e-ac70-7b3d146d4c40", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "ebba5ab4-e315-4355-939a-c331f429d8ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064221Z:3d0e9541-4a0d-453e-ac70-7b3d146d4c40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a12ead41b06dced6cdfdbe27f6914de7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a32d3453-aa17-4a63-bd6f-1efd3a8664c2", + "x-ms-client-request-id": "a12ead41b06dced6cdfdbe27f6914de7", + "x-ms-correlation-request-id": "76b6c9aa-9f9e-430c-83f1-9c48c0fb3c6d", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "dd6f1d45-99d6-439d-bdb3-71badb31d7c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064222Z:76b6c9aa-9f9e-430c-83f1-9c48c0fb3c6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4de4dc7eb1a1e397291394783aa7bda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9a44fb4-26fa-4ea0-8e3d-1511ce53628a", + "x-ms-client-request-id": "a4de4dc7eb1a1e397291394783aa7bda", + "x-ms-correlation-request-id": "7d93b3c9-e743-4131-a0ba-dc5252134e11", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "e3458826-b6a6-4638-854b-88cf84cca383", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064223Z:7d93b3c9-e743-4131-a0ba-dc5252134e11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abefd4d1c5144f149be788797171dd4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48da0d05-ca48-40ba-bf71-28fe18afdb73", + "x-ms-client-request-id": "abefd4d1c5144f149be788797171dd4a", + "x-ms-correlation-request-id": "b30a8e89-6e54-42d5-befd-705ac639c705", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "7d54791a-5bd6-454e-9ecf-e2fcfc1b32c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064224Z:b30a8e89-6e54-42d5-befd-705ac639c705" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76556e9011bc56e973102edc778e4a23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2820321b-035d-4daf-9a60-962845635999", + "x-ms-client-request-id": "76556e9011bc56e973102edc778e4a23", + "x-ms-correlation-request-id": "daadc724-63f1-4336-bf69-943b3a32dfd4", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "40a729c1-6271-4602-87b2-fe07a687f7f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064226Z:daadc724-63f1-4336-bf69-943b3a32dfd4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2156e382a1a201d2388f093263bfac01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b73ee1a-577d-4aa3-b11f-9ecb7681bdc2", + "x-ms-client-request-id": "2156e382a1a201d2388f093263bfac01", + "x-ms-correlation-request-id": "1faca7a3-f5ec-4b67-bab7-a883cf6666ad", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "88db49be-ad3f-4e72-8ec2-a53798a486e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064227Z:1faca7a3-f5ec-4b67-bab7-a883cf6666ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15b7eeb40554bf1deb9937049738d80c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "861c880c-db29-4adf-83ca-18e3bdf32f43", + "x-ms-client-request-id": "15b7eeb40554bf1deb9937049738d80c", + "x-ms-correlation-request-id": "5e8409e8-4780-41a4-b725-c24fdfae92a7", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "c8469a0d-40bd-44b3-9cb8-5fe34ac61e3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064228Z:5e8409e8-4780-41a4-b725-c24fdfae92a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8df7649dbb1aeea89c533d2d07b6f2b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b94cefb-ef49-4e04-84f7-08ff5ab32d7a", + "x-ms-client-request-id": "8df7649dbb1aeea89c533d2d07b6f2b4", + "x-ms-correlation-request-id": "7ab818dd-08bf-4fc5-80cd-68215be9cbb6", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "3a2ca67d-2e0f-4483-a66b-961e8b4bd280", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064230Z:7ab818dd-08bf-4fc5-80cd-68215be9cbb6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88282d6335d67ccec59635096acd6a00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72bd6557-088e-4018-93b8-e442f0f820e6", + "x-ms-client-request-id": "88282d6335d67ccec59635096acd6a00", + "x-ms-correlation-request-id": "31688c9d-a4aa-408a-92b4-d6aecad27258", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "5518f470-2457-4cb3-92d7-708e31387c0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064231Z:31688c9d-a4aa-408a-92b4-d6aecad27258" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe95fcb71fc8f8e646c97900c8f0b734", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0201c241-c47f-4b4a-9207-0a166a3defeb", + "x-ms-client-request-id": "fe95fcb71fc8f8e646c97900c8f0b734", + "x-ms-correlation-request-id": "b4060d86-6cba-4a32-9a9b-4355503a1b54", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "04ab20f5-3e33-4305-8813-227a78c8be03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064232Z:b4060d86-6cba-4a32-9a9b-4355503a1b54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6aa183a6500f6836967ac784859e83ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "753e71b7-08bb-4c1f-a33a-71e0d0c274f2", + "x-ms-client-request-id": "6aa183a6500f6836967ac784859e83ce", + "x-ms-correlation-request-id": "c13bbe99-a2b0-4662-b1df-57486a1e5e7e", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "3ad4b9b8-ac2b-41d3-b618-b8a8c45d013d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064234Z:c13bbe99-a2b0-4662-b1df-57486a1e5e7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b763ce9f42143eb4630410dbbcdb3d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3911dd47-0119-410c-a2dc-ef84dbb6ec34", + "x-ms-client-request-id": "0b763ce9f42143eb4630410dbbcdb3d5", + "x-ms-correlation-request-id": "a05198ce-ef49-4e32-962e-a26433ca49ca", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "76147a11-96f0-4d61-814c-4b7cff6b0cb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064235Z:a05198ce-ef49-4e32-962e-a26433ca49ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e66201deff2c67f0c62c684d576273a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a88d4ecf-480a-40dc-a682-388b31ff764b", + "x-ms-client-request-id": "e66201deff2c67f0c62c684d576273a7", + "x-ms-correlation-request-id": "476b2637-80a6-4052-b206-45e0e3c677c3", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "2ef9ee3e-601c-47af-a644-7a9076b023f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064236Z:476b2637-80a6-4052-b206-45e0e3c677c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b17aa45ac7ab113975d23df0e29acc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2d47912-9de0-43df-9e9d-320a2d1d8c80", + "x-ms-client-request-id": "8b17aa45ac7ab113975d23df0e29acc8", + "x-ms-correlation-request-id": "7d7a6f7e-f5a5-4865-8653-c81211fc53be", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "3a2a1de9-f11f-40bd-8e0f-3ef554817833", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064237Z:7d7a6f7e-f5a5-4865-8653-c81211fc53be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84a5f2c79d3be9a24b0f44f48c9eece4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba28d267-e3bd-4a67-954c-088797d18a73", + "x-ms-client-request-id": "84a5f2c79d3be9a24b0f44f48c9eece4", + "x-ms-correlation-request-id": "54e7703f-3968-4083-ba43-d1da14143e4d", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "cb579177-2455-456b-820a-2330e837f7f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064239Z:54e7703f-3968-4083-ba43-d1da14143e4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10c799bc28b6325aedb14ecfdc11589d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65c9678c-a347-4510-bbd3-fb02639916b3", + "x-ms-client-request-id": "10c799bc28b6325aedb14ecfdc11589d", + "x-ms-correlation-request-id": "8730b3d3-0c8b-4bea-bfb7-ec45d57c6454", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "1cc2ed18-019e-40ba-b888-e399af10a1bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064240Z:8730b3d3-0c8b-4bea-bfb7-ec45d57c6454" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65869f80eebca86c082d3f6b671e24f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87312954-0810-4fd3-b5e7-9f5dcc1f90a2", + "x-ms-client-request-id": "65869f80eebca86c082d3f6b671e24f9", + "x-ms-correlation-request-id": "f41b887d-c25a-4127-859f-929a59d36c8e", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "90fcdac2-bdb8-4660-906f-13a66e83b7d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064241Z:f41b887d-c25a-4127-859f-929a59d36c8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75223f719b619e119773968a4ed30d3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5abab31f-3819-4269-b55e-da0e5d79cd22", + "x-ms-client-request-id": "75223f719b619e119773968a4ed30d3a", + "x-ms-correlation-request-id": "12c7b0f4-6c0d-4867-a6f3-c0d816c3a852", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "fc0d3dcb-e57b-458a-977d-c889dc038c51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064243Z:12c7b0f4-6c0d-4867-a6f3-c0d816c3a852" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed73a7b68617ce272d1e0889e8efcace", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43f5e888-95a0-4a87-a33d-01311b016d7c", + "x-ms-client-request-id": "ed73a7b68617ce272d1e0889e8efcace", + "x-ms-correlation-request-id": "3614d170-a926-426d-8aab-a9b336f5a297", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "45646a04-a10d-4f9d-9b45-8d6660068462", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064244Z:3614d170-a926-426d-8aab-a9b336f5a297" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c5d558ce2eee53b8de7ce4957e15a35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f9f7147-aeeb-4d87-9dc4-d59602e82472", + "x-ms-client-request-id": "9c5d558ce2eee53b8de7ce4957e15a35", + "x-ms-correlation-request-id": "666f91d2-2183-4d52-8e6b-2b1e727a8531", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "eb5d1795-6939-49a9-8e98-999927e39c71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064245Z:666f91d2-2183-4d52-8e6b-2b1e727a8531" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0b4051f37aaeae1175448439388b6a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3283a6ff-b990-47b2-8e4d-8e716301561e", + "x-ms-client-request-id": "c0b4051f37aaeae1175448439388b6a7", + "x-ms-correlation-request-id": "0377e587-1aa3-4adf-a7a2-1a7fcc039586", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "34d2ac80-60f4-489f-aecf-e581dd520955", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064247Z:0377e587-1aa3-4adf-a7a2-1a7fcc039586" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8fec7a97175d34b6c8e5f30b8de764b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed55755c-0987-4bfe-894b-dc5113c9d872", + "x-ms-client-request-id": "f8fec7a97175d34b6c8e5f30b8de764b", + "x-ms-correlation-request-id": "26fafc54-1e16-4f90-97e3-0c6313bb4df9", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "add7c865-2b41-4402-be95-a0df9dec6f0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064248Z:26fafc54-1e16-4f90-97e3-0c6313bb4df9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e269d2c3093a54247372849a9af85204", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4b5fafff-5e7c-423e-aa4c-46c3ece03119", + "x-ms-client-request-id": "e269d2c3093a54247372849a9af85204", + "x-ms-correlation-request-id": "eff4f7b7-4740-4fa4-8cc6-c6f6aa7db4c6", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "ff7a5c5b-873f-4cd2-8e8a-450407de724a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064249Z:eff4f7b7-4740-4fa4-8cc6-c6f6aa7db4c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90a0263161e3aec0b9e0541cd8b13239", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6adae534-b97a-4178-a548-a03207b47b15", + "x-ms-client-request-id": "90a0263161e3aec0b9e0541cd8b13239", + "x-ms-correlation-request-id": "1e12b649-472d-42ed-a396-04808259ad98", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "5a4662cd-17d4-4669-b630-d6e0a644eaf1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064250Z:1e12b649-472d-42ed-a396-04808259ad98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c07ffcddd31f9f6da3a98402ecb13974", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aceee400-27e9-4aa0-b626-2b602396bbca", + "x-ms-client-request-id": "c07ffcddd31f9f6da3a98402ecb13974", + "x-ms-correlation-request-id": "01dabd57-4135-478b-ad0e-fee11f9a58ca", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "08e5f088-e18c-462b-8b56-1308619f68fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064252Z:01dabd57-4135-478b-ad0e-fee11f9a58ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92fe5a3ce63d616812ba295ab5087cc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8039d887-c025-4cb5-8fb2-8d6220043cbb", + "x-ms-client-request-id": "92fe5a3ce63d616812ba295ab5087cc2", + "x-ms-correlation-request-id": "a911089c-03eb-4414-98a3-5e29fe0cd75d", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "bdd7b951-e175-44b7-943c-c079c47ee41e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064253Z:a911089c-03eb-4414-98a3-5e29fe0cd75d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dbc4a4091785de5b800ec3addbdc108", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "debee6c0-2a59-42aa-b54d-3c162f01d81c", + "x-ms-client-request-id": "9dbc4a4091785de5b800ec3addbdc108", + "x-ms-correlation-request-id": "83d79c3b-1a9e-40f0-be9a-4b7febc2d2ae", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "ce1b90d8-de61-4bb1-89e4-abf74cc86fdf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064254Z:83d79c3b-1a9e-40f0-be9a-4b7febc2d2ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7edfe0a79fb2f7fb941dad64a913ea9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1068635-e245-45e0-9176-e2492eeba903", + "x-ms-client-request-id": "7edfe0a79fb2f7fb941dad64a913ea9b", + "x-ms-correlation-request-id": "901593b6-7504-42da-8f42-07fe25786f55", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "9788a3cb-1653-4ae3-9ac5-0aa9a9aaf8c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064256Z:901593b6-7504-42da-8f42-07fe25786f55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1c1c22d9bf4abfb74a1d93cf92e8455", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de8fff4e-99b8-4a70-8d40-1b055ff45065", + "x-ms-client-request-id": "a1c1c22d9bf4abfb74a1d93cf92e8455", + "x-ms-correlation-request-id": "8a7034c9-b7cc-4077-95b1-1ca87152b20b", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "973c2d23-e847-4db2-b274-4fec5eb25fd5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064257Z:8a7034c9-b7cc-4077-95b1-1ca87152b20b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4b221f8fe28a00f4ec5095ae380b3a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a2e1610-1c1e-465f-a79d-720e0f431316", + "x-ms-client-request-id": "d4b221f8fe28a00f4ec5095ae380b3a5", + "x-ms-correlation-request-id": "1ab1ce64-acfd-4aac-b298-2b27f05e28a3", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "ced7404f-540f-4be7-87a8-c172481bef04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064258Z:1ab1ce64-acfd-4aac-b298-2b27f05e28a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a0c511620fb0b13e4340911c6bffd66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:42:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccc24d1a-bc88-49c8-b4f2-8cc0a60ac840", + "x-ms-client-request-id": "1a0c511620fb0b13e4340911c6bffd66", + "x-ms-correlation-request-id": "81e84a90-c456-4921-bcd4-3da9dbae1899", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "5d644256-5824-46ed-9e83-14d8e0be9d79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064259Z:81e84a90-c456-4921-bcd4-3da9dbae1899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "886b589815602f72b321532e91a0c7f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2e51ee0-29d6-4b5d-b084-d4e86896d295", + "x-ms-client-request-id": "886b589815602f72b321532e91a0c7f4", + "x-ms-correlation-request-id": "e2cb636a-c4e0-40ed-bc59-3b6419d87f76", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "aa47399e-aa94-4fbd-acb6-d3e80d03f505", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064301Z:e2cb636a-c4e0-40ed-bc59-3b6419d87f76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a82633ed6a21d8590da6f0f4f4feda8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3bfc3c5-d4a0-4152-82a4-58a99ed899ca", + "x-ms-client-request-id": "a82633ed6a21d8590da6f0f4f4feda8f", + "x-ms-correlation-request-id": "f3ec4d49-1d49-42ee-a4e3-408f6cfefb60", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "6ba327ba-58b0-4abd-83f2-9ccbd0e1edd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064302Z:f3ec4d49-1d49-42ee-a4e3-408f6cfefb60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bc2a3c82a150145dedd67dacde57944", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a9be84c-69f9-4fc9-a047-c828bd16a2e9", + "x-ms-client-request-id": "8bc2a3c82a150145dedd67dacde57944", + "x-ms-correlation-request-id": "4ca6d92c-37da-4694-b3e8-04e7980dd688", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "2eba86f6-36a5-4433-b8f5-b7337ca86c23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064303Z:4ca6d92c-37da-4694-b3e8-04e7980dd688" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9224156d54982e45ff937bb9257d3ab4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a88e979e-7f35-4b5c-9c2c-01102aa414ab", + "x-ms-client-request-id": "9224156d54982e45ff937bb9257d3ab4", + "x-ms-correlation-request-id": "9bf81ad3-8e81-4c16-85ad-811d02e3f0b9", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "84f6178f-c864-4207-8823-024263d41db6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064305Z:9bf81ad3-8e81-4c16-85ad-811d02e3f0b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee66c3463bdec2deee24ca43037e0b28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "440107b9-cef8-4c4b-9e38-e5d39ead702b", + "x-ms-client-request-id": "ee66c3463bdec2deee24ca43037e0b28", + "x-ms-correlation-request-id": "ee58dc26-8f0a-44f1-8efb-08acbf48c59e", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "60fcfc3e-d2ae-4aca-afa4-aefc54ad1c9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064306Z:ee58dc26-8f0a-44f1-8efb-08acbf48c59e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df87ab2c47d973f65e938b81af8bdc60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b820421-bb2d-4c56-b107-3779fbd8b7d8", + "x-ms-client-request-id": "df87ab2c47d973f65e938b81af8bdc60", + "x-ms-correlation-request-id": "6b38192d-b9c8-4e87-8d75-c3d716b42e92", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "de6e6fa7-a677-4a25-ad25-878cecaef605", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064307Z:6b38192d-b9c8-4e87-8d75-c3d716b42e92" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0993b2a38b7e31663662a4748a022a80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c7fa3e6-c681-4645-b833-597bc17a5939", + "x-ms-client-request-id": "0993b2a38b7e31663662a4748a022a80", + "x-ms-correlation-request-id": "d12c4c36-05bc-40a4-8bd9-c18b574b497c", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "6247b883-691d-499f-9f0a-d2597127807b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064308Z:d12c4c36-05bc-40a4-8bd9-c18b574b497c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "798c53875af6fedaccf2904aaf5d1262", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4657c2e-54fa-4474-92a7-9fdc9dd04111", + "x-ms-client-request-id": "798c53875af6fedaccf2904aaf5d1262", + "x-ms-correlation-request-id": "6a7e763d-9015-4765-90d9-e5e0d4cb19cc", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "40418a11-f2b2-4e60-b4a9-e086a5f6cd5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064310Z:6a7e763d-9015-4765-90d9-e5e0d4cb19cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "509f6a4701eaa1a94556a977a382e95b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd9d3f76-95f6-47de-8ed7-3360eccf1b4d", + "x-ms-client-request-id": "509f6a4701eaa1a94556a977a382e95b", + "x-ms-correlation-request-id": "c7834e3a-80d2-4e3f-b900-32be63f5ba8b", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "bf77cef2-9e24-45cd-b2aa-d7e14669e8f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064311Z:c7834e3a-80d2-4e3f-b900-32be63f5ba8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5bfa0b6863ff496ad7953d8bfa1b81d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "853c4f77-32ea-450b-ac40-41385572a078", + "x-ms-client-request-id": "5bfa0b6863ff496ad7953d8bfa1b81d9", + "x-ms-correlation-request-id": "a9ce1fe0-b583-4d8b-a7c4-c542089e5fed", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "52272389-104f-461c-91fd-91280f0e3611", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064312Z:a9ce1fe0-b583-4d8b-a7c4-c542089e5fed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "202d414fda638595a9ea339fb0625a4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df75d8eb-6028-4479-a5ce-7d5d077eaace", + "x-ms-client-request-id": "202d414fda638595a9ea339fb0625a4a", + "x-ms-correlation-request-id": "66b009da-b6ac-4859-850c-b143d14de13c", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "2e6cc542-f4ce-403f-baf5-5eee63ef39e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064313Z:66b009da-b6ac-4859-850c-b143d14de13c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4e13409b762e462ff557955c41da629", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df9e0e26-3b57-499a-8d03-cb680dbc6332", + "x-ms-client-request-id": "a4e13409b762e462ff557955c41da629", + "x-ms-correlation-request-id": "462a9fab-a122-4637-bc02-f44c1affa984", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "1503f02f-9e77-4e58-9a78-1025dc9ea77a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064315Z:462a9fab-a122-4637-bc02-f44c1affa984" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6228d0d5c9548ef87575b1142fca9974", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d444f7b2-f774-460f-bc95-9b6cdea59dbc", + "x-ms-client-request-id": "6228d0d5c9548ef87575b1142fca9974", + "x-ms-correlation-request-id": "87c76ee1-d45e-4b2a-afa9-9b70abecd760", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "a2479737-f8f8-426d-a53a-9e9ec7b7f7f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064316Z:87c76ee1-d45e-4b2a-afa9-9b70abecd760" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c682f23adc3a9876de49200d6140c08c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7115805a-3b69-4904-a03f-b9f5f8a08c2e", + "x-ms-client-request-id": "c682f23adc3a9876de49200d6140c08c", + "x-ms-correlation-request-id": "ed04b63f-d735-4bd5-a2f4-0109f586dc6e", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "0fb64ad3-4d9a-4530-850b-da5c6850cb14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064317Z:ed04b63f-d735-4bd5-a2f4-0109f586dc6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0ca0a44f83a3ff53b522fed054eb435", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "faeee527-c3cb-4ac7-aa91-d8d27028c3e5", + "x-ms-client-request-id": "e0ca0a44f83a3ff53b522fed054eb435", + "x-ms-correlation-request-id": "5c1301fd-9e2b-4d34-9d3f-d62afaaf8b6c", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "f30ef65b-ee7b-4f43-aecf-e7ca683583b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064318Z:5c1301fd-9e2b-4d34-9d3f-d62afaaf8b6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d11b04bce09bf8ef5a90830ba9eb2d35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f85dd820-142d-4b46-9466-96cc9a1fa791", + "x-ms-client-request-id": "d11b04bce09bf8ef5a90830ba9eb2d35", + "x-ms-correlation-request-id": "7a911b1d-ba51-459c-b372-12b127ce0442", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "03080382-6463-45fb-87eb-04734f37af17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064320Z:7a911b1d-ba51-459c-b372-12b127ce0442" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25d025b4b900413afd438ae7ad889290", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a39e05db-6656-4fe6-aa70-c4034b8fa1af", + "x-ms-client-request-id": "25d025b4b900413afd438ae7ad889290", + "x-ms-correlation-request-id": "fcb049d5-70f4-42bc-8f96-727ebfc6fc34", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "2247550f-153b-4019-b8b9-d67c42829c83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064321Z:fcb049d5-70f4-42bc-8f96-727ebfc6fc34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c51ea94ef2463f11ad185a975e99650", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "410dea13-6d48-4ee5-9ee3-c23c638c5927", + "x-ms-client-request-id": "5c51ea94ef2463f11ad185a975e99650", + "x-ms-correlation-request-id": "d378e672-12d5-47db-9d64-c15c38690048", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "b1c2b25a-ff13-453b-ae6a-e98241094197", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064322Z:d378e672-12d5-47db-9d64-c15c38690048" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df39fa258f7e0235c9dad45756074bd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f6be15a-cc7c-4c83-a4c5-841c0e5ecb9a", + "x-ms-client-request-id": "df39fa258f7e0235c9dad45756074bd1", + "x-ms-correlation-request-id": "980d0f09-56a3-4063-8af0-92b51c3fc1ea", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "314184e4-f7a0-4fc9-87d6-9d577bb747c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064324Z:980d0f09-56a3-4063-8af0-92b51c3fc1ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be77f3fdd099c411346c0a2e3391cb13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83cc8b0a-e659-42f8-b9bd-fbf42d0cca72", + "x-ms-client-request-id": "be77f3fdd099c411346c0a2e3391cb13", + "x-ms-correlation-request-id": "c6ea0a88-f06d-4a2c-8460-f5833e4b9a2e", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "3e281ecd-3f23-4bc8-9aee-6ecfbbfcafc5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064325Z:c6ea0a88-f06d-4a2c-8460-f5833e4b9a2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2c239adb34f0412b54e93491a990c13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "936db0e4-8a42-4802-a516-20e1d2f596b8", + "x-ms-client-request-id": "b2c239adb34f0412b54e93491a990c13", + "x-ms-correlation-request-id": "1a442924-5f84-4042-8fdd-c61010c19e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "99a8a626-f37c-4e59-b211-f9b65ad54103", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064326Z:1a442924-5f84-4042-8fdd-c61010c19e9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82abb485d77254b6e974aa118506cf37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ff055de-4840-4a8b-84d6-1dae34f94943", + "x-ms-client-request-id": "82abb485d77254b6e974aa118506cf37", + "x-ms-correlation-request-id": "a309c6f2-471b-469d-b83b-a6721efc91ca", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "c33c9c5e-b343-441b-a173-c1d1a14464b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064327Z:a309c6f2-471b-469d-b83b-a6721efc91ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1daac00f98444a81e072084b3dc7a99b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "025ba40f-d2c2-4f9f-870c-5d757f34b481", + "x-ms-client-request-id": "1daac00f98444a81e072084b3dc7a99b", + "x-ms-correlation-request-id": "38a12d92-a0d1-4788-872e-20466939ee21", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "77c397f1-44f5-4901-b27d-3bc87a1fec1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064329Z:38a12d92-a0d1-4788-872e-20466939ee21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ea8f65f49e6d5a1826ec9da08007faf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1fc81088-c57a-41e4-973c-dca0ab8195d4", + "x-ms-client-request-id": "7ea8f65f49e6d5a1826ec9da08007faf", + "x-ms-correlation-request-id": "fe239d8e-63a1-44f2-906b-35a696b4d782", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "45becc17-a7a3-4bcc-be4d-60ec78deb887", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064330Z:fe239d8e-63a1-44f2-906b-35a696b4d782" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a3a5b7eefeeedce3361a1ffcf6b1621", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d4764f5-c875-40a1-8745-d11272c2cd82", + "x-ms-client-request-id": "5a3a5b7eefeeedce3361a1ffcf6b1621", + "x-ms-correlation-request-id": "30189e9d-2c63-498d-a3bd-f78a19e3745b", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "0b24ae04-2ed0-48ae-9992-c9d7cce7f2f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064331Z:30189e9d-2c63-498d-a3bd-f78a19e3745b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8eb10fca515ec5511ed59ad6cea641e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd55e223-b042-42de-bf64-b004353bfe87", + "x-ms-client-request-id": "8eb10fca515ec5511ed59ad6cea641e0", + "x-ms-correlation-request-id": "73ddbc31-8379-49e9-8fcb-e45a5e8db528", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "163051ab-6497-4ce8-b5ed-7a53b1b662b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064332Z:73ddbc31-8379-49e9-8fcb-e45a5e8db528" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1cc59f34f8d6fac28bb4b84a7a20616", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6f60e16-6d3b-4179-909a-34bb37ba8492", + "x-ms-client-request-id": "e1cc59f34f8d6fac28bb4b84a7a20616", + "x-ms-correlation-request-id": "ef4685c3-1139-45dc-bd4d-e3728d77b2b9", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "4aec58a2-2441-46eb-8327-a7d63c5d59b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064334Z:ef4685c3-1139-45dc-bd4d-e3728d77b2b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f910a857f14e2d5109743b1955f71e8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf8e6676-5d3c-4f67-bbd8-314436060395", + "x-ms-client-request-id": "f910a857f14e2d5109743b1955f71e8c", + "x-ms-correlation-request-id": "3ad3ddff-ffff-4bd7-be48-de3082685b96", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "509b514b-da06-41e9-90b1-366254e98d6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064335Z:3ad3ddff-ffff-4bd7-be48-de3082685b96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "750bc120349f7b94624165a206cd1e7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a697bbbb-4053-4d97-b772-884a6a97bc43", + "x-ms-client-request-id": "750bc120349f7b94624165a206cd1e7c", + "x-ms-correlation-request-id": "fc9e12e4-212a-4393-96ba-02c898197a2d", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "c79ff846-0cc5-413b-be29-693c0eb8dbe0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064336Z:fc9e12e4-212a-4393-96ba-02c898197a2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "267f83cf47960291089fd81813931a30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c02da583-ff08-46a3-867e-c9e236dfec8b", + "x-ms-client-request-id": "267f83cf47960291089fd81813931a30", + "x-ms-correlation-request-id": "9cca16ec-fd08-422e-9ca2-10e35c828072", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "4f4482a0-5081-4a35-8905-011647e1bb17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064337Z:9cca16ec-fd08-422e-9ca2-10e35c828072" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e664bf9c909622771494970d8bae273c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "237968f7-60e7-408e-b030-90589d267fe0", + "x-ms-client-request-id": "e664bf9c909622771494970d8bae273c", + "x-ms-correlation-request-id": "c1dae5c3-1936-4d57-bdd1-b06448954e67", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "6a1b91cd-832b-45d7-ad75-4401b1644478", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064339Z:c1dae5c3-1936-4d57-bdd1-b06448954e67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d14abe55f878d8f52f096dff5c7b67ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cfcb06b1-0abc-44ee-a524-bffb57b7cf5f", + "x-ms-client-request-id": "d14abe55f878d8f52f096dff5c7b67ce", + "x-ms-correlation-request-id": "b04badb2-fc2c-4085-b5b9-10e1b8d7a825", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "3008f519-b641-4861-9628-26c9f13a5b88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064340Z:b04badb2-fc2c-4085-b5b9-10e1b8d7a825" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4606352638683ee60c5c1201b084775a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6aa939e-3d38-4d0d-a981-c50065dcfee4", + "x-ms-client-request-id": "4606352638683ee60c5c1201b084775a", + "x-ms-correlation-request-id": "d029b32e-bf4d-4e9f-930d-863186aa3dbb", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "38313915-4170-4135-ab59-ce7caa389c0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064341Z:d029b32e-bf4d-4e9f-930d-863186aa3dbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55c29c784949a4b7c98cb68c2377c698", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "650b0dad-70fa-48ed-b89d-7f87d00fa963", + "x-ms-client-request-id": "55c29c784949a4b7c98cb68c2377c698", + "x-ms-correlation-request-id": "0d1ffac3-a7d4-45af-8980-9681708f6762", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "a7fea541-5213-4864-ae5e-067da848d02c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064342Z:0d1ffac3-a7d4-45af-8980-9681708f6762" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55e6c92de0a81dd3d80bc51ce5f328ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4be237c-e904-497b-9bd9-7ff0214c2e7f", + "x-ms-client-request-id": "55e6c92de0a81dd3d80bc51ce5f328ab", + "x-ms-correlation-request-id": "4cca8ad0-2483-4305-b1e1-6d11f0b7e56d", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "6dbf9709-1b72-4be8-8105-032b5416b65b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064344Z:4cca8ad0-2483-4305-b1e1-6d11f0b7e56d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c087139212b9dd847d617ddc81591b94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6a3f6bb-a666-4163-a78c-3b892f659d30", + "x-ms-client-request-id": "c087139212b9dd847d617ddc81591b94", + "x-ms-correlation-request-id": "dc1b11cc-41ae-4ebc-952e-7ec797687872", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "a09dba1f-2e00-4cab-91b8-26eec237650f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064345Z:dc1b11cc-41ae-4ebc-952e-7ec797687872" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6d47a96219e97b2c8a47c3e849bbed6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f14a8743-a349-4fcd-b1ee-1513a93a7b0f", + "x-ms-client-request-id": "e6d47a96219e97b2c8a47c3e849bbed6", + "x-ms-correlation-request-id": "39a900f5-f168-4cd3-bc83-f2fab3db58e3", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "517125cd-05ed-42fd-8a28-93f6eead4db1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064346Z:39a900f5-f168-4cd3-bc83-f2fab3db58e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10fa0b6305f01bde4409d84663f79b7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4fa2b0a-e2a8-4264-aadc-0f881aeda295", + "x-ms-client-request-id": "10fa0b6305f01bde4409d84663f79b7f", + "x-ms-correlation-request-id": "285535c9-50cd-475b-be5f-e988b7f3bd5a", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "324d1741-469f-4afb-92eb-b45e98a4b017", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064348Z:285535c9-50cd-475b-be5f-e988b7f3bd5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b8530f0411f710d60eff714954658e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ca247d4-e2bc-440c-9cd5-c7f692705ed2", + "x-ms-client-request-id": "6b8530f0411f710d60eff714954658e2", + "x-ms-correlation-request-id": "03914c22-5ab3-4428-a3e5-66ddd4b12f68", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "92ccf2be-8e78-4094-8474-1eba72a3c7f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064349Z:03914c22-5ab3-4428-a3e5-66ddd4b12f68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7678a6a20a5f90a49bb8a295486b34d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b474627f-0521-44cc-907c-959093b0a184", + "x-ms-client-request-id": "7678a6a20a5f90a49bb8a295486b34d1", + "x-ms-correlation-request-id": "0f9ab80b-4f2f-4bd2-8d2a-319a8ff2fe02", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "c062a129-0c8c-4e96-a6bf-42e0ec67cf80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064350Z:0f9ab80b-4f2f-4bd2-8d2a-319a8ff2fe02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "534dfd09521521b7fd88af000eca85fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58ec5483-365d-4b19-aab9-f6502f7e2412", + "x-ms-client-request-id": "534dfd09521521b7fd88af000eca85fe", + "x-ms-correlation-request-id": "ba139ce0-b425-4b6a-b475-f02677c953bc", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "1a2c6e49-8e4e-4400-858c-77e792a406e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064351Z:ba139ce0-b425-4b6a-b475-f02677c953bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bca3f6b0257ee51f8cf5d0669f7828f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05c80e8e-136d-4539-95bb-45472d25d4db", + "x-ms-client-request-id": "bca3f6b0257ee51f8cf5d0669f7828f5", + "x-ms-correlation-request-id": "520bdb41-8672-4c2f-8fd2-ffc8b4b7f84a", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "b6c27c04-0ddc-4f21-8c73-fb5d5c49b2e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064353Z:520bdb41-8672-4c2f-8fd2-ffc8b4b7f84a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "980b25bb04f850ccef5678d65ba382d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b3e07a6-8b73-44da-8287-28f6a61c6028", + "x-ms-client-request-id": "980b25bb04f850ccef5678d65ba382d0", + "x-ms-correlation-request-id": "2afb9cd5-f9d2-415b-ba82-1269852beb54", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "dbc37b82-35b9-4bf2-bbed-7dfe8e350205", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064354Z:2afb9cd5-f9d2-415b-ba82-1269852beb54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52e4a33278c8e453dd68c72082508285", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5be800b7-ee6d-43d4-a832-e8b56aeee72c", + "x-ms-client-request-id": "52e4a33278c8e453dd68c72082508285", + "x-ms-correlation-request-id": "1cfe01ec-3c37-4e03-806f-2f559947841a", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "ac1668cb-ebcb-4f98-82e4-229dc3493e96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064355Z:1cfe01ec-3c37-4e03-806f-2f559947841a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e844ba5fedbfab062953cc27ac498ae8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "000c24dc-bf46-4306-92b0-5cbd4eb99989", + "x-ms-client-request-id": "e844ba5fedbfab062953cc27ac498ae8", + "x-ms-correlation-request-id": "65eb9bad-19b5-41a0-86c5-c796d4d3f275", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "314806af-5545-4693-86aa-34e49000ac0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064356Z:65eb9bad-19b5-41a0-86c5-c796d4d3f275" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc33ff72d693422cd227bb903dacce9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09f217e4-9017-4785-af94-6fa340907bbd", + "x-ms-client-request-id": "fc33ff72d693422cd227bb903dacce9e", + "x-ms-correlation-request-id": "b40d4b81-5d11-4409-be0e-4b8c1283b3f2", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "8bd63acf-051c-4fc1-8b78-1fc509a05fa4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064358Z:b40d4b81-5d11-4409-be0e-4b8c1283b3f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a076f2d4995f45119c382974ab2c3793", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:43:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6ca4c64-1a46-459f-a84a-853a60a3fa83", + "x-ms-client-request-id": "a076f2d4995f45119c382974ab2c3793", + "x-ms-correlation-request-id": "aef06b1a-f022-453b-8f62-7aad3dec9fbb", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "80a5a9c9-8dd4-4f1e-a29c-97985a34f171", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064359Z:aef06b1a-f022-453b-8f62-7aad3dec9fbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82addedd861d89f28d02169831766e7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12ab21ae-5ad5-4aa6-bd5e-64cf661dabb7", + "x-ms-client-request-id": "82addedd861d89f28d02169831766e7d", + "x-ms-correlation-request-id": "d9103d8c-1adb-49dc-bb5d-fe121524548d", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "6daab233-64fb-46c2-ab00-6b38cd22ece0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064400Z:d9103d8c-1adb-49dc-bb5d-fe121524548d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9522e85e9d2d889eeed5f5aadb897a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d5e3a4e-56b3-4640-b54b-ed21a223161a", + "x-ms-client-request-id": "b9522e85e9d2d889eeed5f5aadb897a5", + "x-ms-correlation-request-id": "2458503d-ed6b-4902-96af-b23c8e3a38cb", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "409ec656-b172-42c3-897c-e7c6f8a56d70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064401Z:2458503d-ed6b-4902-96af-b23c8e3a38cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5eb227ef4bfe4e8100ed135c83791326", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df49a8f4-43d1-4ef4-a11a-cc44bb6a0961", + "x-ms-client-request-id": "5eb227ef4bfe4e8100ed135c83791326", + "x-ms-correlation-request-id": "f14ab46b-f163-486e-bf6e-7d5864e21f5b", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "1b3db6f1-eff4-4b0a-a931-ea9b7df94ea7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064403Z:f14ab46b-f163-486e-bf6e-7d5864e21f5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7defabca7ed9f4c154d5932f2697dcd5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "784723dd-cb41-4c89-98b9-4a150a047a86", + "x-ms-client-request-id": "7defabca7ed9f4c154d5932f2697dcd5", + "x-ms-correlation-request-id": "d71a0aaa-1862-469e-97e9-30d60179a102", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "2eeeb6b4-00ae-49d7-b518-5eb27ef5bf91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064404Z:d71a0aaa-1862-469e-97e9-30d60179a102" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0aa9706b0fc3397eac04b8e5d62c5575", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b34caa07-5307-4f74-9b00-2a3570aa5e33", + "x-ms-client-request-id": "0aa9706b0fc3397eac04b8e5d62c5575", + "x-ms-correlation-request-id": "fd281e50-fe0b-4bfb-b74e-2b299ff3c8a6", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "f769be92-c45f-40a9-a05a-4446c688ba0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064406Z:fd281e50-fe0b-4bfb-b74e-2b299ff3c8a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "019038da19c870cb66be0929b8512869", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64ba172b-b326-49cf-9531-7751ba33298b", + "x-ms-client-request-id": "019038da19c870cb66be0929b8512869", + "x-ms-correlation-request-id": "75697582-aabd-47d7-8622-fe661ff25f3f", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "9778fad6-7da0-45b1-bdde-73109d80ca4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064407Z:75697582-aabd-47d7-8622-fe661ff25f3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13f13d1009d0ba622db6d0d5c5db1d28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "abdac031-a095-4658-900c-d683c9ef232f", + "x-ms-client-request-id": "13f13d1009d0ba622db6d0d5c5db1d28", + "x-ms-correlation-request-id": "203aaec5-6001-42b0-a873-479879502685", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "bf74fdfa-c63c-46f9-82e0-a8e6edcda6db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064409Z:203aaec5-6001-42b0-a873-479879502685" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed551e80db06510ca438a4050555815b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c6f63d5-5071-4670-89f5-4ad654a60f9e", + "x-ms-client-request-id": "ed551e80db06510ca438a4050555815b", + "x-ms-correlation-request-id": "1cdc7b44-fa1c-4f60-bbc4-962ec5d0cc52", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "3204c3ad-a0cd-474e-8353-23aab362e44e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064410Z:1cdc7b44-fa1c-4f60-bbc4-962ec5d0cc52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98d54fdc423ad0a5d5d5d31248f6aa8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "679d984c-ea7d-4281-9a39-999ac128bb9d", + "x-ms-client-request-id": "98d54fdc423ad0a5d5d5d31248f6aa8a", + "x-ms-correlation-request-id": "465f71fc-b303-47b5-bfc3-17acdb925a0d", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "ef992aab-0fe9-4191-beab-57874c247708", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064412Z:465f71fc-b303-47b5-bfc3-17acdb925a0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99a9e1a03afb356230a06e97655db5d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a3384c0-1e06-4c69-989b-d05c1c0c6cdd", + "x-ms-client-request-id": "99a9e1a03afb356230a06e97655db5d7", + "x-ms-correlation-request-id": "31883c5a-6de0-4141-9fef-d1728fd0c0dc", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "fab6fd01-4fe7-4d5a-aa41-04eab145660f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064413Z:31883c5a-6de0-4141-9fef-d1728fd0c0dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76f9753485063eed7984173007fa08ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f14a3926-51d6-4855-a2b3-fce51f61f72f", + "x-ms-client-request-id": "76f9753485063eed7984173007fa08ae", + "x-ms-correlation-request-id": "51dad3fb-8aa7-447d-bc7c-47d428b1898c", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "a644b283-6130-4522-9791-70ceea9e9ca7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064414Z:51dad3fb-8aa7-447d-bc7c-47d428b1898c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2364198de7aca15fed9f679ad30d6b78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "348e0845-3143-49c4-8523-636e380c9512", + "x-ms-client-request-id": "2364198de7aca15fed9f679ad30d6b78", + "x-ms-correlation-request-id": "2bb26b89-b68e-4f7d-8fbe-f79e640520cc", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "52e15c3a-05fc-4a55-97e2-b1dcdfc4c972", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064415Z:2bb26b89-b68e-4f7d-8fbe-f79e640520cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3ddfb2034fc1b84f46b1f7722312d36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3720c983-57af-4bf1-b6c2-1650970f5e8a", + "x-ms-client-request-id": "d3ddfb2034fc1b84f46b1f7722312d36", + "x-ms-correlation-request-id": "eaac7be7-6333-4675-82fa-b123d7e023af", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "fde9e18a-2418-4592-9e8f-d6d60ecbc575", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064417Z:eaac7be7-6333-4675-82fa-b123d7e023af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b09bf9791f94c2b155788661d526a6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca32bb6a-b9ca-4ffb-ad41-9014fdd715f8", + "x-ms-client-request-id": "4b09bf9791f94c2b155788661d526a6c", + "x-ms-correlation-request-id": "7a4792eb-7736-4cd7-850b-e9ff64c5c586", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "19fc6fc7-7b91-480c-86c7-0f2c7b7c6eae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064418Z:7a4792eb-7736-4cd7-850b-e9ff64c5c586" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b109f18351d59b294482e41c8e87fbb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66d2294d-f029-4dd5-b183-1f6f0d6e0418", + "x-ms-client-request-id": "0b109f18351d59b294482e41c8e87fbb", + "x-ms-correlation-request-id": "e962bf5e-f149-46da-b932-0628c1d411c5", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "f295a77f-3ef6-49b7-86cc-fa250bfd9549", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064419Z:e962bf5e-f149-46da-b932-0628c1d411c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1303317120038f7fd090bda4ab1dfda2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f30a51d5-1dc4-4e71-9261-ef69da8e0418", + "x-ms-client-request-id": "1303317120038f7fd090bda4ab1dfda2", + "x-ms-correlation-request-id": "deb4f595-9ac4-419e-aafc-d660c8e29380", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "7d73717c-7fe7-4464-a697-4dd58814be77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064420Z:deb4f595-9ac4-419e-aafc-d660c8e29380" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "835eb300222162190db0b6b062ea842d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9388c60-35be-4779-b973-45d86e31a4d9", + "x-ms-client-request-id": "835eb300222162190db0b6b062ea842d", + "x-ms-correlation-request-id": "7ce92d91-f0fa-4e2b-943b-28ed5882b530", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "ee3adcbe-1316-45ba-9087-3197d23f0b6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064422Z:7ce92d91-f0fa-4e2b-943b-28ed5882b530" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecf4ccd8564ff86820803b8c770dad77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7020e1d1-3940-4a39-819c-e91e6bae5e78", + "x-ms-client-request-id": "ecf4ccd8564ff86820803b8c770dad77", + "x-ms-correlation-request-id": "d7f7f1bb-a483-41bc-9c9f-e69b8f619484", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "0fe3d8ad-30cf-4e9a-9249-00f59cca4233", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064423Z:d7f7f1bb-a483-41bc-9c9f-e69b8f619484" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14408c4bfc894f9a18a1065269ce2de5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e70f9efe-12af-4085-b1da-96689bb49926", + "x-ms-client-request-id": "14408c4bfc894f9a18a1065269ce2de5", + "x-ms-correlation-request-id": "479e8afb-b3a5-43c3-869b-de22dfed4484", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "5c068991-4eb3-4d65-83a6-546ceb6a5907", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064424Z:479e8afb-b3a5-43c3-869b-de22dfed4484" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "decb8f0b1128aa534a6562a0e68cea00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a49fdd93-c11e-4a7d-a39c-8414f8e2b683", + "x-ms-client-request-id": "decb8f0b1128aa534a6562a0e68cea00", + "x-ms-correlation-request-id": "987b134e-dcd9-451d-9178-c37215764014", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "12829a6d-7d62-470e-92c4-f9914b3c2e20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064426Z:987b134e-dcd9-451d-9178-c37215764014" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5643f0370aadca432a4d4ae50168f51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a8dc64f-35ee-4751-8650-c71d2337ad09", + "x-ms-client-request-id": "d5643f0370aadca432a4d4ae50168f51", + "x-ms-correlation-request-id": "9c02f562-635b-4280-9960-51c06337bed2", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "76938a42-686d-4f25-8634-83ba5b2e52a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064427Z:9c02f562-635b-4280-9960-51c06337bed2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8815653ce413a4e3996ca2399fa698b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a137b931-b2ef-4168-b94a-891ce80f4644", + "x-ms-client-request-id": "e8815653ce413a4e3996ca2399fa698b", + "x-ms-correlation-request-id": "809671a9-c8d1-44ac-a8f4-41507130c322", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "2eab63a7-7727-41ab-8b5b-afa1b9e7eeae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064428Z:809671a9-c8d1-44ac-a8f4-41507130c322" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "294f05b657699b3bebeeac843ca45934", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c3e5f34d-ed5a-4205-bdbc-0a24dc6dbf5a", + "x-ms-client-request-id": "294f05b657699b3bebeeac843ca45934", + "x-ms-correlation-request-id": "a6d96ccc-fe3c-4373-8738-f3ded88497c1", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "af4ebab1-2b2f-4b85-b8d5-9e97b31f7800", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064429Z:a6d96ccc-fe3c-4373-8738-f3ded88497c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f4c11d6010b34bef12a9c13a6804337", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3923e6d0-3fb6-44a8-9fa3-ba0464cd1376", + "x-ms-client-request-id": "8f4c11d6010b34bef12a9c13a6804337", + "x-ms-correlation-request-id": "8dc8f4b4-20bd-4b5a-8928-bb8cdc7890c2", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "5e2b6eed-a729-4cd7-a5a3-cd37337609d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064431Z:8dc8f4b4-20bd-4b5a-8928-bb8cdc7890c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4af7483b66c6fce71be5fd5222cafd94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "447bacd5-1a1b-4585-8818-d395cff4d6c5", + "x-ms-client-request-id": "4af7483b66c6fce71be5fd5222cafd94", + "x-ms-correlation-request-id": "08cc0420-f96e-47e5-81b5-d8450db73931", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "5313089f-c45a-4b82-8b44-4abdd7a4d877", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064432Z:08cc0420-f96e-47e5-81b5-d8450db73931" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "884d953cd9adb580471a373ebb27f56a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e1b635cb-8092-4ce6-bbb2-0c4615549377", + "x-ms-client-request-id": "884d953cd9adb580471a373ebb27f56a", + "x-ms-correlation-request-id": "e06d2903-61de-4b95-8a84-14fcb66e6345", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "a98e66f5-be9a-4d93-add8-924839a14a83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064434Z:e06d2903-61de-4b95-8a84-14fcb66e6345" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f44874ab0ead6f6d29507425046b1227", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4945b94-f830-4c0e-8d00-e20baf819979", + "x-ms-client-request-id": "f44874ab0ead6f6d29507425046b1227", + "x-ms-correlation-request-id": "10d9af6d-861f-4b82-b3c8-1043cc5378af", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "3df58565-9f6a-464c-a9be-03cbac0f2f94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064436Z:10d9af6d-861f-4b82-b3c8-1043cc5378af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10d6072dbb33618ac74103ac2ea841f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cbfaf323-2219-4772-8341-abeaafb13a83", + "x-ms-client-request-id": "10d6072dbb33618ac74103ac2ea841f3", + "x-ms-correlation-request-id": "96cb6224-852a-4eb1-8795-db9817b823d9", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "f28fecba-f73c-4548-804a-88043c73ae48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064437Z:96cb6224-852a-4eb1-8795-db9817b823d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ada792f008812ee627dd5f5d655ab1db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1817357a-ecd9-4173-93b8-11b441be6b86", + "x-ms-client-request-id": "ada792f008812ee627dd5f5d655ab1db", + "x-ms-correlation-request-id": "e4e3b8f0-ad56-4bce-a5ed-00d897db9646", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "21293af9-64c3-4a3f-897e-b3d8deac6168", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064438Z:e4e3b8f0-ad56-4bce-a5ed-00d897db9646" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3111007e450f037eae72c6b0bc14180", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e17f652-1983-4374-a868-a5324c7af25b", + "x-ms-client-request-id": "b3111007e450f037eae72c6b0bc14180", + "x-ms-correlation-request-id": "0b354c45-35e2-4ad3-bdef-f011f0e6affa", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "798345c4-4b2b-4cc7-9c01-e618c07b09e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064440Z:0b354c45-35e2-4ad3-bdef-f011f0e6affa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7135800f65c425a620a8e9555b2cfc6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a56b7499-37d5-4303-aeaf-8ff22a4644d9", + "x-ms-client-request-id": "7135800f65c425a620a8e9555b2cfc6d", + "x-ms-correlation-request-id": "425e680f-56f8-4a08-890c-1dd54db76da4", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "a6d8b8e0-8ac1-4b16-a7ee-398f638b5feb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064441Z:425e680f-56f8-4a08-890c-1dd54db76da4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ea427908e970ba35bb7c299db7b2266", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "01111f4e-db26-4979-ba5e-e6be908303e0", + "x-ms-client-request-id": "1ea427908e970ba35bb7c299db7b2266", + "x-ms-correlation-request-id": "a0ce63c4-2583-4f38-9c67-bc704b40d51c", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "29b94596-cfbd-4434-8aaf-2922d63d4543", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064442Z:a0ce63c4-2583-4f38-9c67-bc704b40d51c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e44ede9c3f24a21769ec92a7fbe294bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8537064-0eb7-42c9-91dc-a62f5a643468", + "x-ms-client-request-id": "e44ede9c3f24a21769ec92a7fbe294bd", + "x-ms-correlation-request-id": "9fef2c12-5a91-4192-8231-41c46b50e336", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "9f0f497f-d4bc-4288-99df-730d1590b128", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064443Z:9fef2c12-5a91-4192-8231-41c46b50e336" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4dabfeb221c80e8dd2a150da20c49a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "545fa38d-edb7-4167-9a11-78845adfbc88", + "x-ms-client-request-id": "e4dabfeb221c80e8dd2a150da20c49a5", + "x-ms-correlation-request-id": "d138a4d3-84c0-467d-a72a-44fae6168f15", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "2640f7c4-0e43-4475-aa4f-f6a479c78d28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064445Z:d138a4d3-84c0-467d-a72a-44fae6168f15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7db8828618de51480f02b4abfbfb0f79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4f10d40-a41e-4c5f-97e8-281953632ad7", + "x-ms-client-request-id": "7db8828618de51480f02b4abfbfb0f79", + "x-ms-correlation-request-id": "4c9e7b55-d0a8-4830-b3f6-55041517613d", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "597084aa-1112-432e-a9fb-77d92c4a2b85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064446Z:4c9e7b55-d0a8-4830-b3f6-55041517613d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bae05223ea07949f6cd06fa2a0aff5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f71829b2-4e23-4e14-9b9e-f7d6238446e0", + "x-ms-client-request-id": "1bae05223ea07949f6cd06fa2a0aff5d", + "x-ms-correlation-request-id": "dc9cc41e-b5f8-4327-9ab8-ee1cc6426280", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "37460d66-d731-40ee-9e73-063878d0a7e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064447Z:dc9cc41e-b5f8-4327-9ab8-ee1cc6426280" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7821eca21729d2de7789d4196e3d85e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd08cfeb-33ea-438f-9790-5024e8ca89ad", + "x-ms-client-request-id": "7821eca21729d2de7789d4196e3d85e2", + "x-ms-correlation-request-id": "c36612ee-771d-42e6-bea0-53fc043d10de", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "004720a2-bc16-4226-b261-33e90fb86def", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064448Z:c36612ee-771d-42e6-bea0-53fc043d10de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dea9c1a2d5e4805393f8611114d2605", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4a4497b-eafd-465f-bdff-906f10deaaf8", + "x-ms-client-request-id": "9dea9c1a2d5e4805393f8611114d2605", + "x-ms-correlation-request-id": "e9bbce12-345b-4a5e-a8ad-03d9cb0a57e4", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "1b449c4b-71c5-45df-965c-1ab7436827e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064450Z:e9bbce12-345b-4a5e-a8ad-03d9cb0a57e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f08570396d90b5026dba416692f0ab8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b28419c3-81ec-444b-acb1-ffa70997feee", + "x-ms-client-request-id": "0f08570396d90b5026dba416692f0ab8", + "x-ms-correlation-request-id": "1b723318-ad2a-491e-aaae-1c3993e7f0f6", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "14a594df-831d-477a-8705-86cde553eaaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064451Z:1b723318-ad2a-491e-aaae-1c3993e7f0f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ddf2347621f75fee6d93fe990cdc02a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35c39f0e-93cb-45ec-a7e8-b1a8a74697d3", + "x-ms-client-request-id": "8ddf2347621f75fee6d93fe990cdc02a", + "x-ms-correlation-request-id": "b594bf8b-6f71-4c4f-a50f-98d2cd429c19", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "57331475-6009-4570-ac58-9c97a8dfc590", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064452Z:b594bf8b-6f71-4c4f-a50f-98d2cd429c19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1716ce62753584084cdf768289efde09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "555b4736-6a05-43ce-a7b5-6b525e792e5f", + "x-ms-client-request-id": "1716ce62753584084cdf768289efde09", + "x-ms-correlation-request-id": "bf788c8e-b5c5-490b-8bef-edd1041c1527", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "bfc2b1b5-8973-4d9c-8f37-db57b04a017b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064454Z:bf788c8e-b5c5-490b-8bef-edd1041c1527" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edc9ce34996ea1e55892280057667a59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "746a2722-cdfc-47a4-889f-9caf3ffbcb1b", + "x-ms-client-request-id": "edc9ce34996ea1e55892280057667a59", + "x-ms-correlation-request-id": "48e0cbff-98c5-4bf8-9efe-2d9646021e9f", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "901cde14-aabf-467d-b05c-6fee5d143c5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064455Z:48e0cbff-98c5-4bf8-9efe-2d9646021e9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ab3791af319d2831b5b4140eb7cecf6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39b7e1b1-60e5-4c2b-970a-4ecdb2e188a7", + "x-ms-client-request-id": "9ab3791af319d2831b5b4140eb7cecf6", + "x-ms-correlation-request-id": "12657179-4785-4b90-aff7-e3f2315a0328", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "61626bfa-c2c9-46f0-a935-ca8ab15b02c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064457Z:12657179-4785-4b90-aff7-e3f2315a0328" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2b536fad303c9bce975bfa24c082de5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db4a203a-9a47-4723-8dd6-0d264b58529a", + "x-ms-client-request-id": "c2b536fad303c9bce975bfa24c082de5", + "x-ms-correlation-request-id": "aed73812-3ac8-4cad-ad2d-73aecacebbf0", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "c6c32fe6-9f4f-4e89-bb40-0e84d40127d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064459Z:aed73812-3ac8-4cad-ad2d-73aecacebbf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f681d64433c41ef4af7d21257a5b5db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:44:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cf73d64-eec2-47a4-9051-f49cfaa0afec", + "x-ms-client-request-id": "0f681d64433c41ef4af7d21257a5b5db", + "x-ms-correlation-request-id": "8fbe8b94-e7b8-4b99-b356-d32df4642262", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "5a18eb59-fe58-4919-9b29-292f1335bfb6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064500Z:8fbe8b94-e7b8-4b99-b356-d32df4642262" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "200632a6b8b04755bde9b1a433e08513", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a578d70-1315-4f99-8117-81826582cbaa", + "x-ms-client-request-id": "200632a6b8b04755bde9b1a433e08513", + "x-ms-correlation-request-id": "8cc262ee-6ceb-44b3-995f-0961beaf85c1", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "056769eb-790c-429f-89a1-c6b923759b9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064501Z:8cc262ee-6ceb-44b3-995f-0961beaf85c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cedc5b2edc14b6ba4674770c00a97243", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bb6f881-688f-4893-8c69-44d6dd0cb5d3", + "x-ms-client-request-id": "cedc5b2edc14b6ba4674770c00a97243", + "x-ms-correlation-request-id": "05d74a1e-eded-4ef8-983e-8e89e156f2b9", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "e03e1eec-216f-48ae-90a9-c6cc7b94de90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064502Z:05d74a1e-eded-4ef8-983e-8e89e156f2b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1afce3bf0c01ab35c7205152924b0d69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "01abe297-b0f6-44c2-bf01-3f206dd5b02c", + "x-ms-client-request-id": "1afce3bf0c01ab35c7205152924b0d69", + "x-ms-correlation-request-id": "818e0c85-d8ad-4af6-8f8c-f8c4f7785d77", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "1d151788-a6fc-4505-98c5-7097e85f86a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064504Z:818e0c85-d8ad-4af6-8f8c-f8c4f7785d77" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fbe4bf72e7c8c9c77750d93c40494714", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c3dcc037-cee7-48ef-a1e3-75f0c48efc1c", + "x-ms-client-request-id": "fbe4bf72e7c8c9c77750d93c40494714", + "x-ms-correlation-request-id": "a150902e-7f23-4c30-8444-3c890b4e8b3a", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "278aa4db-c949-4b7f-887b-b26820d21376", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064506Z:a150902e-7f23-4c30-8444-3c890b4e8b3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50e46d776ae42111263106f38b6824fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49a2be1f-b5d3-42fc-be3c-f12bbd997494", + "x-ms-client-request-id": "50e46d776ae42111263106f38b6824fb", + "x-ms-correlation-request-id": "41b4f8b4-dcaf-49ef-8881-5d8d15c9de0d", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "e5587e8b-d47f-4c0a-8b5a-9a2d63096bdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064507Z:41b4f8b4-dcaf-49ef-8881-5d8d15c9de0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40990d6776c4d87b1b32a3b132f96a7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c23eaed-a620-4b73-a954-98094b3005b4", + "x-ms-client-request-id": "40990d6776c4d87b1b32a3b132f96a7d", + "x-ms-correlation-request-id": "45a34c7b-9a1e-4381-b56c-aa1d34a2ebce", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "c1815481-dbe6-47c1-b7da-36038c2e29f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064508Z:45a34c7b-9a1e-4381-b56c-aa1d34a2ebce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24db3cd8bc670785aec3d497e0d33e0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c644a8a-201a-49cf-a050-0f4daffc6982", + "x-ms-client-request-id": "24db3cd8bc670785aec3d497e0d33e0e", + "x-ms-correlation-request-id": "1fcb4ed0-0261-4b66-8e22-c445369e7944", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "e7fe1b8f-d322-492d-8df7-f30435f79b27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064510Z:1fcb4ed0-0261-4b66-8e22-c445369e7944" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32d5de2b06af0050f20c34b2c65fee2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d3e0327-151d-4525-9868-b13dcffdb392", + "x-ms-client-request-id": "32d5de2b06af0050f20c34b2c65fee2d", + "x-ms-correlation-request-id": "09297dd9-cb28-4188-8658-b0baec6dff58", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "bec438f9-4d84-40f2-b11c-a6b46a3ad539", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064511Z:09297dd9-cb28-4188-8658-b0baec6dff58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e1a89c6ff8daa9488919201a1e4f747", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "024ce460-4299-4265-a960-cf87d0d09b32", + "x-ms-client-request-id": "4e1a89c6ff8daa9488919201a1e4f747", + "x-ms-correlation-request-id": "022dc57f-2e94-4d58-81a9-5884c89e6786", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "d50931ec-ad9f-4c51-92ed-2a570378eea9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064512Z:022dc57f-2e94-4d58-81a9-5884c89e6786" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "538594f43723d2cdecda315a88d2414e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6bcda6b9-dbdd-4c38-909e-4afa06433993", + "x-ms-client-request-id": "538594f43723d2cdecda315a88d2414e", + "x-ms-correlation-request-id": "07d9728f-e288-4c4e-a5f3-7dd69c62ee62", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "1c290604-9ee3-4dfb-9bdc-1797b9c4d098", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064513Z:07d9728f-e288-4c4e-a5f3-7dd69c62ee62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57d0a7d4efb82b814a2aaa1d744e5e0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a479843c-b8cc-44c7-a12a-da840db346e5", + "x-ms-client-request-id": "57d0a7d4efb82b814a2aaa1d744e5e0d", + "x-ms-correlation-request-id": "5b0f62a5-5f98-4281-aa0f-a98f1716ca74", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "e5d1cdf7-da9b-4a31-9bc4-7611c135c995", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064515Z:5b0f62a5-5f98-4281-aa0f-a98f1716ca74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31bdec149ada8f09bb4861b2cd3922b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "534141ce-886f-4471-896d-c4f5a6e27ef2", + "x-ms-client-request-id": "31bdec149ada8f09bb4861b2cd3922b6", + "x-ms-correlation-request-id": "1ab330a9-2fc6-47e9-b2f5-83b18ede6d07", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "d6e7b116-53be-4f2f-bf3c-50883cd8f243", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064516Z:1ab330a9-2fc6-47e9-b2f5-83b18ede6d07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa2d4350a013048e135909f98daf5d9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d53fee99-d1d1-4f7b-b9be-07b138da4bf4", + "x-ms-client-request-id": "fa2d4350a013048e135909f98daf5d9d", + "x-ms-correlation-request-id": "e230c472-2e32-4757-85b0-c7aeb2086e63", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "ccd853ca-df81-4f76-b007-ef4a679f7c5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064517Z:e230c472-2e32-4757-85b0-c7aeb2086e63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b46247b0f1539749d419c708dce5e11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7b2b91d-f805-4e11-bfd0-05ef7a5c90fe", + "x-ms-client-request-id": "9b46247b0f1539749d419c708dce5e11", + "x-ms-correlation-request-id": "cbb3b839-8f2c-4dd7-9fd1-aa6ed6c5c3bf", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "15d6d745-c428-41b8-97ce-2c22789a5d77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064518Z:cbb3b839-8f2c-4dd7-9fd1-aa6ed6c5c3bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31cdf408642174f95db81e809110010b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "663f555a-6810-4b4d-9a64-a3bd4d2b0cea", + "x-ms-client-request-id": "31cdf408642174f95db81e809110010b", + "x-ms-correlation-request-id": "69e09ca2-af18-4322-ba46-f7155b6406df", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "418c5cac-2313-4d1a-88ae-536ab5b0c5c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064520Z:69e09ca2-af18-4322-ba46-f7155b6406df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a937c3eb87f341a0cff35cd2031e7644", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f26fbf6-7d63-4cd5-a14d-82668196151d", + "x-ms-client-request-id": "a937c3eb87f341a0cff35cd2031e7644", + "x-ms-correlation-request-id": "177c616c-c47c-4805-b109-98e1cb485109", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "c519caf3-d822-4200-ab49-9b253e9bb5a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064521Z:177c616c-c47c-4805-b109-98e1cb485109" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99f0f8fb2be2177c2ad13d5cf0f3a78d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75844ede-bcfd-431b-beb6-4f4897773afd", + "x-ms-client-request-id": "99f0f8fb2be2177c2ad13d5cf0f3a78d", + "x-ms-correlation-request-id": "b9855b84-d0fb-43d7-aa03-c4e019daa02a", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "c2fadff8-799c-4cc9-9b7d-ad74445edad6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064522Z:b9855b84-d0fb-43d7-aa03-c4e019daa02a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca84903fb497811e538b612e0827703f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2c1a093-0255-42fc-b542-1d58ca9784c6", + "x-ms-client-request-id": "ca84903fb497811e538b612e0827703f", + "x-ms-correlation-request-id": "d8ada6fa-457f-44aa-8faf-493d121b2b0f", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "123237d3-6ecd-4330-b277-c4fbcd66f173", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064524Z:d8ada6fa-457f-44aa-8faf-493d121b2b0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9985da42681fbf29471f7f21494450dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "927064f2-e016-44e6-9afe-bc0dccb1d1d8", + "x-ms-client-request-id": "9985da42681fbf29471f7f21494450dc", + "x-ms-correlation-request-id": "72fd41a2-2018-4cda-8be0-e61af6a489b7", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "f7156576-bf98-4445-ab0a-0a3cf5facd78", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064525Z:72fd41a2-2018-4cda-8be0-e61af6a489b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7393cf4bac9a47acd96f4656ca4d0f02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a856d21a-af89-45b0-9480-ba15114c7db2", + "x-ms-client-request-id": "7393cf4bac9a47acd96f4656ca4d0f02", + "x-ms-correlation-request-id": "6beae17f-2066-4241-ab61-f0ab57049de4", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "d3a17e74-a9ad-47d7-b125-70f84f99e07d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064526Z:6beae17f-2066-4241-ab61-f0ab57049de4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "151afe600e6ed76d67c4827734fc370e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "676ea346-6a30-4010-af9c-2d8ba0e827ea", + "x-ms-client-request-id": "151afe600e6ed76d67c4827734fc370e", + "x-ms-correlation-request-id": "5b6266ba-3ef5-4efe-87fe-b650fb518e4c", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "095acb7c-ea1c-457d-a621-04e8b5c3d924", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064528Z:5b6266ba-3ef5-4efe-87fe-b650fb518e4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38e2853bfd9495a42e3dbfb021d2f5f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "416fa5c8-0c99-4876-9862-4aa43a5ddb20", + "x-ms-client-request-id": "38e2853bfd9495a42e3dbfb021d2f5f9", + "x-ms-correlation-request-id": "ae11268e-b064-42a7-9239-e5be99176919", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "329b085a-bb8f-41a0-b3b2-2c60f8f5a428", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064529Z:ae11268e-b064-42a7-9239-e5be99176919" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bc07c103a2a3d6e61bb0bd52a3412dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c610301c-90d4-4acc-ab58-2462ade35e75", + "x-ms-client-request-id": "4bc07c103a2a3d6e61bb0bd52a3412dd", + "x-ms-correlation-request-id": "f1c3bddd-8575-4391-833a-064c2130ff14", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "62065e7a-450d-4043-9966-7b4383569ace", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064530Z:f1c3bddd-8575-4391-833a-064c2130ff14" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "451b3737d66b636e5984e7304ebdb595", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e94ccdf9-9379-4e71-9789-6eb76631325c", + "x-ms-client-request-id": "451b3737d66b636e5984e7304ebdb595", + "x-ms-correlation-request-id": "6ff8c247-2a7a-4234-b64a-c07e294e29de", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "50389a7e-c178-461f-9ddf-d24c6ca82318", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064531Z:6ff8c247-2a7a-4234-b64a-c07e294e29de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b76788cfec3c00e416a5d7d8f1ce6af9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d2861f4-10d2-4e26-ada7-6ae53a5b89fe", + "x-ms-client-request-id": "b76788cfec3c00e416a5d7d8f1ce6af9", + "x-ms-correlation-request-id": "792ba099-aec9-435d-a5ff-faa62ab9fae8", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "aa7dd7f6-239a-4ab8-85f6-fb93657a6ef6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064533Z:792ba099-aec9-435d-a5ff-faa62ab9fae8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea78e22ab0b63a8e0e5df1a5533eeea4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "620864d5-5e44-46fd-8efe-1feb41a08cc3", + "x-ms-client-request-id": "ea78e22ab0b63a8e0e5df1a5533eeea4", + "x-ms-correlation-request-id": "cfc29d6e-3eab-4bec-80bd-f6b5e7d46c3c", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "d43ae1b8-1b37-4f14-af6f-ef41d2dd4b27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064534Z:cfc29d6e-3eab-4bec-80bd-f6b5e7d46c3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a20676065bcd4ba1521b2ec6fe96718b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2266f627-0ed4-4790-9b55-41ce650fa9bb", + "x-ms-client-request-id": "a20676065bcd4ba1521b2ec6fe96718b", + "x-ms-correlation-request-id": "f609569d-3851-44fc-9968-46e8b10971ae", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "4006de22-fce0-482b-9186-a4c5be6461a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064535Z:f609569d-3851-44fc-9968-46e8b10971ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c05ee1aca441fdef92ca9defa3facd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5eadf280-d220-4d19-a417-2d93eca1f908", + "x-ms-client-request-id": "6c05ee1aca441fdef92ca9defa3facd8", + "x-ms-correlation-request-id": "69e4ebd5-99e4-4629-aba3-2e5687c2c439", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "fc2456ec-2e42-4741-a732-852da6fe6f94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064537Z:69e4ebd5-99e4-4629-aba3-2e5687c2c439" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bd233b6c8c7cf2b412c989b81c83c77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f5198c6-b7a3-4a29-b3e6-63ea916f44ac", + "x-ms-client-request-id": "7bd233b6c8c7cf2b412c989b81c83c77", + "x-ms-correlation-request-id": "a1c5dfc1-6eac-4ff8-bdd3-a4e16b1f37aa", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "62b4d46c-c214-4f68-8505-e95bc73af05c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064538Z:a1c5dfc1-6eac-4ff8-bdd3-a4e16b1f37aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "648b66eb81383b5f97e7a8a1b1c25112", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a099d0fc-d850-4d10-b57c-eb9b8fa9cb58", + "x-ms-client-request-id": "648b66eb81383b5f97e7a8a1b1c25112", + "x-ms-correlation-request-id": "3fd5e2dd-263c-445f-b1e2-382a552f405d", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "d8539436-bf37-4ef0-a29a-82299fdfe4b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064539Z:3fd5e2dd-263c-445f-b1e2-382a552f405d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb0f566ef6c351c3c2352b1832439d31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64d5edd8-0857-47f2-8a20-d8196e7b0751", + "x-ms-client-request-id": "cb0f566ef6c351c3c2352b1832439d31", + "x-ms-correlation-request-id": "b08756e5-e665-4f34-b76d-81fffa81875c", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "3f8d4829-394f-45e9-8234-9a1737178068", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064540Z:b08756e5-e665-4f34-b76d-81fffa81875c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94f331f048b4359fd497e3e0208a1e7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47b4669e-082c-41c9-83ae-0261855f57de", + "x-ms-client-request-id": "94f331f048b4359fd497e3e0208a1e7e", + "x-ms-correlation-request-id": "8e84d56c-548d-423b-8279-b146504e407f", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "99a9f610-f5ab-4946-82f4-baffd9c0d48c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064542Z:8e84d56c-548d-423b-8279-b146504e407f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b2c85db71b8f5b4a239a20356460854", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6accd5b2-1e1b-4ab8-b7d1-1a7eafe810c0", + "x-ms-client-request-id": "2b2c85db71b8f5b4a239a20356460854", + "x-ms-correlation-request-id": "cbae7245-baa5-46a6-a21f-e5719ca5cbb8", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "13b65ca2-3f92-4386-81f8-b65d38143ff7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064543Z:cbae7245-baa5-46a6-a21f-e5719ca5cbb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fb0764abccf265eb6daf62b12e33038", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7241fab-5f5f-4ef2-8216-54a924739d7e", + "x-ms-client-request-id": "7fb0764abccf265eb6daf62b12e33038", + "x-ms-correlation-request-id": "54ef65da-e0d5-453d-909d-1b74a2539464", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "34a969d4-bc7a-4b5d-8cdb-b984d8f2a27d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064544Z:54ef65da-e0d5-453d-909d-1b74a2539464" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad3cac1672167f797dfdf17aa69cde8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b073952f-05ef-420d-921e-203dac8bd1ae", + "x-ms-client-request-id": "ad3cac1672167f797dfdf17aa69cde8d", + "x-ms-correlation-request-id": "ea821679-c4a6-4335-ad97-764d7494d3c7", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "5b3359e0-be79-4674-b751-61f66d804e6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064545Z:ea821679-c4a6-4335-ad97-764d7494d3c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa968e8f9fd91eaf270574dd7a88e2bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a18cd773-b292-42f4-85e4-5e1eb8f8d3ed", + "x-ms-client-request-id": "aa968e8f9fd91eaf270574dd7a88e2bf", + "x-ms-correlation-request-id": "23716339-9147-4252-ab26-b6948900b2c5", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "d06c8104-b930-43fb-acc8-7202762383a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064547Z:23716339-9147-4252-ab26-b6948900b2c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9ec69095b0ad73dfc3102d1cbe3801a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6078d9bf-59e6-4880-a629-31f5c5fe2589", + "x-ms-client-request-id": "a9ec69095b0ad73dfc3102d1cbe3801a", + "x-ms-correlation-request-id": "84f76bd3-20ae-4b8e-9cab-7a7a9dad77f1", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "d832ed58-bc19-4c36-875a-22319aa33096", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064548Z:84f76bd3-20ae-4b8e-9cab-7a7a9dad77f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "839c69fb854d775efd1d8510fe9b04f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa69b3fb-2450-48b7-a2d7-e6aa1a508656", + "x-ms-client-request-id": "839c69fb854d775efd1d8510fe9b04f4", + "x-ms-correlation-request-id": "b2b6aabd-d095-4bfd-85c0-b4d43bd7757d", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "8992349e-d92b-45dd-93fc-856388633c6f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064549Z:b2b6aabd-d095-4bfd-85c0-b4d43bd7757d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c71311a35af338350beaea89cde5344", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce46480e-d525-48ac-b175-0d94c3321dd9", + "x-ms-client-request-id": "3c71311a35af338350beaea89cde5344", + "x-ms-correlation-request-id": "76f34e5d-44c0-40fa-b4c5-b7dd7b41d100", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "fae869ff-040f-49f0-827e-c0ea00dd905f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064551Z:76f34e5d-44c0-40fa-b4c5-b7dd7b41d100" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11e15a855feb83720b74acecd52dd960", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "219a5191-bcf7-4cb2-9d40-88e2aa5df33d", + "x-ms-client-request-id": "11e15a855feb83720b74acecd52dd960", + "x-ms-correlation-request-id": "cdfdfd00-3c6d-4028-afeb-903e4a8b803c", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "c08d9c9c-e417-4207-a55d-59aab23c01b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064552Z:cdfdfd00-3c6d-4028-afeb-903e4a8b803c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ab60d2c4472c66ae568328ed7b6da1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee4934e3-6069-4181-87dd-7d6c92664d29", + "x-ms-client-request-id": "9ab60d2c4472c66ae568328ed7b6da1f", + "x-ms-correlation-request-id": "e39851a8-9492-45d5-bd7a-2a68cc1a8ed8", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "08adc36a-7b45-4f06-a9b3-8db17a3dfa6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064553Z:e39851a8-9492-45d5-bd7a-2a68cc1a8ed8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a48b41caf3b9bb09bfed303a89965e23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "954bed7e-1dc0-4c85-8e6b-200a0c3f309b", + "x-ms-client-request-id": "a48b41caf3b9bb09bfed303a89965e23", + "x-ms-correlation-request-id": "666a25fd-89f3-4b81-8652-a3c86f466454", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "739bb552-ce9c-4d60-9772-1f844214db12", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064554Z:666a25fd-89f3-4b81-8652-a3c86f466454" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f7b4de5b92740d2ef1b2b822ce3ac55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac199d17-a30b-4f4a-a732-b6a22fa7067b", + "x-ms-client-request-id": "8f7b4de5b92740d2ef1b2b822ce3ac55", + "x-ms-correlation-request-id": "31779316-d90d-4dfa-bd43-6713d9d4f011", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "1f89d9b7-3c17-4841-a0fa-1f7ac42cd5b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064556Z:31779316-d90d-4dfa-bd43-6713d9d4f011" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93218c9a35a139a604fada84132f3d4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85aa25e0-0133-4843-b35f-413d13c009a9", + "x-ms-client-request-id": "93218c9a35a139a604fada84132f3d4f", + "x-ms-correlation-request-id": "3b73602f-fd94-4f8c-8b9c-ba914ffc082c", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "0d8879c6-5f4b-4ce0-9f71-05ebdcbb0f1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064557Z:3b73602f-fd94-4f8c-8b9c-ba914ffc082c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89a90f0a4b3a11f76f4ab49ec7868fdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f72cadfc-f7f5-4692-878e-2425302f3725", + "x-ms-client-request-id": "89a90f0a4b3a11f76f4ab49ec7868fdb", + "x-ms-correlation-request-id": "8582287a-b5bf-4623-9bc4-90ed7cc71dca", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "0ff7d85d-b5e5-4a24-91b2-2b95dbb1ef5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064558Z:8582287a-b5bf-4623-9bc4-90ed7cc71dca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fca0db41ca74b082a6428b2cde4d2dc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:45:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ea4c263-010f-49b5-a926-4dab16f19014", + "x-ms-client-request-id": "fca0db41ca74b082a6428b2cde4d2dc0", + "x-ms-correlation-request-id": "e47f0e90-4b3f-48a8-95ad-3d8b28c5e2ce", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "871e0a1b-e847-4ed2-a114-efc3dac30538", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064600Z:e47f0e90-4b3f-48a8-95ad-3d8b28c5e2ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d78dcde223a4f1a941024568008717e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d70f6e5a-da25-45b7-99cd-43f0e7eed616", + "x-ms-client-request-id": "1d78dcde223a4f1a941024568008717e", + "x-ms-correlation-request-id": "43dd5bd3-a25a-49d2-8a5f-ec2318288d42", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "f8d5440d-4bc5-439d-a7d3-cc5d10e11344", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064601Z:43dd5bd3-a25a-49d2-8a5f-ec2318288d42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3743ff6b408e3fda8cf8e2f8bfcb3322", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff96083b-1eb2-4c50-949c-b94576adaa3d", + "x-ms-client-request-id": "3743ff6b408e3fda8cf8e2f8bfcb3322", + "x-ms-correlation-request-id": "7b87eb7d-7ac0-4f67-885e-8102a62a30a6", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "d1ffa0ec-e7fb-48f1-af72-ef163fce7f18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064602Z:7b87eb7d-7ac0-4f67-885e-8102a62a30a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebbff41d720d1ea0c1516764a62b2f9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21e679c6-f0a5-4d5b-93f2-4a75ec816b03", + "x-ms-client-request-id": "ebbff41d720d1ea0c1516764a62b2f9e", + "x-ms-correlation-request-id": "1c5cb0a0-2e1f-49d9-85ee-2fccaf9427d6", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "03a0805d-086c-4117-8839-3fb7795abb9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064604Z:1c5cb0a0-2e1f-49d9-85ee-2fccaf9427d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfc00dd0f5099d31013990423f218fc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ec4efe8-ee6b-4631-9319-da0132ee4197", + "x-ms-client-request-id": "dfc00dd0f5099d31013990423f218fc9", + "x-ms-correlation-request-id": "68bd6064-d940-48f4-968f-97684b580de3", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "525ca738-d7d1-4d36-9d09-33ed934e4ca4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064605Z:68bd6064-d940-48f4-968f-97684b580de3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c3902dc8548f8705e24763cd9759861", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c2542a0-d3a1-4c48-97a5-79aecd44dadb", + "x-ms-client-request-id": "8c3902dc8548f8705e24763cd9759861", + "x-ms-correlation-request-id": "59f38a99-f40f-456e-adf4-624d1235e100", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "8275a9c0-bbe6-497f-b462-c201bd03a0c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064606Z:59f38a99-f40f-456e-adf4-624d1235e100" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b22744c8540a2718c221e9d4e25edf9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "236c1c04-1923-4912-9951-d638fc97331c", + "x-ms-client-request-id": "b22744c8540a2718c221e9d4e25edf9f", + "x-ms-correlation-request-id": "efb0775d-fa31-4319-848b-23be1d905101", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "f1b72272-ee8d-4fd2-b616-6762c510759f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064607Z:efb0775d-fa31-4319-848b-23be1d905101" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4889dc2a3f14a559cc880e47ff4c48c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50eb974e-061a-424a-9779-36303d7cfd05", + "x-ms-client-request-id": "a4889dc2a3f14a559cc880e47ff4c48c", + "x-ms-correlation-request-id": "ebe46dc1-6dc6-4e46-a62d-0fbabdc260c3", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "80564aea-8cd2-41ba-82e0-e64b57cd7ef5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064609Z:ebe46dc1-6dc6-4e46-a62d-0fbabdc260c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb792ea0dcf988bee912c9279c9c16ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea78ef92-b34a-4956-af96-f4aca13f950d", + "x-ms-client-request-id": "fb792ea0dcf988bee912c9279c9c16ff", + "x-ms-correlation-request-id": "0f466a44-af46-4766-8e19-0e9fd57706fb", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "a564bf4a-eda0-4554-8c7e-7efe8dc76cb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064611Z:0f466a44-af46-4766-8e19-0e9fd57706fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b7ad645f4ed2470eedc1642d333a8ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b58a009e-64f0-4604-ae96-6c89cfa92195", + "x-ms-client-request-id": "3b7ad645f4ed2470eedc1642d333a8ce", + "x-ms-correlation-request-id": "4cdfacab-4f2b-4d60-8ac2-5ca9c2b34c26", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "02e7c01f-d5af-42fb-b888-8ab7434e68f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064612Z:4cdfacab-4f2b-4d60-8ac2-5ca9c2b34c26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3335d5de4e4e6a6dfffbadfda2eaeff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b368156d-2db7-4c39-8294-126bc397cb8a", + "x-ms-client-request-id": "b3335d5de4e4e6a6dfffbadfda2eaeff", + "x-ms-correlation-request-id": "8ce61602-14b5-45db-9946-4bfa8545e1fa", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "24a4b4aa-4f97-4146-861a-fa5f252ba417", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064613Z:8ce61602-14b5-45db-9946-4bfa8545e1fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a89f80b1897aab9fbe550c1cc57bb4b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4488d27a-c34a-4a17-9c68-4e52e0ffeffc", + "x-ms-client-request-id": "a89f80b1897aab9fbe550c1cc57bb4b6", + "x-ms-correlation-request-id": "75902f77-3b53-4e8f-89d6-e9f018a87fc5", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "e07e05f0-30d0-4800-8fee-aaf23e661c24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064614Z:75902f77-3b53-4e8f-89d6-e9f018a87fc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3fcafb696268611b30935bed39904ac0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd01e03e-4fd1-4592-adb5-de23a78332cf", + "x-ms-client-request-id": "3fcafb696268611b30935bed39904ac0", + "x-ms-correlation-request-id": "b8299777-7651-4bb1-a631-1f308159acef", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "6be6c0aa-70cf-447b-848e-33f541d4e824", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064616Z:b8299777-7651-4bb1-a631-1f308159acef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5290162e0094d353be88f58fd7892063", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93326a9f-0fb3-414f-a05e-7776d367b984", + "x-ms-client-request-id": "5290162e0094d353be88f58fd7892063", + "x-ms-correlation-request-id": "b058383f-4679-4e4e-a1f2-2b9e4212282b", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "2ee2fa08-47fb-4fcf-ae68-57da40d53a2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064617Z:b058383f-4679-4e4e-a1f2-2b9e4212282b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de75044a6f644f97653d77e62db1722d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "90c99d1a-9fcd-448a-b079-8d5ff0336239", + "x-ms-client-request-id": "de75044a6f644f97653d77e62db1722d", + "x-ms-correlation-request-id": "6eb78e02-4dea-4624-9bb6-3c7b5ded3ea7", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "f53c0dd6-0e36-448d-97c9-1c533c821457", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064618Z:6eb78e02-4dea-4624-9bb6-3c7b5ded3ea7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afee4b0a62ea6921a7f681e06c8b89a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7f6c945-7d02-4b89-8be4-c8f66f9d69d6", + "x-ms-client-request-id": "afee4b0a62ea6921a7f681e06c8b89a7", + "x-ms-correlation-request-id": "5edb79c1-6121-4138-b5cd-d38a6caecc05", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "79bf5115-e8c6-4677-a87f-83169e4e5258", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064620Z:5edb79c1-6121-4138-b5cd-d38a6caecc05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35a3f8736c1bbe5c7f41ed56886da60c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b71af05b-f0d5-48e2-b5f7-eda77bd0dc6b", + "x-ms-client-request-id": "35a3f8736c1bbe5c7f41ed56886da60c", + "x-ms-correlation-request-id": "ce490db1-a917-46af-b045-4b9da8cb8f8e", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "fe05e670-d44d-4952-92da-290714d0a243", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064621Z:ce490db1-a917-46af-b045-4b9da8cb8f8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b85c816709ae878e20c366deeb6e2d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5fb7347c-03ff-4ab6-b0e7-db1c3c8eeff3", + "x-ms-client-request-id": "8b85c816709ae878e20c366deeb6e2d9", + "x-ms-correlation-request-id": "bfb50c2a-ea0c-4e73-8ac1-031107182b77", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "62f7df08-bdad-4327-9a8c-b83d2649557c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064622Z:bfb50c2a-ea0c-4e73-8ac1-031107182b77" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3472d0b43c0d9e12ef3030a974cbe03a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7225726f-3b2d-457c-b91d-59f38c8a056f", + "x-ms-client-request-id": "3472d0b43c0d9e12ef3030a974cbe03a", + "x-ms-correlation-request-id": "e794812d-e100-47fa-b7b6-ab8aa336f264", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "12e102d9-9f53-461c-a3b9-8ecbfb995a1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064623Z:e794812d-e100-47fa-b7b6-ab8aa336f264" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4ca744ffd06020c7fba520e35eecfc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9eb3df2b-1aa5-438d-8903-dabac88c0e11", + "x-ms-client-request-id": "a4ca744ffd06020c7fba520e35eecfc8", + "x-ms-correlation-request-id": "49e6b654-443b-43a8-b64e-f1108340c8c8", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "b16f9d48-bbf4-48d8-8c8a-c823d5c2b3cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064625Z:49e6b654-443b-43a8-b64e-f1108340c8c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8a2135f71fad9ffb6e69c6a40cf7417", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52012af4-2d42-476d-840c-f351dae98562", + "x-ms-client-request-id": "b8a2135f71fad9ffb6e69c6a40cf7417", + "x-ms-correlation-request-id": "2a5dad24-c28f-44ff-a917-edf7285282a7", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "dcb39760-20ce-44c4-a666-d4743624d21c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064626Z:2a5dad24-c28f-44ff-a917-edf7285282a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a1efc2b3eecb6d2c370b553ea036801", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18ea75b7-ca0f-4440-b441-a3a0a06d8ac8", + "x-ms-client-request-id": "7a1efc2b3eecb6d2c370b553ea036801", + "x-ms-correlation-request-id": "21115ee7-1546-4ffc-9ceb-e68b83ef8e78", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "022dc82f-94f5-46fd-bd4f-3ba6763a6877", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064627Z:21115ee7-1546-4ffc-9ceb-e68b83ef8e78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "604967602829dd4074f1ee2061a2c1b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a6cfa11-d064-4755-9092-fb0802913b4c", + "x-ms-client-request-id": "604967602829dd4074f1ee2061a2c1b0", + "x-ms-correlation-request-id": "8e1f4be1-c07b-4d73-b385-eba712d3d4e3", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "13cb702a-5ebb-4615-a487-b87a78f048ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064628Z:8e1f4be1-c07b-4d73-b385-eba712d3d4e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39e33b4655d021db41ecf489bcacefb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a0390e8-dcc1-408b-acb5-bad19228cfc9", + "x-ms-client-request-id": "39e33b4655d021db41ecf489bcacefb3", + "x-ms-correlation-request-id": "912b738f-a83b-44da-b212-5abca49bec31", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "796d28d2-0861-482c-b109-ed3d69f9ffcc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064630Z:912b738f-a83b-44da-b212-5abca49bec31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9099a7d138502edbb4005fb50b25420", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20c2e5bf-eb6b-4f98-9868-f42def2ee515", + "x-ms-client-request-id": "d9099a7d138502edbb4005fb50b25420", + "x-ms-correlation-request-id": "0cffa65f-8a51-4f92-9f1e-c60c95b86131", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "be630e1d-23aa-471c-966e-b2a887299a85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064631Z:0cffa65f-8a51-4f92-9f1e-c60c95b86131" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae0c04ae2f1f0b308b281f3c34b621c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "352ee9cd-6826-4db1-a827-3299aadbdb13", + "x-ms-client-request-id": "ae0c04ae2f1f0b308b281f3c34b621c8", + "x-ms-correlation-request-id": "24723f2b-cc8a-4d55-9df4-d044de9f5e13", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "1ae29594-c65c-45eb-8764-146bdf91d06a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064632Z:24723f2b-cc8a-4d55-9df4-d044de9f5e13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7a23a02e899332a4de17d904fe0d18e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e76a7920-d80a-439f-b3aa-6b6005f33475", + "x-ms-client-request-id": "c7a23a02e899332a4de17d904fe0d18e", + "x-ms-correlation-request-id": "0d602b1a-c88c-4796-9eee-c241fd03d245", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "971156a1-af56-4724-9760-7ea6b0d5d89d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064634Z:0d602b1a-c88c-4796-9eee-c241fd03d245" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7dbd498409f4e9369fe4d5cf4b1ce05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d1ccab2-8a12-40f2-8ff0-f0d75d3c0e94", + "x-ms-client-request-id": "b7dbd498409f4e9369fe4d5cf4b1ce05", + "x-ms-correlation-request-id": "2e711b88-dc67-4ebe-968c-c30ffc9e2402", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "56bc4cfa-c8cb-4e92-bb53-e19c85b81370", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064635Z:2e711b88-dc67-4ebe-968c-c30ffc9e2402" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15f93d1e8d10c587dad9603eb1a0bcab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2810139c-6ddd-40e6-8c2c-9f9b7f9b399a", + "x-ms-client-request-id": "15f93d1e8d10c587dad9603eb1a0bcab", + "x-ms-correlation-request-id": "d117789e-8723-435f-94c0-c22bc08e4fac", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "95bccf41-119e-4e9f-8c89-2ba5054d120d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064636Z:d117789e-8723-435f-94c0-c22bc08e4fac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60a4905769dac128a6535d9b9bce3e9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee0fde3e-2896-4bd8-8d19-219da7afa6b1", + "x-ms-client-request-id": "60a4905769dac128a6535d9b9bce3e9c", + "x-ms-correlation-request-id": "8c2cd5f7-693f-42e3-b4ea-a491a1d1c417", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "712724f6-3dfc-41e5-94b8-76d07af4e020", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064637Z:8c2cd5f7-693f-42e3-b4ea-a491a1d1c417" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12717812bbe70a7e4c15ddc6e0559cc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddfc9065-3d48-49d2-b121-f4049392d9b1", + "x-ms-client-request-id": "12717812bbe70a7e4c15ddc6e0559cc9", + "x-ms-correlation-request-id": "6187b429-037b-4b10-a872-3d452732bec5", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "16c2a295-9f27-4544-897f-e7079dbbbead", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064639Z:6187b429-037b-4b10-a872-3d452732bec5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6304a2426e0cb52a14386ebc2fec2a0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2569905-019d-4887-b8cd-9845d355aee9", + "x-ms-client-request-id": "6304a2426e0cb52a14386ebc2fec2a0b", + "x-ms-correlation-request-id": "7263475b-d146-4b15-993d-84fbd3fc4a9a", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "ff400e66-a581-40b3-b783-38f346ba36ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064640Z:7263475b-d146-4b15-993d-84fbd3fc4a9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "392bc49aaa2f9bc3119913c58b61e151", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9664cfcf-0e10-43bb-81e5-8907ce8d1a26", + "x-ms-client-request-id": "392bc49aaa2f9bc3119913c58b61e151", + "x-ms-correlation-request-id": "a231fc48-ee6c-4938-ba42-429d99747e12", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "948d4661-d5c6-4bc8-a9bc-df8dedf1762b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064642Z:a231fc48-ee6c-4938-ba42-429d99747e12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f85994b7dbc9a4904ebcfdaf4dc2db60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb4085c0-2de1-45f8-990a-465d51c28aa5", + "x-ms-client-request-id": "f85994b7dbc9a4904ebcfdaf4dc2db60", + "x-ms-correlation-request-id": "91285b52-3464-49b6-baa5-47edcf901488", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "ce970701-9da7-416a-9341-45cf04a4cf21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064643Z:91285b52-3464-49b6-baa5-47edcf901488" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c2cd1ea62299799de6852725a6429b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5790450e-f8e1-4c00-b302-4868348226c7", + "x-ms-client-request-id": "1c2cd1ea62299799de6852725a6429b2", + "x-ms-correlation-request-id": "b3a503d0-e288-4040-8035-2af990cf9e63", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "beccd20c-0f64-4820-97e6-40001832e071", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064644Z:b3a503d0-e288-4040-8035-2af990cf9e63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b041c563193be423387eb72ac144e4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31fc20c9-964e-47b3-b37e-fad33a7014a7", + "x-ms-client-request-id": "9b041c563193be423387eb72ac144e4f", + "x-ms-correlation-request-id": "ad5ae428-b0fd-49b7-949c-f4f10759fb87", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "065b7194-0619-411a-bc73-62b755cc4656", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064646Z:ad5ae428-b0fd-49b7-949c-f4f10759fb87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9dab2bec5345428fac11a60881d49e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81492e57-d1dc-4d45-a679-53ef5ff7de3b", + "x-ms-client-request-id": "b9dab2bec5345428fac11a60881d49e9", + "x-ms-correlation-request-id": "423e7882-a736-4f00-b817-6c89dce6d576", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "9a35e4e4-4774-4b25-be72-48a2267d9f00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064647Z:423e7882-a736-4f00-b817-6c89dce6d576" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30584a923fbdb9cd8f6ee8a27726ebca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8df3290-e7cd-4e59-a398-47a1522b367f", + "x-ms-client-request-id": "30584a923fbdb9cd8f6ee8a27726ebca", + "x-ms-correlation-request-id": "fac740bc-4d89-451b-b8c4-60222b8a42a3", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "10e69845-8c81-412a-b5e1-42f4eab009b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064648Z:fac740bc-4d89-451b-b8c4-60222b8a42a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7b3021a708a917ef4afa0d117e23516", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "978d07a6-3995-4e11-8688-41a0a0f921f3", + "x-ms-client-request-id": "a7b3021a708a917ef4afa0d117e23516", + "x-ms-correlation-request-id": "5806e72e-e79a-4c70-8eb6-d5674954da7d", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "4704b198-82fc-4d53-a970-54d377bd996f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064649Z:5806e72e-e79a-4c70-8eb6-d5674954da7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62e0023d1dbb7e91e5212ac6dc86ddd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f9a31fd-7b88-47e8-99c5-ca4b603c364e", + "x-ms-client-request-id": "62e0023d1dbb7e91e5212ac6dc86ddd3", + "x-ms-correlation-request-id": "228d1b9b-7c82-4e5c-b95c-696cfcb08f84", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "798ad91a-58e1-450c-8ebc-e289decf8f9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064651Z:228d1b9b-7c82-4e5c-b95c-696cfcb08f84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86454fd5a269225eccc63c0d9ffba1ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a416c369-f0f2-4a68-99ea-785765659544", + "x-ms-client-request-id": "86454fd5a269225eccc63c0d9ffba1ac", + "x-ms-correlation-request-id": "e56953c3-355d-4329-b855-039afc329360", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "2a24c040-ab7d-43fd-b488-1439d877dfda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064652Z:e56953c3-355d-4329-b855-039afc329360" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7464d1388946fd0e7035c26945b7b56e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fb4c310-5f61-42bd-a1e9-8d82be6625af", + "x-ms-client-request-id": "7464d1388946fd0e7035c26945b7b56e", + "x-ms-correlation-request-id": "d98d1498-f608-446e-ba8e-5a6079744773", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "806db5d1-04cd-48b2-8d59-cf1c8be3b7ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064653Z:d98d1498-f608-446e-ba8e-5a6079744773" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7fbcdd2af9c9baca3be95f5e084dfea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4eb56f14-07e7-446b-8969-6516a04563ee", + "x-ms-client-request-id": "c7fbcdd2af9c9baca3be95f5e084dfea", + "x-ms-correlation-request-id": "82dc27b1-f71b-4918-9946-34c72c237b4f", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "dc4ea477-1bb8-405b-a4e8-758541b7ee8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064655Z:82dc27b1-f71b-4918-9946-34c72c237b4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b8e7d7f68214c8d41481534dff5dc14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1809e654-6ece-42c0-8a9a-52c0d4c3d859", + "x-ms-client-request-id": "0b8e7d7f68214c8d41481534dff5dc14", + "x-ms-correlation-request-id": "4e07fa6a-1810-4105-9306-207c5eb17f1c", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "a70b4299-b0f4-4772-8917-942b80061f63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064656Z:4e07fa6a-1810-4105-9306-207c5eb17f1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d23bce11d9ff881025c9d188f3191cec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60989075-7326-4be5-9f09-743674625a5a", + "x-ms-client-request-id": "d23bce11d9ff881025c9d188f3191cec", + "x-ms-correlation-request-id": "25b6820d-9158-4d47-bde9-969acb00b081", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "749cb392-86c0-4b07-b482-31d2611a68ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064657Z:25b6820d-9158-4d47-bde9-969acb00b081" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8e9d755a928694c3faf86539978bbae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:46:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af35ff38-e5b0-421a-93bb-981557028a46", + "x-ms-client-request-id": "c8e9d755a928694c3faf86539978bbae", + "x-ms-correlation-request-id": "b34d1549-7cdc-4abf-834b-aad87524e848", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "3cf13e3d-d38d-4442-8c9b-258bff29e9af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064658Z:b34d1549-7cdc-4abf-834b-aad87524e848" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12e380e10d48a6ea6d06e65897055928", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "611cc4c1-8141-4f2f-bf33-3fcfb3f90547", + "x-ms-client-request-id": "12e380e10d48a6ea6d06e65897055928", + "x-ms-correlation-request-id": "af248b01-aa42-4519-9476-a038dd6c2e9e", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "cda0c562-a48a-4293-9335-03e91ff1f7ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064700Z:af248b01-aa42-4519-9476-a038dd6c2e9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08de292c140b67ec81d2925053bceeac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c4d61dd-8170-427f-a0b0-8eb5c5a55a93", + "x-ms-client-request-id": "08de292c140b67ec81d2925053bceeac", + "x-ms-correlation-request-id": "09a481fd-70a0-4df0-911d-aa756995e0f3", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "64c46a26-f3b3-4b08-bc2a-7cf5bd70eb77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064701Z:09a481fd-70a0-4df0-911d-aa756995e0f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72a6220d0a3548a3ec435b22c3f4d13a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e803251a-a987-4518-842c-9c2624c91429", + "x-ms-client-request-id": "72a6220d0a3548a3ec435b22c3f4d13a", + "x-ms-correlation-request-id": "edc1efd0-e319-40a7-a9df-c7b5d4a50e19", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "9f105f69-0738-4df7-afea-ea3f56ead896", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064702Z:edc1efd0-e319-40a7-a9df-c7b5d4a50e19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70275e55b399cda3947c90767b9a52b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "429ae394-0a25-4b05-b2f0-fa75f53d7d9d", + "x-ms-client-request-id": "70275e55b399cda3947c90767b9a52b0", + "x-ms-correlation-request-id": "8627a6d8-4dc7-4769-bf38-3b50ae3145ef", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "386d2339-bd01-4f3f-8ca6-de8e3725887d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064703Z:8627a6d8-4dc7-4769-bf38-3b50ae3145ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "754a3917e75e22f285961bc7b9c9a38c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72f178ea-e992-4192-8df0-065fd253a2d2", + "x-ms-client-request-id": "754a3917e75e22f285961bc7b9c9a38c", + "x-ms-correlation-request-id": "2cefebdd-7979-420a-8885-a27e5f244e5f", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "37482528-6b0e-417f-ac39-5f93db2fb67b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064705Z:2cefebdd-7979-420a-8885-a27e5f244e5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5fb57007e955a137fd8ddb9792dcd52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12c87d9a-ce72-48b6-bac6-3086bb82bc3e", + "x-ms-client-request-id": "f5fb57007e955a137fd8ddb9792dcd52", + "x-ms-correlation-request-id": "143a0c79-6214-40ce-835e-d6937c09b2d3", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "ac2dee28-f86b-42c6-b4f2-568f340bc6ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064706Z:143a0c79-6214-40ce-835e-d6937c09b2d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a0baaf05caa6ddb6b04ea0398db14cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "606cf42b-7e93-475e-98a9-dbee16f9d0de", + "x-ms-client-request-id": "8a0baaf05caa6ddb6b04ea0398db14cb", + "x-ms-correlation-request-id": "ebd128f3-0a40-4a3c-800c-f8aa900c6448", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "9ea8bd2a-1886-48a6-9eeb-4b9aa4bfbc28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064707Z:ebd128f3-0a40-4a3c-800c-f8aa900c6448" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "237603d85d9f981a26eff6850a39a858", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8aae0c16-b733-41a4-9790-06545130fe59", + "x-ms-client-request-id": "237603d85d9f981a26eff6850a39a858", + "x-ms-correlation-request-id": "376a088e-6ad8-4c8c-a3a0-6e12471e4688", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "899f8574-682f-47be-9bac-ed0bcbda59b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064709Z:376a088e-6ad8-4c8c-a3a0-6e12471e4688" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ed7c8c919bda3e27b8d89909410c1a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f6b2248-971a-4273-a762-1fe51d47f32c", + "x-ms-client-request-id": "0ed7c8c919bda3e27b8d89909410c1a3", + "x-ms-correlation-request-id": "ee211c17-f002-48cf-9d05-0394a56c9431", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "f1b8b03e-190a-4252-8f2f-5323958571f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064710Z:ee211c17-f002-48cf-9d05-0394a56c9431" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75e011c4a9b792b2907364ba66556331", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e510a722-3ff3-46d8-9c2b-4adeffe5cd0a", + "x-ms-client-request-id": "75e011c4a9b792b2907364ba66556331", + "x-ms-correlation-request-id": "68f88993-8fc5-426b-a042-6e66f908f941", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "50645ac4-3fdf-4390-8558-1e4c5eb1d61e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064711Z:68f88993-8fc5-426b-a042-6e66f908f941" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf3a925c0503bf0d21d2a712d38a0416", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a453dff1-db09-4a6e-9540-9cb4775e51f3", + "x-ms-client-request-id": "cf3a925c0503bf0d21d2a712d38a0416", + "x-ms-correlation-request-id": "4d3eed0d-a732-4bf0-9329-9a210b35d20d", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "dbbed991-6177-4430-ad60-197837835847", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064713Z:4d3eed0d-a732-4bf0-9329-9a210b35d20d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8c1522e32581fa116447e4ab4273c25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "729c8c10-00e4-4da7-b4d0-dea1d9072a9b", + "x-ms-client-request-id": "f8c1522e32581fa116447e4ab4273c25", + "x-ms-correlation-request-id": "5bc43121-d7f5-4ad2-9d9a-76f3765ff1fd", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "cea5846c-246a-43d0-858f-607acf80113f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064714Z:5bc43121-d7f5-4ad2-9d9a-76f3765ff1fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01345829f2d5be9f032154e401a0bf05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ecc6891a-e42c-4d80-a5c6-d2dfcaa9ec9d", + "x-ms-client-request-id": "01345829f2d5be9f032154e401a0bf05", + "x-ms-correlation-request-id": "27a20ade-4f95-4b5f-b2ac-ecfb3ec848eb", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "dbd2ae14-5eac-453b-9531-f47e25a86ae2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064715Z:27a20ade-4f95-4b5f-b2ac-ecfb3ec848eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "148c4e6e6b9429d8f11ab9bf87c30af9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87524379-c4c1-4dc1-a267-9b81b4649ea7", + "x-ms-client-request-id": "148c4e6e6b9429d8f11ab9bf87c30af9", + "x-ms-correlation-request-id": "0a89df26-3ea4-4568-b6ae-d4630747e23b", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "f700d2c4-7d21-4897-8d38-b4026fbe30a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064716Z:0a89df26-3ea4-4568-b6ae-d4630747e23b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7be9829602553b40b202f437debc1d75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8ea81ae-8f86-4395-9d27-c7ca9729c893", + "x-ms-client-request-id": "7be9829602553b40b202f437debc1d75", + "x-ms-correlation-request-id": "52c2eebe-dd37-4001-9a7e-57effa709b2b", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "4bbad256-7e5e-4a11-be47-f14901fe474f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064718Z:52c2eebe-dd37-4001-9a7e-57effa709b2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66dc7885289bbd917f0b10bb38e03740", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8a881bf-d124-4e44-9f9d-37d9e830914e", + "x-ms-client-request-id": "66dc7885289bbd917f0b10bb38e03740", + "x-ms-correlation-request-id": "c49a5534-8c50-4be9-a4a9-15862618d086", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "21f96ad7-acd2-455f-b73b-9d61d8bf2408", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064719Z:c49a5534-8c50-4be9-a4a9-15862618d086" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f4e5a1643b76cb00e50629277a14a34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66db8048-95fe-4fa5-a028-752e5f56c46f", + "x-ms-client-request-id": "7f4e5a1643b76cb00e50629277a14a34", + "x-ms-correlation-request-id": "aec5b211-67cf-4ce4-8c29-d9663238dfd8", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "ba423257-69e2-4bbc-a793-fc786f54a56d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064720Z:aec5b211-67cf-4ce4-8c29-d9663238dfd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f3a43fca4e76e5ef12bfb4af18403d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a7ce3db1-5b57-4071-aeee-3948a1843382", + "x-ms-client-request-id": "0f3a43fca4e76e5ef12bfb4af18403d2", + "x-ms-correlation-request-id": "985a9cc3-22ee-434f-be76-3cf858c6d8ea", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "52d288be-6403-4223-ae18-091003bd4fd2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064721Z:985a9cc3-22ee-434f-be76-3cf858c6d8ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8421b3ca9e6e41bec86f574ac5fe46de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50c3ced4-9973-423d-ade3-d8e6b5286fcf", + "x-ms-client-request-id": "8421b3ca9e6e41bec86f574ac5fe46de", + "x-ms-correlation-request-id": "8c38fdad-5abb-4173-ac2b-e3fad6cc7445", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "13ba5e9e-67d4-40ee-a2c6-d01ec9f87df9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064723Z:8c38fdad-5abb-4173-ac2b-e3fad6cc7445" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5bedcc028a67159fbdf8e8c47667a89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd717cb8-9a88-4f55-9756-8ad70d7db19f", + "x-ms-client-request-id": "f5bedcc028a67159fbdf8e8c47667a89", + "x-ms-correlation-request-id": "f97714b0-d893-4d3a-9f7c-34cad8610d9b", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "a74392c6-9658-4280-9de3-ef4ab7c61b9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064724Z:f97714b0-d893-4d3a-9f7c-34cad8610d9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3c7904dc67f5ec584f846774c14a8f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d77faee8-f6fb-4ae4-b058-4b6499c0775a", + "x-ms-client-request-id": "c3c7904dc67f5ec584f846774c14a8f2", + "x-ms-correlation-request-id": "aa4a1278-7b69-42b0-a247-359b948a4cc0", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "3496100e-91d1-45a7-bff6-877e9b533658", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064726Z:aa4a1278-7b69-42b0-a247-359b948a4cc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15891de40ec5a22b59af888f1032f962", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81775584-54dd-4046-a128-13c848d41722", + "x-ms-client-request-id": "15891de40ec5a22b59af888f1032f962", + "x-ms-correlation-request-id": "a232787b-c987-4915-8a89-3081deaa2796", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "a2af79f8-ffc6-42e2-9e7a-116ceeb12fe3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064727Z:a232787b-c987-4915-8a89-3081deaa2796" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35fdcef48337fa5e176070ade1e224e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a81d5e7-bf13-46e4-958c-6d01beab95ef", + "x-ms-client-request-id": "35fdcef48337fa5e176070ade1e224e7", + "x-ms-correlation-request-id": "de1f7f1f-eeb7-4885-bfad-78061e64a534", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "6a71e60d-0185-463d-b565-a94347329706", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064728Z:de1f7f1f-eeb7-4885-bfad-78061e64a534" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2aa79b3765dc3fc364246ad03e364e52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f781707a-6ee3-4349-8ca1-b22af0cc331e", + "x-ms-client-request-id": "2aa79b3765dc3fc364246ad03e364e52", + "x-ms-correlation-request-id": "36b8b2a4-bc33-4d56-b2eb-a4c037f19de9", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "b20817ce-636b-4a61-ba07-236f3fe94a00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064730Z:36b8b2a4-bc33-4d56-b2eb-a4c037f19de9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e82e4fe721661babe8efe659e7ec177", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "790a471b-53a5-44d6-a69c-cbafb1002dfe", + "x-ms-client-request-id": "7e82e4fe721661babe8efe659e7ec177", + "x-ms-correlation-request-id": "f5687bc3-7764-480d-8074-b2bd8fa6ec27", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "0a2fc2ef-580e-4b68-b6e1-cb5c3f5a7bf0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064731Z:f5687bc3-7764-480d-8074-b2bd8fa6ec27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7457a08acf8a8f850abed112198ebce0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c389850-6d54-4744-911b-d9233301fef3", + "x-ms-client-request-id": "7457a08acf8a8f850abed112198ebce0", + "x-ms-correlation-request-id": "f960e33e-d7d2-401d-8c1f-a3faf6a84b9a", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "6ae2ce2d-1e44-47d6-bbc6-3cbf3e6d4696", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064732Z:f960e33e-d7d2-401d-8c1f-a3faf6a84b9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcaf1d12a55fc4d0e1466c4e675ea0e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85fd4e31-c21a-43bb-a726-1b540f482b62", + "x-ms-client-request-id": "fcaf1d12a55fc4d0e1466c4e675ea0e6", + "x-ms-correlation-request-id": "716aef93-500e-4225-8880-96505e658690", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "b65b810a-bb76-466b-a0d1-a035c97c7780", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064734Z:716aef93-500e-4225-8880-96505e658690" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d45f263d9de2fc75ff37458a0a84730", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b08563e8-410e-4621-a15b-f354688a000f", + "x-ms-client-request-id": "9d45f263d9de2fc75ff37458a0a84730", + "x-ms-correlation-request-id": "8396dc93-a332-43f5-b75c-ead50b06de2d", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "2de8d959-644b-4d0b-8c7b-a72683634960", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064735Z:8396dc93-a332-43f5-b75c-ead50b06de2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80521dd2c4cee417cf929344623727ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e3d3283-c328-4079-8635-87d2e66a0b5c", + "x-ms-client-request-id": "80521dd2c4cee417cf929344623727ab", + "x-ms-correlation-request-id": "af949ac8-1169-439a-9ef8-e408f7b56a8e", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "71de0df9-cdef-4f59-81d7-9872f0246679", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064737Z:af949ac8-1169-439a-9ef8-e408f7b56a8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26afeb1d1e48380156809d6c31782438", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5d378b0-15aa-4ec2-acaa-1f062a039635", + "x-ms-client-request-id": "26afeb1d1e48380156809d6c31782438", + "x-ms-correlation-request-id": "2e44103c-67e3-4b81-8157-d250d2e27bf4", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "8e1ebe20-92e6-413e-b8fa-f2c7fc44544c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064738Z:2e44103c-67e3-4b81-8157-d250d2e27bf4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a7b3cfe200b9e17db61ce4c4683cc28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d267c81b-4844-4c3f-ab44-5c034ba58202", + "x-ms-client-request-id": "4a7b3cfe200b9e17db61ce4c4683cc28", + "x-ms-correlation-request-id": "7e0fd1d3-a827-4bbd-8138-5bacf0f67d2b", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "4dddd67d-aff9-443a-81a0-02c72bdef15a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064739Z:7e0fd1d3-a827-4bbd-8138-5bacf0f67d2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b53bc8cb21f8b3e71b19294d27aab356", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc6ff417-86e6-491e-8f67-ae370e0bccdb", + "x-ms-client-request-id": "b53bc8cb21f8b3e71b19294d27aab356", + "x-ms-correlation-request-id": "01e23844-3e7b-46cd-8777-88a95f615e86", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "dbb6728f-2bcf-43d5-8272-bf58a75d09c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064741Z:01e23844-3e7b-46cd-8777-88a95f615e86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26455a6eddbbfca0d3104ae64fb5f1d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff0e427b-56fb-4077-a71e-6cb2b295ec0c", + "x-ms-client-request-id": "26455a6eddbbfca0d3104ae64fb5f1d3", + "x-ms-correlation-request-id": "e782b986-223c-4831-8943-b60d9c395a26", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "072b3f7b-9d0d-4501-ba3a-0915081e9b27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064742Z:e782b986-223c-4831-8943-b60d9c395a26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68a075b46e3ddd3f54c72ef1f6c97730", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e6a0f62-88a0-4cfb-ad2a-088717a6a3ea", + "x-ms-client-request-id": "68a075b46e3ddd3f54c72ef1f6c97730", + "x-ms-correlation-request-id": "7598cb20-b8ea-4cb8-bc65-c6995c5644cb", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "8d7af2fa-df38-4574-8fad-d8bd32b4070a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064743Z:7598cb20-b8ea-4cb8-bc65-c6995c5644cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecdd77aea63dee6c283ee1e8d6006466", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "689f03a4-4177-4524-8f30-6a35d5150950", + "x-ms-client-request-id": "ecdd77aea63dee6c283ee1e8d6006466", + "x-ms-correlation-request-id": "c17aa161-60ab-49b4-ad97-0f81a8a3e3a9", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "6fda6eac-fdd9-4fb7-aca5-809f186cab1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064744Z:c17aa161-60ab-49b4-ad97-0f81a8a3e3a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b29956274a09ff191a68d1f3afae060a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b259d32-b463-47a3-8249-aeb73e434dc4", + "x-ms-client-request-id": "b29956274a09ff191a68d1f3afae060a", + "x-ms-correlation-request-id": "f7f628b1-2573-46ef-89a9-f87ea84ad9e1", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "67d0769f-e0b9-41de-97a2-28b19a220db7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064746Z:f7f628b1-2573-46ef-89a9-f87ea84ad9e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d838199905d70e9508b240fe8d570653", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c362192-5897-4194-b187-b10d662e3aae", + "x-ms-client-request-id": "d838199905d70e9508b240fe8d570653", + "x-ms-correlation-request-id": "9b08bdd1-e596-4500-af3b-c9b983870ee7", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "757c3ad2-4b19-4e22-ba0d-5d3e628c9876", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064747Z:9b08bdd1-e596-4500-af3b-c9b983870ee7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0c9c863c42f64265dddd1d5d4793f7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1795999c-77cf-4ff5-90ae-8ca3c97c29f0", + "x-ms-client-request-id": "a0c9c863c42f64265dddd1d5d4793f7a", + "x-ms-correlation-request-id": "028cafc8-1c35-4623-b7b8-6f8e0cbdf112", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "6fd57369-14a3-43dd-a6a4-d5a8326cdbea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064748Z:028cafc8-1c35-4623-b7b8-6f8e0cbdf112" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc4ed6388bc8228ec08baa57091a72c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76293b3a-753d-449f-9dce-2d5d84bca5f0", + "x-ms-client-request-id": "bc4ed6388bc8228ec08baa57091a72c2", + "x-ms-correlation-request-id": "52eceaf9-1475-4a0e-ae2f-d4561a883db3", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "3eefc910-d0ed-4376-ac12-bb373f5a06ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064750Z:52eceaf9-1475-4a0e-ae2f-d4561a883db3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e78f7d6166e4d4daf3d47af933bf398e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5cc0449-2f23-4f76-be65-6b6fba41f91c", + "x-ms-client-request-id": "e78f7d6166e4d4daf3d47af933bf398e", + "x-ms-correlation-request-id": "111ec848-ae83-4f72-9102-1a0d7fc40f60", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "5f5066c4-5782-4b0b-a7f2-5c40f5843be3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064751Z:111ec848-ae83-4f72-9102-1a0d7fc40f60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6c6c6734909d78b39a7dfa31acf5a43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f05ef112-b567-4756-a4a7-ac40815d42fc", + "x-ms-client-request-id": "b6c6c6734909d78b39a7dfa31acf5a43", + "x-ms-correlation-request-id": "6b50f9b8-4208-4e7c-9d87-ba45359de2f5", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "5c9ce9bc-6d87-4048-97a3-652a742f4f08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064752Z:6b50f9b8-4208-4e7c-9d87-ba45359de2f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56740e6b58e9d296fc79c9f41194ee00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9914794c-e0bc-4eb2-a1cc-d7d0e5e530fe", + "x-ms-client-request-id": "56740e6b58e9d296fc79c9f41194ee00", + "x-ms-correlation-request-id": "b2d56a15-5505-42bd-be55-7d29a51192d7", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "35be6bdd-4275-48a2-973b-e7ef7d96aeaf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064753Z:b2d56a15-5505-42bd-be55-7d29a51192d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43e41b52bb5317b9f1b7ad3c8636ba23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2bcbd685-9b92-485b-b97d-4951091d5cbb", + "x-ms-client-request-id": "43e41b52bb5317b9f1b7ad3c8636ba23", + "x-ms-correlation-request-id": "737d733e-0bce-40e0-a522-89f8c1e023a2", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "85cfef71-a0ba-4091-a9f7-de8a4988f1a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064755Z:737d733e-0bce-40e0-a522-89f8c1e023a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "258e3779e24b1aa42ff4ba8f7f97c6a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3ecbecf-cd4e-442b-8b98-524315bef8e6", + "x-ms-client-request-id": "258e3779e24b1aa42ff4ba8f7f97c6a5", + "x-ms-correlation-request-id": "8154f4bf-f974-46c9-8ad2-52d936d4b031", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "f591c595-a0de-4eec-842c-6b2dcd588a2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064756Z:8154f4bf-f974-46c9-8ad2-52d936d4b031" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff51deb917eab0ef555c6531aa594bc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2627fd7-1171-4b5b-af48-01bba7aebf00", + "x-ms-client-request-id": "ff51deb917eab0ef555c6531aa594bc5", + "x-ms-correlation-request-id": "9fe83104-8875-4a90-8721-7a0392dd8fb4", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "d389c018-6407-40c9-800d-97b8586c5850", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064757Z:9fe83104-8875-4a90-8721-7a0392dd8fb4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da7aa6bfc9066fb576c9135f012a985a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:47:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f069ff2-d31f-44c9-ae1a-4ef2df5b44a7", + "x-ms-client-request-id": "da7aa6bfc9066fb576c9135f012a985a", + "x-ms-correlation-request-id": "6297815a-e5a8-4da7-9a9a-730a070d8c10", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "ef668c9b-e4ee-40fd-85ed-6358251aedbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064759Z:6297815a-e5a8-4da7-9a9a-730a070d8c10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a88308f1bae5623847ddd0ef7d7370d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ab7e5da-c36c-43b9-90fa-dccb9a08f7b5", + "x-ms-client-request-id": "a88308f1bae5623847ddd0ef7d7370d6", + "x-ms-correlation-request-id": "18424c8d-4b51-44a1-940a-d15d45122e50", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "454bf62e-8a7f-4f4c-8f4d-03c934fae9e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064800Z:18424c8d-4b51-44a1-940a-d15d45122e50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9cff4a9ec1def9e29e188210390af2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c583d0dc-793c-4505-8d6a-bba187d240c6", + "x-ms-client-request-id": "d9cff4a9ec1def9e29e188210390af2a", + "x-ms-correlation-request-id": "89bb0342-03fd-4d6b-9567-5ecb3f05b767", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "b6c90887-6eb2-45e4-8154-6f1afb9ac33d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064801Z:89bb0342-03fd-4d6b-9567-5ecb3f05b767" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2400ac4a3d605e06d189228f9c5f203", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6f84d6c-04cc-4032-a445-fbb4148d95c1", + "x-ms-client-request-id": "a2400ac4a3d605e06d189228f9c5f203", + "x-ms-correlation-request-id": "c43bb657-ad78-4134-ac6b-7400a6157eee", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "019f4bab-df67-4286-9814-b31bc9de232a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064803Z:c43bb657-ad78-4134-ac6b-7400a6157eee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0cb63d59be5a053d69937f0331175eb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e568a5c0-d5c4-404c-893d-ea01aae84632", + "x-ms-client-request-id": "0cb63d59be5a053d69937f0331175eb7", + "x-ms-correlation-request-id": "c394ae4c-2592-4e1b-8b51-943f5950851e", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "0d495034-30e8-4ea1-b422-756a7eac0d32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064804Z:c394ae4c-2592-4e1b-8b51-943f5950851e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "722ba52ecd3206ff13ca6c045975f663", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "daea646a-ad6e-48ac-8488-b0a06a0a3de7", + "x-ms-client-request-id": "722ba52ecd3206ff13ca6c045975f663", + "x-ms-correlation-request-id": "5717a387-997b-4c0d-af12-8b80428a4029", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "7b3da108-a4a7-4a45-a1b5-0446a630aca5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064805Z:5717a387-997b-4c0d-af12-8b80428a4029" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5c785efa2da05d0cd3b384223ddd355", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "044add55-1c9b-415e-addb-57ecfa7c8cb8", + "x-ms-client-request-id": "c5c785efa2da05d0cd3b384223ddd355", + "x-ms-correlation-request-id": "52f77feb-c19d-4083-92de-56dad7d9b66c", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "4452296f-ac07-42ff-b037-3dcb928d68f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064807Z:52f77feb-c19d-4083-92de-56dad7d9b66c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54fadbb9809a8cd03daff88f5238acf4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83c4088c-c891-4c8a-a153-8817519b224b", + "x-ms-client-request-id": "54fadbb9809a8cd03daff88f5238acf4", + "x-ms-correlation-request-id": "c58395a2-73bd-4904-850e-c9ec6ac0adc3", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "1b527017-69f2-4f78-b4e2-408bd195cad9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064808Z:c58395a2-73bd-4904-850e-c9ec6ac0adc3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac141b9c99508bddd426a4f795bde236", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bff69b95-9c01-444a-92d8-8f643e21784c", + "x-ms-client-request-id": "ac141b9c99508bddd426a4f795bde236", + "x-ms-correlation-request-id": "94c2d3b9-54e8-4e53-b869-fdb3fe81cc8d", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "371e2d1c-7bde-4c80-a184-d8cb5540c57f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064809Z:94c2d3b9-54e8-4e53-b869-fdb3fe81cc8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d4b17f7a27b6fc9b43b872aaa40b395", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7eb91f47-7faa-41ef-b5fb-6c5bcbee4580", + "x-ms-client-request-id": "7d4b17f7a27b6fc9b43b872aaa40b395", + "x-ms-correlation-request-id": "e987f7c4-332d-45a6-a714-a8f795468418", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "7116efce-0fc4-4b3b-83f4-848d7fd16c10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064810Z:e987f7c4-332d-45a6-a714-a8f795468418" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08a5448f27c91f04fe6f7f74dbd9f680", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67c391bc-2977-429c-a503-59f29ab49c25", + "x-ms-client-request-id": "08a5448f27c91f04fe6f7f74dbd9f680", + "x-ms-correlation-request-id": "92d5e1b7-1782-4bfe-a029-27a77e7bc71f", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "dc661675-54ce-4574-8c03-fc728e85c063", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064812Z:92d5e1b7-1782-4bfe-a029-27a77e7bc71f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a98c2cd2eecfa7852a5f71511b2e193", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae1673f2-1300-48e0-8a54-c2dde578fed0", + "x-ms-client-request-id": "3a98c2cd2eecfa7852a5f71511b2e193", + "x-ms-correlation-request-id": "412bacfb-a084-4ca7-85b0-8ca3d151b072", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "30464617-1865-47d1-8aaa-456e9c5349ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064813Z:412bacfb-a084-4ca7-85b0-8ca3d151b072" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51680f72da17d06d122b7f0c235593db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a31d322-2b6f-4e4a-bab7-f80b088c71ad", + "x-ms-client-request-id": "51680f72da17d06d122b7f0c235593db", + "x-ms-correlation-request-id": "c5c49d41-5352-45eb-b9a8-e12049684976", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "1ba0d7ea-be74-4a43-b0f6-624d7ae6ff5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064814Z:c5c49d41-5352-45eb-b9a8-e12049684976" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e85c064478a860a8cbabb5242fef0e4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f1ba2a5-e411-4b2d-85e4-820828fbae51", + "x-ms-client-request-id": "e85c064478a860a8cbabb5242fef0e4b", + "x-ms-correlation-request-id": "7e212c78-951d-418f-8bf7-744483e0b1fc", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "6f36378a-41fa-4aeb-9f1c-d31f837da9c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064816Z:7e212c78-951d-418f-8bf7-744483e0b1fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc01eb8da570f36954c728c0ae6cd6fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21777d22-34af-4661-909c-37be501dd5cb", + "x-ms-client-request-id": "cc01eb8da570f36954c728c0ae6cd6fd", + "x-ms-correlation-request-id": "12d7cd95-8fe8-4686-8fa6-98124ef594da", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "1f110fbc-c2f0-479a-80b0-ebe670063c0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064817Z:12d7cd95-8fe8-4686-8fa6-98124ef594da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ad01b11f855faeb6607856b2449a023", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c90b478f-9f1d-402e-9743-53e81c324aa4", + "x-ms-client-request-id": "0ad01b11f855faeb6607856b2449a023", + "x-ms-correlation-request-id": "1dcad39b-9cae-4ffa-aa63-b21dc340b465", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "eb81543b-969b-4aba-8783-267f5d29e7f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064818Z:1dcad39b-9cae-4ffa-aa63-b21dc340b465" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "377e341dc7549e6a9d6993e14fe8b25e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "90d43d2f-419f-4d9a-87f6-866129804073", + "x-ms-client-request-id": "377e341dc7549e6a9d6993e14fe8b25e", + "x-ms-correlation-request-id": "84deeb3a-b37c-4c51-b037-21a19879f3b3", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "a31ae561-6410-4365-90dd-323533c2861d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064820Z:84deeb3a-b37c-4c51-b037-21a19879f3b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1312b8d4031e95f50006666920fece0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "97dca30f-f7c4-4c1f-bead-dfcb371e021b", + "x-ms-client-request-id": "1312b8d4031e95f50006666920fece0b", + "x-ms-correlation-request-id": "965db769-9241-46b3-accc-abf2bbe09f18", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "1a7ae730-ce37-4dac-a014-3d1bb3217499", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064821Z:965db769-9241-46b3-accc-abf2bbe09f18" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7aa304269eee4aa8b1326dec6509aa7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ada026c5-9eeb-4cdb-9a54-32462ef2691b", + "x-ms-client-request-id": "7aa304269eee4aa8b1326dec6509aa7e", + "x-ms-correlation-request-id": "e5f27a5e-80f7-4a38-b329-186a39fc2a83", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "d483f699-ac7f-4091-90e2-e1e8b0400b36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064823Z:e5f27a5e-80f7-4a38-b329-186a39fc2a83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c9626558c361a053ee9374d61017e9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89671221-daab-4dd3-8537-801f4570fc8d", + "x-ms-client-request-id": "6c9626558c361a053ee9374d61017e9e", + "x-ms-correlation-request-id": "bec88fab-9a7a-4da9-9097-8eddb021c484", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "4ffb3dd1-fec5-41f0-acb6-ab67ffd7bd38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064824Z:bec88fab-9a7a-4da9-9097-8eddb021c484" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bba889b384536700fc862eb95092ff6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "720d64ff-6489-46d5-a1ca-2efd68facc6c", + "x-ms-client-request-id": "4bba889b384536700fc862eb95092ff6", + "x-ms-correlation-request-id": "6adb2f83-7bcf-4d49-a2ff-7f260185e363", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "bc3b1f48-17f6-40a9-9033-9b8c4d94ce8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064825Z:6adb2f83-7bcf-4d49-a2ff-7f260185e363" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f913e85b62679ad4fe883b04675be8af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1e34cde-761f-4bff-bdc5-da48aceedd3e", + "x-ms-client-request-id": "f913e85b62679ad4fe883b04675be8af", + "x-ms-correlation-request-id": "e82927f7-e741-4ee0-9f76-304f3a4dc173", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "7309e59e-54ba-48e0-b9a5-41485b7d22b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064826Z:e82927f7-e741-4ee0-9f76-304f3a4dc173" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc50ceb35f4f1d38b5605c6e29198535", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05d31fe1-441d-4f92-b141-e732357c70b2", + "x-ms-client-request-id": "dc50ceb35f4f1d38b5605c6e29198535", + "x-ms-correlation-request-id": "c8d74cb1-fea9-4d6a-9df8-7391792093ee", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "6dcd743b-da75-4c35-a20f-727579471eb1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064828Z:c8d74cb1-fea9-4d6a-9df8-7391792093ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79f241b985ed3937b3204cbcfc6bceb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "782d8e1a-7d77-4ddb-b08e-4d5614c23459", + "x-ms-client-request-id": "79f241b985ed3937b3204cbcfc6bceb4", + "x-ms-correlation-request-id": "f327e0ae-844f-4d2f-82cb-36871995f71e", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "a98cc8da-58b5-4511-9e04-0694616d3b5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064829Z:f327e0ae-844f-4d2f-82cb-36871995f71e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c638b3df53b8fca6aff64307056670e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51e21190-d133-49b5-9c98-d836ada02ee9", + "x-ms-client-request-id": "c638b3df53b8fca6aff64307056670e5", + "x-ms-correlation-request-id": "ed78dc7a-a831-4019-b7e5-c8386cadd623", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "87b190a0-87b7-4dfc-aaee-b9a7b735b1bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064830Z:ed78dc7a-a831-4019-b7e5-c8386cadd623" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "264b05036f692dc19717292f127c204a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d09dc156-37a2-4bc4-b605-233de954b961", + "x-ms-client-request-id": "264b05036f692dc19717292f127c204a", + "x-ms-correlation-request-id": "1f0523b0-9053-4784-9ec6-f0f275652211", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "7b3c091b-a257-45b7-a5af-29ff246a9dc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064832Z:1f0523b0-9053-4784-9ec6-f0f275652211" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "768ea891bee1667d9af5caf64130334c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccd1a9e1-610f-4aa1-a116-dd34e8a3ae4f", + "x-ms-client-request-id": "768ea891bee1667d9af5caf64130334c", + "x-ms-correlation-request-id": "2c2d2496-12d6-4f36-8fe3-48f6ed96578e", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "e76eb094-1902-4244-b0d2-79aa7e2b4a7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064833Z:2c2d2496-12d6-4f36-8fe3-48f6ed96578e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7b967b0a820704bf10a2fa02977e932", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75db8566-f10b-4a56-b98b-20da7456c84f", + "x-ms-client-request-id": "f7b967b0a820704bf10a2fa02977e932", + "x-ms-correlation-request-id": "9f654f18-dff3-430d-8fde-7ad9472db984", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "bb096892-ef63-4864-8a0c-01b9be80dfd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064835Z:9f654f18-dff3-430d-8fde-7ad9472db984" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d75f9d6f9d8440488e58c73a5caec67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cec5ceba-a38b-4fd6-8ef6-ea4c2b4b74e2", + "x-ms-client-request-id": "5d75f9d6f9d8440488e58c73a5caec67", + "x-ms-correlation-request-id": "758cc8af-dc01-4b59-9803-c42cd772746f", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "f5bfebd5-effd-4adf-a0c1-af6b119a1dcf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064836Z:758cc8af-dc01-4b59-9803-c42cd772746f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab7fdce329c3e9295c1d84d68fdc3c22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d6ae997-312f-4712-97b3-4361ef2157ce", + "x-ms-client-request-id": "ab7fdce329c3e9295c1d84d68fdc3c22", + "x-ms-correlation-request-id": "5258412d-23fb-4570-8a1b-d309c4425b9a", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "35111410-cad3-4d31-933a-137671fcbef5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064838Z:5258412d-23fb-4570-8a1b-d309c4425b9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4820970cd6bab67462746e3a1cd8cb26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee2e771f-0db9-4a96-93d8-a8df4c022020", + "x-ms-client-request-id": "4820970cd6bab67462746e3a1cd8cb26", + "x-ms-correlation-request-id": "de94889d-b81c-45a8-8732-ed2b8b827833", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "308ccab8-02e4-4c07-a952-ccaadddbc81c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064839Z:de94889d-b81c-45a8-8732-ed2b8b827833" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dbcc71e3df8ad6fcf8c00ba742db5ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aade0dbd-744f-47ca-90d3-5246eda08317", + "x-ms-client-request-id": "4dbcc71e3df8ad6fcf8c00ba742db5ab", + "x-ms-correlation-request-id": "80404953-6079-44b6-afbe-30dd79e09faa", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "2826e0a2-2195-4735-ad40-3c5f028284a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064840Z:80404953-6079-44b6-afbe-30dd79e09faa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d6669a9a3aa0dac67c8494ebaefcc84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "513f22ef-d6ea-48ab-b3f3-1cffd9ed4337", + "x-ms-client-request-id": "0d6669a9a3aa0dac67c8494ebaefcc84", + "x-ms-correlation-request-id": "3b856e22-f337-4db0-b992-833252f0e342", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "562ed720-64ff-4d39-9ace-64a974bc04f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064842Z:3b856e22-f337-4db0-b992-833252f0e342" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7b75e52ef1fcf2a2772782ed6ba4134", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "24a36535-7733-44b5-a974-b2139cbf062b", + "x-ms-client-request-id": "c7b75e52ef1fcf2a2772782ed6ba4134", + "x-ms-correlation-request-id": "3376fcfa-2e3a-4155-b9d5-a6327e08a8b0", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "ed617a2e-9bfa-4b9b-ba1d-2a9d0fc255ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064843Z:3376fcfa-2e3a-4155-b9d5-a6327e08a8b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b391c3bebd717a7c1bafe52ff420f3e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e17eb117-947b-4d0a-b619-3e40fe755250", + "x-ms-client-request-id": "b391c3bebd717a7c1bafe52ff420f3e0", + "x-ms-correlation-request-id": "80663e31-bca3-4d07-be73-05bb685ca751", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "c0e729df-8eca-48fb-b65b-54882d5a2ef8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064844Z:80663e31-bca3-4d07-be73-05bb685ca751" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16677bbfee76b98b3e97e6372a7e36ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2256cfd5-7580-4bc7-919b-21c4543317e9", + "x-ms-client-request-id": "16677bbfee76b98b3e97e6372a7e36ad", + "x-ms-correlation-request-id": "e7c7e0da-629d-49d8-8581-b642c322e7f3", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "15841277-12c8-4301-93cf-443c7b5ce9f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064846Z:e7c7e0da-629d-49d8-8581-b642c322e7f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6901486195d9513e23cac7009fada06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65f86b2b-62aa-4439-a4e4-f0d8fd8e2426", + "x-ms-client-request-id": "f6901486195d9513e23cac7009fada06", + "x-ms-correlation-request-id": "ce911a28-ef03-4f2a-b59b-1425635a1976", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "129afe51-bfed-4fae-bc19-1578a6c0b584", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064847Z:ce911a28-ef03-4f2a-b59b-1425635a1976" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a6f987f2b52d0be37d774d9d644509c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10f1ee32-3984-4b96-a8cb-14190e02f7bc", + "x-ms-client-request-id": "5a6f987f2b52d0be37d774d9d644509c", + "x-ms-correlation-request-id": "10fa4b00-13fa-4481-ad06-66431289818c", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "bea7cf92-0740-45fe-9770-7ff7d29c2bee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064848Z:10fa4b00-13fa-4481-ad06-66431289818c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0a93778fc90a58268d23439421bb044", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ff55111-b7ed-450d-b44e-f93ab504d20c", + "x-ms-client-request-id": "e0a93778fc90a58268d23439421bb044", + "x-ms-correlation-request-id": "fcd1a753-8114-47c0-8ad0-3a16d37c82bd", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "51d179ca-ec19-4580-b10d-bb9e2ebabac9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064849Z:fcd1a753-8114-47c0-8ad0-3a16d37c82bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91b8dfbddc0f5b5b55c0bf85a539be9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "41e7adc2-0ea4-45e1-a423-ec6c28a0318a", + "x-ms-client-request-id": "91b8dfbddc0f5b5b55c0bf85a539be9d", + "x-ms-correlation-request-id": "f3498c32-c6e5-4736-b8bc-964dddeb6aa7", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "8308dae4-7334-4ea3-9100-f586fe7ca111", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064851Z:f3498c32-c6e5-4736-b8bc-964dddeb6aa7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1f70fecfa51837616c9f27ff6858d1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "415e381d-d6dc-4cda-b084-121513380e56", + "x-ms-client-request-id": "d1f70fecfa51837616c9f27ff6858d1c", + "x-ms-correlation-request-id": "d52fcda1-cafb-4ede-94aa-a06bd2697c74", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "04cc5cc0-9d0c-4840-a679-e4fc0cded9fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064852Z:d52fcda1-cafb-4ede-94aa-a06bd2697c74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f71c2f27be8b9c8ddc4d8ad03dfcff2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e047fb23-03ea-4887-a1d0-9f4a880a1043", + "x-ms-client-request-id": "f71c2f27be8b9c8ddc4d8ad03dfcff2e", + "x-ms-correlation-request-id": "5d1008ce-0030-432b-898b-0cff3a1857c5", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "92b3c2cd-bf9e-44ce-b59d-8659223c41a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064853Z:5d1008ce-0030-432b-898b-0cff3a1857c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "324c9613de23c2f269357b45eadb65cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3536a321-9b39-4cf9-91cf-73e72e7548d6", + "x-ms-client-request-id": "324c9613de23c2f269357b45eadb65cf", + "x-ms-correlation-request-id": "37e56d55-eb99-4da3-95d3-e9748c7497c1", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "44afb287-e502-4d5f-980b-5e690be8d5a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064855Z:37e56d55-eb99-4da3-95d3-e9748c7497c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "755ea232c71d2e12815bf50370a64519", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f90e4b0b-529b-4aa3-9d63-7e66f12e7ed5", + "x-ms-client-request-id": "755ea232c71d2e12815bf50370a64519", + "x-ms-correlation-request-id": "f9b6869c-2f1c-4173-9733-d7755c2c131b", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "2f26ffc7-8fc3-4582-8ef2-da42e0a8f328", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064856Z:f9b6869c-2f1c-4173-9733-d7755c2c131b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f6cc3c95b3949f83c5a8e564248b200", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96000718-9446-4c35-bf9c-b2c190db8104", + "x-ms-client-request-id": "5f6cc3c95b3949f83c5a8e564248b200", + "x-ms-correlation-request-id": "42f429e8-dba7-4d96-a242-72a1b0c5679b", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "1d8fc071-0d7e-4300-a9c1-79faadcc882e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064858Z:42f429e8-dba7-4d96-a242-72a1b0c5679b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a9dbae8899e4c11841eb1c8e8ef52c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:48:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4713e6f4-da08-4a54-9771-800c516313b5", + "x-ms-client-request-id": "9a9dbae8899e4c11841eb1c8e8ef52c2", + "x-ms-correlation-request-id": "d0bcd666-859e-4379-b065-d037125bc08a", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "75b0ba28-46eb-42d2-b9b4-d01e8f861a0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064859Z:d0bcd666-859e-4379-b065-d037125bc08a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "267b62ef056fd796a91439c338bbeb39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "44dd717f-c974-4b32-8cae-d95ba9867b34", + "x-ms-client-request-id": "267b62ef056fd796a91439c338bbeb39", + "x-ms-correlation-request-id": "00828bb5-5e73-46d2-91d5-5495175fb1c8", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "1e4e2307-41a3-4c03-a118-496849587b5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064900Z:00828bb5-5e73-46d2-91d5-5495175fb1c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b51bf4a9ab083f7ab11fda1ba930614d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "290f8d80-540f-4a0f-8ab3-62ee77f19f8c", + "x-ms-client-request-id": "b51bf4a9ab083f7ab11fda1ba930614d", + "x-ms-correlation-request-id": "3d641bdd-389f-405c-973f-c0ab7c6e3339", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "4ee4fe3c-b498-45b5-af08-60724e8e22fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064902Z:3d641bdd-389f-405c-973f-c0ab7c6e3339" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df67cb078bcce29123c6f08a504e13c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa33ac1d-c19f-4721-b8b5-ff251d8fc041", + "x-ms-client-request-id": "df67cb078bcce29123c6f08a504e13c8", + "x-ms-correlation-request-id": "9724effd-0752-4b30-9944-bb0a8a6564e0", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "7be7d539-3e02-413a-ab34-10e6e3a275ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064903Z:9724effd-0752-4b30-9944-bb0a8a6564e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f31f77329cd344b9e73b744f2a7b2d79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c06d3454-7bfe-4df0-b8b0-21f881a7e169", + "x-ms-client-request-id": "f31f77329cd344b9e73b744f2a7b2d79", + "x-ms-correlation-request-id": "49027c37-364e-4dea-ab1a-c24f1aab7715", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "accba698-0391-4619-9b49-ef3603542515", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064904Z:49027c37-364e-4dea-ab1a-c24f1aab7715" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6dbbebb30c541d6c63389142baf0ee63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fadf1050-405f-461d-833f-633daca160b0", + "x-ms-client-request-id": "6dbbebb30c541d6c63389142baf0ee63", + "x-ms-correlation-request-id": "b96644bd-b622-4140-99dc-631e01bdd7d6", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "8d4d8602-c2c9-4c6e-940e-06c986d10c1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064905Z:b96644bd-b622-4140-99dc-631e01bdd7d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31e9110c6d116b7a1122f7911641b7a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd584a21-8e36-423d-ac93-3326a21e5c94", + "x-ms-client-request-id": "31e9110c6d116b7a1122f7911641b7a8", + "x-ms-correlation-request-id": "07eda86e-6a28-4563-99d9-5fe025c282f8", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "9950a196-dbd9-4197-840d-ff24d4b40e7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064907Z:07eda86e-6a28-4563-99d9-5fe025c282f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65d77798a69326740b018f9a0a7789f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96fa4a17-d1d8-4d9b-b749-e0edae0497b9", + "x-ms-client-request-id": "65d77798a69326740b018f9a0a7789f7", + "x-ms-correlation-request-id": "a0376025-f952-492d-929b-baf82cdf1514", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "a6cfd4aa-5079-4893-a03b-a8270f1085a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064908Z:a0376025-f952-492d-929b-baf82cdf1514" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1843114cfb924567714f5b3114db0721", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "abcb2ed7-bf5c-42a7-94b1-51bc9988030f", + "x-ms-client-request-id": "1843114cfb924567714f5b3114db0721", + "x-ms-correlation-request-id": "095e08de-e005-454a-a48d-2ca2e09b7d2c", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "a2a7903d-c363-46a0-8048-f7cd8775cc6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064909Z:095e08de-e005-454a-a48d-2ca2e09b7d2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43a9e981891966d09dc2260fdddf609a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb35b6af-63ab-4766-b8a9-329909bfab93", + "x-ms-client-request-id": "43a9e981891966d09dc2260fdddf609a", + "x-ms-correlation-request-id": "abb7048c-84c9-4312-8104-67fcac92bd95", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "24d0e9dd-de0c-48f8-b5f5-634d00e51da8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064911Z:abb7048c-84c9-4312-8104-67fcac92bd95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "054400999efe9d150f91f4434a42122f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89e7d19b-f135-45f2-ab72-f9b53aa9569b", + "x-ms-client-request-id": "054400999efe9d150f91f4434a42122f", + "x-ms-correlation-request-id": "1254a8c1-83a0-4b54-98fe-a4cbf7e649f3", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "0a690681-832e-4058-8760-ec1c40b030f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064912Z:1254a8c1-83a0-4b54-98fe-a4cbf7e649f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21196efa46cdc3de40dc7bcfd5586791", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b87380b-5dba-4002-9453-f8498e1c6c45", + "x-ms-client-request-id": "21196efa46cdc3de40dc7bcfd5586791", + "x-ms-correlation-request-id": "401703bc-9b28-4dcd-bd8f-83b8c0c26cf6", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "53f9c906-a17c-4595-8d6e-cc92b0171de3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064913Z:401703bc-9b28-4dcd-bd8f-83b8c0c26cf6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1398c1ee0196e222d30c3387958c1b5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb19d815-a6c4-401d-9a97-65bf1a0e43b3", + "x-ms-client-request-id": "1398c1ee0196e222d30c3387958c1b5b", + "x-ms-correlation-request-id": "dd29840e-3528-4cd5-8501-4ef7656d3775", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "f28f21b6-06b3-4d9d-889a-6d141d4382fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064915Z:dd29840e-3528-4cd5-8501-4ef7656d3775" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f15f6b03fc652cc2181c4212346c7b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d0a8b21-df28-4d13-a171-262b6c5b8104", + "x-ms-client-request-id": "6f15f6b03fc652cc2181c4212346c7b7", + "x-ms-correlation-request-id": "f00e5d14-c297-4054-b3a2-02d62c40c9b4", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "34a5dcdf-59dd-4f3e-95a0-69fdf608b3de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064916Z:f00e5d14-c297-4054-b3a2-02d62c40c9b4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8854622afea9f8994b364ec113562eb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c096d0a8-e7d3-4375-a07e-4debb6f2d68c", + "x-ms-client-request-id": "8854622afea9f8994b364ec113562eb4", + "x-ms-correlation-request-id": "b51b9015-03aa-4bbf-84d4-70d048a55ab1", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "c5e902fa-9573-4684-84f5-1c1c4be2f1e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064917Z:b51b9015-03aa-4bbf-84d4-70d048a55ab1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de1e1fc1f742afcbf546f1153d01bf8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8826bec3-cd04-41fe-904e-12a76fb673e0", + "x-ms-client-request-id": "de1e1fc1f742afcbf546f1153d01bf8c", + "x-ms-correlation-request-id": "883dcde7-3577-49bd-8226-89043db7507c", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "87d69514-deb9-4c81-9401-555b096bb8cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064919Z:883dcde7-3577-49bd-8226-89043db7507c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "325d7c449337b2b15d1d248ff10a3fca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7258024-636b-4024-889b-e1f36f0dd1f5", + "x-ms-client-request-id": "325d7c449337b2b15d1d248ff10a3fca", + "x-ms-correlation-request-id": "783345de-b94d-489e-ade4-dd2d27e6c8b5", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "6bc108ce-9ac5-4a64-8db5-db405d3ade2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064920Z:783345de-b94d-489e-ade4-dd2d27e6c8b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03600f53e927327596a593630c83ba4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86b2c011-7b53-46b8-bb4d-1a1d9bf8a7d0", + "x-ms-client-request-id": "03600f53e927327596a593630c83ba4a", + "x-ms-correlation-request-id": "9c1bd807-1f2b-4a3a-90e8-14f33ed90e63", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "ead75b0d-f77c-4f60-b10a-c8df9409eeed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064921Z:9c1bd807-1f2b-4a3a-90e8-14f33ed90e63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "967cc177fbf92d7c6e6b8124d33cbeea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "898b6d5b-bf5d-457f-ab3f-0bb024e40d61", + "x-ms-client-request-id": "967cc177fbf92d7c6e6b8124d33cbeea", + "x-ms-correlation-request-id": "eb5e00f9-4446-4ffb-9d21-cefb7dd742a1", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "7ddb8e67-529e-4213-8efc-f64151aec9f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064923Z:eb5e00f9-4446-4ffb-9d21-cefb7dd742a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2dc22606bba05b65072b9b92ff4da6d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd34e2ff-11df-4703-82fe-a667324a5f70", + "x-ms-client-request-id": "2dc22606bba05b65072b9b92ff4da6d9", + "x-ms-correlation-request-id": "eb6a2220-9cfc-4683-a83e-3e67010ac880", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "82d5445c-876f-4233-ab6e-857b288429f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064924Z:eb6a2220-9cfc-4683-a83e-3e67010ac880" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3017da63a88e57d1933295bb68505f5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05ce8c2b-60ee-46a5-85b6-72c876061094", + "x-ms-client-request-id": "3017da63a88e57d1933295bb68505f5a", + "x-ms-correlation-request-id": "43ae238a-4ded-4c03-803b-71a2437edc70", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "75090054-bb0a-4b96-b2f8-0521174e1bc5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064925Z:43ae238a-4ded-4c03-803b-71a2437edc70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e55da8e68cc1bca95b218fce5fe92e20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ecc89a06-971f-42c0-ab0e-92ff01e35749", + "x-ms-client-request-id": "e55da8e68cc1bca95b218fce5fe92e20", + "x-ms-correlation-request-id": "b2a4d30d-ab76-4ceb-9b96-6c3e0fed4560", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "8807bd72-e2ae-47aa-a132-7a58a89bc871", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064927Z:b2a4d30d-ab76-4ceb-9b96-6c3e0fed4560" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8c1a7c58e245e5c556a9a6d26a9f3b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fdd8859f-24b3-4e1f-b14d-6d332abd9ecc", + "x-ms-client-request-id": "f8c1a7c58e245e5c556a9a6d26a9f3b6", + "x-ms-correlation-request-id": "a2390cdb-6c82-4e91-b328-abdb65c61299", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "73b9ff1e-8575-411d-a585-7f13bddc71d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064928Z:a2390cdb-6c82-4e91-b328-abdb65c61299" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57ac41cbc0f0d618305bd46c1803f7aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0957d35-b500-4284-b0f3-ba5f4c3c1e69", + "x-ms-client-request-id": "57ac41cbc0f0d618305bd46c1803f7aa", + "x-ms-correlation-request-id": "161bb6bb-7643-45ba-8e90-91638cd2135f", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "b5af5fa4-8a56-4d01-96fc-ed28fe6d7685", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064929Z:161bb6bb-7643-45ba-8e90-91638cd2135f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0f67404668e58354bff9056f23c96b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bd834c8-ad15-41fa-8873-e861517e0ada", + "x-ms-client-request-id": "c0f67404668e58354bff9056f23c96b2", + "x-ms-correlation-request-id": "aa2c7bb5-0676-46f3-9d3f-e5a1f4fe6d22", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "76a78f62-3926-461f-91a7-0d27ba57a49a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064931Z:aa2c7bb5-0676-46f3-9d3f-e5a1f4fe6d22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d02d82dd63d04308febc8c9b9ef4552", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b35910e-5439-4543-aaa9-d402ecd459c4", + "x-ms-client-request-id": "1d02d82dd63d04308febc8c9b9ef4552", + "x-ms-correlation-request-id": "c477c285-0298-4fd7-b1a9-bd4e63cfb60b", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "d2697277-71c8-43ea-b446-aca61bad4e94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064932Z:c477c285-0298-4fd7-b1a9-bd4e63cfb60b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b168f07232b365280c530bf130c1e3f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29eb9932-8db3-4729-bf9f-5da25eb9e51c", + "x-ms-client-request-id": "b168f07232b365280c530bf130c1e3f3", + "x-ms-correlation-request-id": "ffafb06c-15a9-4fdb-9ade-3fb18993e5e4", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "156872c4-745e-44cd-890f-bd32282f130d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064933Z:ffafb06c-15a9-4fdb-9ade-3fb18993e5e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f3f21c4d9002e6c44f131a39e6b9e5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95c0bbb2-8a4f-4e66-9923-b53a2bae7870", + "x-ms-client-request-id": "3f3f21c4d9002e6c44f131a39e6b9e5c", + "x-ms-correlation-request-id": "102e8966-6313-4767-aef0-52d9604bef69", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "bfbe71f7-8b8c-4143-b8a7-8771cae0cabc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064935Z:102e8966-6313-4767-aef0-52d9604bef69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02e33db9e4d4fbffb09d11e9cb3ed4ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f44354ae-f997-495e-91da-e95499a05583", + "x-ms-client-request-id": "02e33db9e4d4fbffb09d11e9cb3ed4ce", + "x-ms-correlation-request-id": "c26ec273-9808-451c-aae3-69e5b97c8660", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "41227050-d82f-4c7d-9d86-f126bf8993c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064936Z:c26ec273-9808-451c-aae3-69e5b97c8660" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9804d40705b09951833a6cc10185c7a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "881913ae-5ea9-445c-9a31-5397eb4e0a96", + "x-ms-client-request-id": "9804d40705b09951833a6cc10185c7a1", + "x-ms-correlation-request-id": "0194c506-34dd-4cb4-9e0d-a2576e67088c", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "e72098dd-6b97-4086-8acf-122f45958163", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064937Z:0194c506-34dd-4cb4-9e0d-a2576e67088c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f337afb5e1dde01f22438f63c8836206", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c0cbef9-ab82-4fc9-b3be-e739745fcdc0", + "x-ms-client-request-id": "f337afb5e1dde01f22438f63c8836206", + "x-ms-correlation-request-id": "87516821-7341-4838-9497-2f240d3f0116", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "b01be899-4d28-4c48-be7a-4c79f61db347", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064938Z:87516821-7341-4838-9497-2f240d3f0116" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c99b631c0666b4abeb4a7f99783df92b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce22906d-36b9-4d57-97a0-80805e1cd5ac", + "x-ms-client-request-id": "c99b631c0666b4abeb4a7f99783df92b", + "x-ms-correlation-request-id": "2475227b-357b-4827-ac46-dbdde5e8a04a", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "546056c6-16a1-496a-8423-d9561b91794d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064940Z:2475227b-357b-4827-ac46-dbdde5e8a04a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b3370d5e10625f0b424766c75eed0ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af39f1a2-458d-4321-a572-c7df66155749", + "x-ms-client-request-id": "1b3370d5e10625f0b424766c75eed0ff", + "x-ms-correlation-request-id": "1ce02c87-dfec-49c0-8c7d-859fe6347ea4", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "32a69900-1d33-4ded-8dc1-1f7d56652b27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064941Z:1ce02c87-dfec-49c0-8c7d-859fe6347ea4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ea566d7fde9af3a04830792628667e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16571afb-c3d3-4171-b2ae-e03f36760e78", + "x-ms-client-request-id": "9ea566d7fde9af3a04830792628667e4", + "x-ms-correlation-request-id": "b7243c54-ea55-486a-8a31-ccbc2fe23369", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "7278ea0f-7b59-4e3a-9a17-e28cce3671b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064942Z:b7243c54-ea55-486a-8a31-ccbc2fe23369" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "588d644a474f3bff727515428f3e3efd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "124186ce-d191-44b3-8be4-dabd91563458", + "x-ms-client-request-id": "588d644a474f3bff727515428f3e3efd", + "x-ms-correlation-request-id": "a60b5b19-6fc3-4605-b9ba-d5fa048da956", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "a95e9498-4ebe-46fb-92e8-86ed98f3b802", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064944Z:a60b5b19-6fc3-4605-b9ba-d5fa048da956" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11c17f7a5b98d84236841783d95dc32d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c14e33e-fa31-401a-874e-d82e1307e030", + "x-ms-client-request-id": "11c17f7a5b98d84236841783d95dc32d", + "x-ms-correlation-request-id": "78360a1c-55f9-4c24-a62d-d585cb704b06", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "a41990f4-71a9-489d-9297-bc07d5770b3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064945Z:78360a1c-55f9-4c24-a62d-d585cb704b06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "112291bc776190af67692b73e7f81fc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "843ad23a-8d91-42e6-a217-536da63796cc", + "x-ms-client-request-id": "112291bc776190af67692b73e7f81fc5", + "x-ms-correlation-request-id": "db01bb32-986d-4f74-beba-7edbebb04d32", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "3c40cfb1-5825-494e-a295-2c6e4fc768e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064946Z:db01bb32-986d-4f74-beba-7edbebb04d32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2180a4456c4ef4c21b422ca2f7c6115", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5027a19-0ca5-41c9-a916-fb0fe6e363d8", + "x-ms-client-request-id": "e2180a4456c4ef4c21b422ca2f7c6115", + "x-ms-correlation-request-id": "f48aad65-cd18-49e8-a3dd-dfaa558740cc", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "01e9c2c9-4a19-44da-89e6-da81478cbdf7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064947Z:f48aad65-cd18-49e8-a3dd-dfaa558740cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe85e7b22c1b029bcf31aa2f2fcef03e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1139d37e-e5d1-4458-a888-abe608dac703", + "x-ms-client-request-id": "fe85e7b22c1b029bcf31aa2f2fcef03e", + "x-ms-correlation-request-id": "bcf9240e-4426-4e2c-aef3-5041317bf291", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "ec0e6154-aa3d-439e-976a-1a4005e577ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064949Z:bcf9240e-4426-4e2c-aef3-5041317bf291" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf3e5265e14466694533efac55e560ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe86eb15-6cab-4559-9c9c-5f292172017f", + "x-ms-client-request-id": "cf3e5265e14466694533efac55e560ea", + "x-ms-correlation-request-id": "0cbbfad1-729c-4e66-8dbc-de406f0e6c41", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "17face43-7974-4f93-86b6-3f2c8b085cb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064950Z:0cbbfad1-729c-4e66-8dbc-de406f0e6c41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00c11607217217a96e161293ac1dbf53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38576e60-1e84-4352-86d9-972c63469ef2", + "x-ms-client-request-id": "00c11607217217a96e161293ac1dbf53", + "x-ms-correlation-request-id": "1dbad977-ff48-4fda-af6a-da97e0556310", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "3ebbf140-6298-4ebc-a531-0cb594819d82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064951Z:1dbad977-ff48-4fda-af6a-da97e0556310" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd65e4c4923dd0d07e1fb8e83defacea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9078b27d-b2ae-46b5-8793-58f510a9dfc9", + "x-ms-client-request-id": "dd65e4c4923dd0d07e1fb8e83defacea", + "x-ms-correlation-request-id": "71b71c29-15b9-4feb-abb3-0eeacc04627a", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "f30cf0cd-a729-4cb4-af32-0aab2a2ccfe0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064953Z:71b71c29-15b9-4feb-abb3-0eeacc04627a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1827bfd0f00d44cba827612ecfd5b928", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f85ee14c-298f-45c5-87a0-d6393fde835c", + "x-ms-client-request-id": "1827bfd0f00d44cba827612ecfd5b928", + "x-ms-correlation-request-id": "4abab591-24e4-45d4-b968-6054d1620e7d", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "3a9a0681-f581-41bc-9893-ad77aaca6a6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064954Z:4abab591-24e4-45d4-b968-6054d1620e7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71e79c73837f75ad46f0815368c1da7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b230f92-16c1-49f6-92f4-043504255480", + "x-ms-client-request-id": "71e79c73837f75ad46f0815368c1da7e", + "x-ms-correlation-request-id": "a42a06fd-1d5c-47db-a297-68c75f9b6cd8", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "eed85568-8fc7-4671-b5f4-d3bcfc47f880", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064955Z:a42a06fd-1d5c-47db-a297-68c75f9b6cd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edc32769a7f5d3451821341630a100a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81cb1f1c-bdc2-4b2a-9ff8-a32a40bacb59", + "x-ms-client-request-id": "edc32769a7f5d3451821341630a100a9", + "x-ms-correlation-request-id": "ef7a1b8e-7e8f-4c3c-9d24-8a9778f350c3", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "2a1a7cbe-e26d-4596-84e3-f523bf67cc6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064957Z:ef7a1b8e-7e8f-4c3c-9d24-8a9778f350c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a07490653b084c6b11b2d21c6f77dbe7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a220431b-2c35-4483-b13d-b9cc0f7ff4b0", + "x-ms-client-request-id": "a07490653b084c6b11b2d21c6f77dbe7", + "x-ms-correlation-request-id": "4afd3be7-b56e-4996-a0d0-7b490f7d68cd", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "f29f13c4-749b-4c2f-835f-20a2dd769c28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064958Z:4afd3be7-b56e-4996-a0d0-7b490f7d68cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7c4e34ccc12cc325714585e4f9644a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64a87528-6ee1-41ee-9216-e147bdde1f9a", + "x-ms-client-request-id": "a7c4e34ccc12cc325714585e4f9644a4", + "x-ms-correlation-request-id": "4feaed7a-f4c9-4448-8256-109e1fbfef9d", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "d478c720-5a3d-43c1-8d70-8379eb25b826", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T064959Z:4feaed7a-f4c9-4448-8256-109e1fbfef9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7edd8ef3a4c2e76bc76db43d52864a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:49:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd40348b-50f8-4335-a85b-30a6ffafafc6", + "x-ms-client-request-id": "d7edd8ef3a4c2e76bc76db43d52864a1", + "x-ms-correlation-request-id": "c0a69400-c633-4fa2-a991-c840d541addf", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "d6c59d79-b3d1-40c4-9b28-f5e26ccf6958", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065000Z:c0a69400-c633-4fa2-a991-c840d541addf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dc94c4559dc99965ea849f3e30dfd7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb8f4230-930d-4e6f-b8c1-222c988df255", + "x-ms-client-request-id": "4dc94c4559dc99965ea849f3e30dfd7a", + "x-ms-correlation-request-id": "cca7f86a-638a-403d-b3f8-3c4943de6c58", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "60a09032-e208-4171-b117-ebfaa96f690a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065002Z:cca7f86a-638a-403d-b3f8-3c4943de6c58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "972c2d6d048a129b6c96eb9bf0eef72e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "631f0aa2-77b9-4d67-969c-7d7b8fa2322d", + "x-ms-client-request-id": "972c2d6d048a129b6c96eb9bf0eef72e", + "x-ms-correlation-request-id": "2de1d109-5f95-4fbc-94ea-df28f19e2209", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "f2f75496-3a1c-440c-af8c-139505be8560", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065003Z:2de1d109-5f95-4fbc-94ea-df28f19e2209" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0218b7b0f6cc96c7415479a4f1824baf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb2b0c3c-8dc5-4827-b8b6-ac0f2ddbff70", + "x-ms-client-request-id": "0218b7b0f6cc96c7415479a4f1824baf", + "x-ms-correlation-request-id": "4a8407e8-c74c-4793-a061-12b58a686481", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "07c241db-5eff-4ab1-9365-2961d9092539", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065004Z:4a8407e8-c74c-4793-a061-12b58a686481" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7d66079cdfc4116b1b7e1466dfaa86f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63cf8f1b-5b53-44f6-be0d-2eef18e29d22", + "x-ms-client-request-id": "a7d66079cdfc4116b1b7e1466dfaa86f", + "x-ms-correlation-request-id": "0d40e505-2c7e-42e8-b9b6-92a880181aeb", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "7eca294c-ac5d-4e8b-846e-f184b141445d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065006Z:0d40e505-2c7e-42e8-b9b6-92a880181aeb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b431ab1fbf476ae659555358af721ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c51468a-c4c3-4aae-b077-5cf1804f144b", + "x-ms-client-request-id": "2b431ab1fbf476ae659555358af721ea", + "x-ms-correlation-request-id": "c3d6ce1b-86a6-4f5d-9890-0f9f4425b484", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "1b995ecb-7eac-464f-bd24-71a8b9890f1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065007Z:c3d6ce1b-86a6-4f5d-9890-0f9f4425b484" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90223c4b4f18e231a0d7501515812946", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5568d7e5-a6fe-4171-92b1-658bd49f490f", + "x-ms-client-request-id": "90223c4b4f18e231a0d7501515812946", + "x-ms-correlation-request-id": "157b6342-457e-4d22-b897-0e2c0bf082f1", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "19e89490-10f1-4c76-a9f6-d8ca2cbbaf1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065008Z:157b6342-457e-4d22-b897-0e2c0bf082f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6f20aac1f3e7dbab25f416677e1b6ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2f9014c-77ad-4f1d-b18b-3c686d0344af", + "x-ms-client-request-id": "d6f20aac1f3e7dbab25f416677e1b6ba", + "x-ms-correlation-request-id": "52b60f53-2733-410c-8352-58b60b75d68e", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "c9f422ba-cba6-465c-a5c1-46278ba01b35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065010Z:52b60f53-2733-410c-8352-58b60b75d68e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30faf69617d76156e8608b1dab9860e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc91026f-3120-4015-ae87-b361a0d08207", + "x-ms-client-request-id": "30faf69617d76156e8608b1dab9860e4", + "x-ms-correlation-request-id": "e2c64f0e-a3e9-45e9-be40-7ab85183ffd8", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "aef8b36b-49e7-4302-a553-ed7fd3f84b3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065011Z:e2c64f0e-a3e9-45e9-be40-7ab85183ffd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80890e6c4a042bab82a5deb80dcb6bbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f641685c-1f26-4206-947e-8e9a7e98faf7", + "x-ms-client-request-id": "80890e6c4a042bab82a5deb80dcb6bbf", + "x-ms-correlation-request-id": "b0a13200-868d-408e-a4a4-d98e96ce7d53", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "b76d47c1-195b-4a6b-a44c-9a641de3ee4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065012Z:b0a13200-868d-408e-a4a4-d98e96ce7d53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e7e9520f887946eb391eddd949cd219", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9f3cec3-404f-4347-ba2c-dfe9969b2246", + "x-ms-client-request-id": "1e7e9520f887946eb391eddd949cd219", + "x-ms-correlation-request-id": "65037dd1-53df-4323-9b01-fab92ea9ec51", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "8cb381d5-1423-4464-901d-539d1616f30e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065013Z:65037dd1-53df-4323-9b01-fab92ea9ec51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68fa5dff36574bb64bceae32399d531d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5e239fe-9c5a-4ea5-a394-39e265c1e458", + "x-ms-client-request-id": "68fa5dff36574bb64bceae32399d531d", + "x-ms-correlation-request-id": "7834ec4c-ec2e-4f74-b137-bd489c8f8ca8", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "9e23b2bf-2607-4afb-bd8b-f1a278d4a3c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065015Z:7834ec4c-ec2e-4f74-b137-bd489c8f8ca8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15fdcbf54119735c9ff5cc735dcd97e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f0ddf10-8345-4268-a2c2-3c425cb4a57f", + "x-ms-client-request-id": "15fdcbf54119735c9ff5cc735dcd97e5", + "x-ms-correlation-request-id": "2882b4b2-d0d5-4ae4-8eb3-61cc703188d8", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "1c44e8ab-db37-44a6-b8de-c7d0ddf31741", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065016Z:2882b4b2-d0d5-4ae4-8eb3-61cc703188d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0b9c4d203d0e968df33d3b84a3c5b15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a81ef039-9209-431f-9598-e7004e80422f", + "x-ms-client-request-id": "b0b9c4d203d0e968df33d3b84a3c5b15", + "x-ms-correlation-request-id": "744309dc-0882-4396-9626-7e286f298c67", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "82dbc797-1f34-4b00-ad1f-eaa237c322be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065018Z:744309dc-0882-4396-9626-7e286f298c67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8e8d03dbc9fbdff0086c8626a42ee7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6458a8f4-35dc-4868-a924-0e1497a1ba82", + "x-ms-client-request-id": "c8e8d03dbc9fbdff0086c8626a42ee7e", + "x-ms-correlation-request-id": "433bb389-91cd-47d2-b513-caba71234287", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "f1177c5a-dc5b-4073-bf79-2a05f38d3999", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065019Z:433bb389-91cd-47d2-b513-caba71234287" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "745fc936a3e4f24c631336e66ea42963", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86d2dec4-74c9-4ab4-bf90-f45a01fe7754", + "x-ms-client-request-id": "745fc936a3e4f24c631336e66ea42963", + "x-ms-correlation-request-id": "3c78bf10-dc78-4c9e-a738-6421c18e90cf", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "261008f1-1ff9-4375-863f-75aa1947019c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065020Z:3c78bf10-dc78-4c9e-a738-6421c18e90cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d36b69acfe41545c4fcaf493a057f9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a294c6b9-6a1d-4bf2-ac39-a4a825db7bfc", + "x-ms-client-request-id": "8d36b69acfe41545c4fcaf493a057f9c", + "x-ms-correlation-request-id": "fbfab3f0-e0f7-440a-8d7f-3ba24b2db287", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "e3713584-35be-4123-9bfd-f02b8219aafd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065022Z:fbfab3f0-e0f7-440a-8d7f-3ba24b2db287" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80815544e6dc993183f6648c86194f5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31f5552d-364d-445c-b5ee-61aaa5a2f6f2", + "x-ms-client-request-id": "80815544e6dc993183f6648c86194f5c", + "x-ms-correlation-request-id": "2ee92213-9e23-4255-9ae4-30eb728b72ba", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "6d0ddf6a-d171-4514-b918-8e30990a287f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065023Z:2ee92213-9e23-4255-9ae4-30eb728b72ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4c8645d610c67998349b0e8f402b75e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5905b3ef-929b-47c1-b4a7-fdce8c3b43b5", + "x-ms-client-request-id": "b4c8645d610c67998349b0e8f402b75e", + "x-ms-correlation-request-id": "69c3993d-50bb-4830-93db-a41d773fffe3", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "968aea6e-72d0-4260-ab2d-851a70a46ca1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065024Z:69c3993d-50bb-4830-93db-a41d773fffe3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18a19994a822b387849c09ee6ab98fab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a4f7002-2476-4d36-9be0-f0c280e4dddb", + "x-ms-client-request-id": "18a19994a822b387849c09ee6ab98fab", + "x-ms-correlation-request-id": "8dff98cb-8144-4641-90e6-23f2cf960750", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "0347a43d-9a30-4da6-80aa-00b29d07b575", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065026Z:8dff98cb-8144-4641-90e6-23f2cf960750" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5ec53acca3de38fbc19fd923649a580", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c3183fe-2d73-456e-ae9f-0a98c93a87cb", + "x-ms-client-request-id": "d5ec53acca3de38fbc19fd923649a580", + "x-ms-correlation-request-id": "cb146dd8-2095-42c3-9883-a92ac627c42c", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "74b295fd-df16-411a-bc47-8d5c7ca7aa35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065027Z:cb146dd8-2095-42c3-9883-a92ac627c42c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edf7063e3677b439dd142f7057aafdc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b34b0ee5-f6be-47b2-9bb2-df0d7f3b5540", + "x-ms-client-request-id": "edf7063e3677b439dd142f7057aafdc9", + "x-ms-correlation-request-id": "eef484c1-02dc-47b4-977a-9071e868fd84", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "cc95624a-f47a-4457-a628-0d12b3c99cfb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065028Z:eef484c1-02dc-47b4-977a-9071e868fd84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a13b04bae216c92009be5c08abf47d3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca376c5b-8b05-4828-b6eb-8b88b95471f6", + "x-ms-client-request-id": "a13b04bae216c92009be5c08abf47d3b", + "x-ms-correlation-request-id": "d560abe9-9ea9-4b92-a47d-cc7db4d15009", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "2766dcf4-2f76-462f-bf09-098c80f9c1ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065030Z:d560abe9-9ea9-4b92-a47d-cc7db4d15009" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63af89f6a1c276331938f7289b1f8b11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31af1ead-c73f-4549-8861-ca419a3fc80f", + "x-ms-client-request-id": "63af89f6a1c276331938f7289b1f8b11", + "x-ms-correlation-request-id": "cb67bf42-4a88-46b3-9d23-d2462f9cf6ce", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "86594424-3707-45e9-b1b0-c5eae7bd1a06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065031Z:cb67bf42-4a88-46b3-9d23-d2462f9cf6ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31d8331c040d5c69e52de3b9d93009e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d8bb304-c5a9-4a5b-a394-844201e9364f", + "x-ms-client-request-id": "31d8331c040d5c69e52de3b9d93009e9", + "x-ms-correlation-request-id": "99d12dcd-ad94-4e49-a637-d3c308728679", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "3817e479-b31c-4a16-baa6-f5c7162cb55e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065032Z:99d12dcd-ad94-4e49-a637-d3c308728679" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd79f39699fb1807d1c487ddeaf72eea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "70a86f57-1c5f-447d-8ec1-5af00510470f", + "x-ms-client-request-id": "cd79f39699fb1807d1c487ddeaf72eea", + "x-ms-correlation-request-id": "4bed0fec-4c05-49d8-84f3-40064920ac8c", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "54f3da45-199d-4c7d-8f7d-a24d15ea616e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065033Z:4bed0fec-4c05-49d8-84f3-40064920ac8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77ec4b324c1bf22d1f537d94be799de8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4df2f9e-7be3-4760-8026-17720013696c", + "x-ms-client-request-id": "77ec4b324c1bf22d1f537d94be799de8", + "x-ms-correlation-request-id": "04a0ab56-6d7e-45cf-a306-3cd860ca517b", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "6b2a84bb-1553-468c-b15c-14e48fe82244", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065035Z:04a0ab56-6d7e-45cf-a306-3cd860ca517b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8920d2fbea582162cbf5f497c8c71ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d218eeb-5903-4f24-ba51-e5c22649e667", + "x-ms-client-request-id": "a8920d2fbea582162cbf5f497c8c71ed", + "x-ms-correlation-request-id": "c0ca58f6-5023-4fce-8ce2-7a3df606a942", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "ec633467-1784-4dc4-bfe5-891a1382061a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065036Z:c0ca58f6-5023-4fce-8ce2-7a3df606a942" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e87f8ff91444acdc587ada71b735a58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72744dc2-2934-45ea-a254-3bcc2dfa3678", + "x-ms-client-request-id": "8e87f8ff91444acdc587ada71b735a58", + "x-ms-correlation-request-id": "f28c9014-7786-4351-85f4-34dab4737676", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "d5747bab-84ff-48f6-a746-9d4bd7134c7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065038Z:f28c9014-7786-4351-85f4-34dab4737676" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dcae9f278665744535694a5cece47593", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14e1784e-da90-43b2-acfc-cb23ed14e42c", + "x-ms-client-request-id": "dcae9f278665744535694a5cece47593", + "x-ms-correlation-request-id": "09f8b33f-513d-4f31-8106-711be2f5e9d8", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "ca7ed5b9-3d0b-4c27-8f27-3f61c0b8c792", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065039Z:09f8b33f-513d-4f31-8106-711be2f5e9d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5948fe10ff29da34048e21e106e67b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e64665d-ff44-404a-942e-516df4cb99fe", + "x-ms-client-request-id": "c5948fe10ff29da34048e21e106e67b9", + "x-ms-correlation-request-id": "2224b87c-5c3f-4206-9912-85b224a0d379", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "a0cff537-8166-4779-8e6a-76b3fe67bae8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065040Z:2224b87c-5c3f-4206-9912-85b224a0d379" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd21076595dd7988b31358db47715de0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c2673f4-5cd6-4a46-aa82-e55028533c93", + "x-ms-client-request-id": "dd21076595dd7988b31358db47715de0", + "x-ms-correlation-request-id": "30c26548-35e3-4386-9823-a329c9b2ba1a", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "db829c78-054a-4efd-914e-b7d0e0cfa84f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065042Z:30c26548-35e3-4386-9823-a329c9b2ba1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cc61a1195de1865fb109c1da32664c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f15697d-642c-4e90-9428-9407f21df379", + "x-ms-client-request-id": "8cc61a1195de1865fb109c1da32664c7", + "x-ms-correlation-request-id": "9a2a04c7-c820-4172-8ccf-b312f3dfe699", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "6f2ce416-66a0-4a7a-ae51-418898480031", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065043Z:9a2a04c7-c820-4172-8ccf-b312f3dfe699" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5f7910297c34cb5071a11dfb6c856ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d7e6b16-9140-4766-81b9-66fab9697a28", + "x-ms-client-request-id": "e5f7910297c34cb5071a11dfb6c856ce", + "x-ms-correlation-request-id": "3d9e8f29-edbf-4eac-a1ef-d5706eb114d8", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "b77ad48d-85fe-4fc8-99ff-b8d820b1653c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065044Z:3d9e8f29-edbf-4eac-a1ef-d5706eb114d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f50c01eadba8cfdba108e2cdf86ad68d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d83cfb35-4c6b-48d5-b3f0-abdabfcfafc4", + "x-ms-client-request-id": "f50c01eadba8cfdba108e2cdf86ad68d", + "x-ms-correlation-request-id": "b8ff8c84-e3bc-4d92-bc09-9eed9822fa82", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "7b161cdf-7e73-4b08-9649-6ff2e9561e3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065045Z:b8ff8c84-e3bc-4d92-bc09-9eed9822fa82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b5d991ae777a7a1d647984c383866233", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e31d0646-bbf8-49f3-b085-71ca7319cb69", + "x-ms-client-request-id": "b5d991ae777a7a1d647984c383866233", + "x-ms-correlation-request-id": "f448a083-6b6c-4a7c-9708-3c8145e3f614", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "789eb2d7-79e8-4591-80e9-448fa3c886ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065047Z:f448a083-6b6c-4a7c-9708-3c8145e3f614" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a132cdba6e1a271fb62743bab5e8549d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc933a56-d90a-4516-ae40-8e30dfdee440", + "x-ms-client-request-id": "a132cdba6e1a271fb62743bab5e8549d", + "x-ms-correlation-request-id": "1cfac5a7-aef8-4bc8-9bde-eeea912acc4f", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "04945906-726c-4385-a45d-a43639a42c25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065048Z:1cfac5a7-aef8-4bc8-9bde-eeea912acc4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25308444a0ee7254e492912e56174c1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8a01260-4262-47b9-9708-2a668fa0d140", + "x-ms-client-request-id": "25308444a0ee7254e492912e56174c1a", + "x-ms-correlation-request-id": "d2909871-9455-4bc1-9a4e-1214b6323b3b", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "73f161c7-2332-45ad-a604-5146bdde2555", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065049Z:d2909871-9455-4bc1-9a4e-1214b6323b3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a12afa63437407372b2ff523462c57c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0066c66c-df55-4a91-8fa0-b37a53532171", + "x-ms-client-request-id": "2a12afa63437407372b2ff523462c57c", + "x-ms-correlation-request-id": "3fc165e4-741f-4d57-bb14-d0601f18f0a3", + "x-ms-ratelimit-remaining-subscription-reads": "11548", + "x-ms-request-id": "6ebfe78c-4dc9-4ca8-b04b-be96db4f7cef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065050Z:3fc165e4-741f-4d57-bb14-d0601f18f0a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff7ee7253c561a4478c0bd87ddf0d09e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61722a0c-8df4-4b34-b921-3a57bdbcc418", + "x-ms-client-request-id": "ff7ee7253c561a4478c0bd87ddf0d09e", + "x-ms-correlation-request-id": "da7a4446-964b-49b7-96a8-61add9b393f8", + "x-ms-ratelimit-remaining-subscription-reads": "11547", + "x-ms-request-id": "e175697d-ba66-4087-a97c-d4f8cebf26f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065052Z:da7a4446-964b-49b7-96a8-61add9b393f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "051328db29d5106511efb23ca0023e81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd3dc537-4bf0-4a3f-ac7d-bfcfce74c4e8", + "x-ms-client-request-id": "051328db29d5106511efb23ca0023e81", + "x-ms-correlation-request-id": "71cfbd3e-5f8a-4369-8638-31beb266758f", + "x-ms-ratelimit-remaining-subscription-reads": "11546", + "x-ms-request-id": "5eb698b0-b8d8-424a-9be3-420c239a3fde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065053Z:71cfbd3e-5f8a-4369-8638-31beb266758f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f0915cd4d986ac46af8b27777eb6382", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2b0df3e-c468-4088-9c67-dea3892f678d", + "x-ms-client-request-id": "6f0915cd4d986ac46af8b27777eb6382", + "x-ms-correlation-request-id": "8780cd7d-8663-4a1b-80d2-17f1d7d7667d", + "x-ms-ratelimit-remaining-subscription-reads": "11545", + "x-ms-request-id": "796642c0-c98c-4ca8-8e6a-5d53c388c5ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065054Z:8780cd7d-8663-4a1b-80d2-17f1d7d7667d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b7761e2bf4efca6816eed6689087976", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f85b581-2c23-4884-a589-77430a0bc03c", + "x-ms-client-request-id": "0b7761e2bf4efca6816eed6689087976", + "x-ms-correlation-request-id": "c6bd989a-9582-49a7-943b-d089a1685c23", + "x-ms-ratelimit-remaining-subscription-reads": "11544", + "x-ms-request-id": "581b37ff-24ec-45cb-acff-8ae13c5a8b82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065056Z:c6bd989a-9582-49a7-943b-d089a1685c23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8ba3b8160e68d0564a99add77ee9826", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88264f1c-6471-49cd-a3ff-ef5a2a7ffd7c", + "x-ms-client-request-id": "c8ba3b8160e68d0564a99add77ee9826", + "x-ms-correlation-request-id": "48fd8679-bcc7-4d92-86d9-3ab1598a3904", + "x-ms-ratelimit-remaining-subscription-reads": "11543", + "x-ms-request-id": "6e6c2c15-5b91-409e-9746-290a6335835c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065057Z:48fd8679-bcc7-4d92-86d9-3ab1598a3904" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f5a308c328a0d336e0dee2a5f5de062", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66a89666-8757-4da6-85b8-06a004d54b9d", + "x-ms-client-request-id": "3f5a308c328a0d336e0dee2a5f5de062", + "x-ms-correlation-request-id": "59de7b87-7853-4eb6-be78-77906c3e5983", + "x-ms-ratelimit-remaining-subscription-reads": "11542", + "x-ms-request-id": "f717e3b3-6d1b-4c79-b950-0021a0169b76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065058Z:59de7b87-7853-4eb6-be78-77906c3e5983" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cf53b7f9b30819b5be9a7a524c98492", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:50:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a05d11e3-035f-4556-8884-13830689f3e0", + "x-ms-client-request-id": "3cf53b7f9b30819b5be9a7a524c98492", + "x-ms-correlation-request-id": "ac6d30e4-073b-412c-b9da-dc6f4c7fe30f", + "x-ms-ratelimit-remaining-subscription-reads": "11541", + "x-ms-request-id": "69d5449a-069c-4869-8235-3e83f3b25f6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065059Z:ac6d30e4-073b-412c-b9da-dc6f4c7fe30f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59dac7d53aae4eeb08ac59d972db2e06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06efd735-0e7a-4221-bfdf-fc2f4fb29ff6", + "x-ms-client-request-id": "59dac7d53aae4eeb08ac59d972db2e06", + "x-ms-correlation-request-id": "bf712363-4e36-40af-9591-a9e0c49fcf53", + "x-ms-ratelimit-remaining-subscription-reads": "11540", + "x-ms-request-id": "3fa4ea42-221a-496c-a2cf-77daca4d5640", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065101Z:bf712363-4e36-40af-9591-a9e0c49fcf53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b5e38c95cf8f1f595d9e3a18b8de9a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2c60e28-162c-4c55-9813-8c7804da5449", + "x-ms-client-request-id": "3b5e38c95cf8f1f595d9e3a18b8de9a5", + "x-ms-correlation-request-id": "9c74b1d2-6c62-43ef-b345-40207404edcf", + "x-ms-ratelimit-remaining-subscription-reads": "11539", + "x-ms-request-id": "1d8fa43a-5f67-4806-b584-5e54b41786c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065102Z:9c74b1d2-6c62-43ef-b345-40207404edcf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97545b88868345b34fa6338442c10e80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7b4a00a-e3e5-4a11-805e-9635c96c4cd0", + "x-ms-client-request-id": "97545b88868345b34fa6338442c10e80", + "x-ms-correlation-request-id": "05dd5aad-55d5-4384-b2c0-12c57ad9e21d", + "x-ms-ratelimit-remaining-subscription-reads": "11538", + "x-ms-request-id": "3ef01974-5635-4054-936b-0004c7698a8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065103Z:05dd5aad-55d5-4384-b2c0-12c57ad9e21d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebdba1bb496a789ad2e9c3d5564ac37a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "410dee5f-1c92-46b5-a1b3-b133ebdded9a", + "x-ms-client-request-id": "ebdba1bb496a789ad2e9c3d5564ac37a", + "x-ms-correlation-request-id": "51577e61-3f46-4e48-a30b-a85b8555b7c1", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "4e230348-bb19-423d-bd8f-82132cea4df8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065105Z:51577e61-3f46-4e48-a30b-a85b8555b7c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1750b3c3968642828518eb522870aed3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c87c6c04-d1aa-4e9c-b516-a3cd9a41226c", + "x-ms-client-request-id": "1750b3c3968642828518eb522870aed3", + "x-ms-correlation-request-id": "6b21d7de-7ecc-4da5-9620-210da2fd926f", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "d7bcc3ec-2eba-43a3-a72b-8a51ac61cb1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065106Z:6b21d7de-7ecc-4da5-9620-210da2fd926f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9e663cafdb23f3ac1dbc59ac3deee05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98ef7a47-185e-4791-9d6d-abb221afdcb5", + "x-ms-client-request-id": "e9e663cafdb23f3ac1dbc59ac3deee05", + "x-ms-correlation-request-id": "98481bc5-e1fe-47a2-8fec-8d6a3a9e211c", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "6c6c168d-a3a1-49f5-bc0a-6b70dc1cfb3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065107Z:98481bc5-e1fe-47a2-8fec-8d6a3a9e211c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ec1b9e2f67124f91e9866525d474f61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3998a4fe-3a3b-42c0-b20c-60e0847b7c87", + "x-ms-client-request-id": "8ec1b9e2f67124f91e9866525d474f61", + "x-ms-correlation-request-id": "05ebf6eb-9dce-4e4f-a68d-44478a61cfea", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "c9d89f65-ad9e-41f1-a9e3-d819b4c166c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065109Z:05ebf6eb-9dce-4e4f-a68d-44478a61cfea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f20af03ad964c5c8781156abd1e87fa7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "090c1ba0-254b-416c-96bb-62633b0dcb9c", + "x-ms-client-request-id": "f20af03ad964c5c8781156abd1e87fa7", + "x-ms-correlation-request-id": "d2b65a1c-f2bd-410e-81f8-81553b35bae5", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "96b10502-5a97-45b3-a06f-93913cdccfd1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065110Z:d2b65a1c-f2bd-410e-81f8-81553b35bae5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f6fe62a20afd4626ac1cb1997e8e179", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d4cbee0-1b2a-4f44-a821-780840782db4", + "x-ms-client-request-id": "6f6fe62a20afd4626ac1cb1997e8e179", + "x-ms-correlation-request-id": "7b3cc9d2-9805-4521-9f66-6ea4e9fa94c0", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "b92ba3bc-cb3d-4d81-9b53-2657a6363a5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065111Z:7b3cc9d2-9805-4521-9f66-6ea4e9fa94c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d360638bfbd308a1f1fc165fa04e5236", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3818a99b-1caf-4c45-bbfb-c3d4b14d5149", + "x-ms-client-request-id": "d360638bfbd308a1f1fc165fa04e5236", + "x-ms-correlation-request-id": "be32e8e0-11db-48d8-b24a-1700affa3cf4", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "fb6c8ede-2e6f-4a4a-b90d-390bfec8b222", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065113Z:be32e8e0-11db-48d8-b24a-1700affa3cf4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7727bf19e0d81ab28d3688a20eae2d8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60369863-f47f-4a62-b910-cabf16078820", + "x-ms-client-request-id": "7727bf19e0d81ab28d3688a20eae2d8f", + "x-ms-correlation-request-id": "3579ac7a-6e7e-4af9-b16a-05f5d036f2f4", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "335d34d2-7589-4714-87b9-34738042791c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065115Z:3579ac7a-6e7e-4af9-b16a-05f5d036f2f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e1fdd30ac882ed345667db30903341b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98924d96-366e-4ee5-a8dd-cbcf028aad88", + "x-ms-client-request-id": "6e1fdd30ac882ed345667db30903341b", + "x-ms-correlation-request-id": "86980f4d-4d9d-4524-a3d8-76395b2560f0", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "3fcf8493-5acf-4fe4-961a-1c16197f39ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065116Z:86980f4d-4d9d-4524-a3d8-76395b2560f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d800956f69c1aba0b146459c72fefa42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cc4caca-6efc-4c76-a556-d4133a0cb7b2", + "x-ms-client-request-id": "d800956f69c1aba0b146459c72fefa42", + "x-ms-correlation-request-id": "0be0705a-c06a-4d4a-9671-ccae84a61ad8", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "bbbd0dc8-b38f-4717-88d5-d095e737a3d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065117Z:0be0705a-c06a-4d4a-9671-ccae84a61ad8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c22e86cee42f6caeebf8327162fe108a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a3420c2-b483-42cf-8d66-e7255280dec8", + "x-ms-client-request-id": "c22e86cee42f6caeebf8327162fe108a", + "x-ms-correlation-request-id": "8da58b00-5092-48d0-b85d-ef6260acbbf3", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "da0b696f-7ff6-43be-a850-451d6ab61104", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065118Z:8da58b00-5092-48d0-b85d-ef6260acbbf3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79336c0254aec7ce3c73bd416737bb46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3102224-b623-4987-925a-d17966fdf1a2", + "x-ms-client-request-id": "79336c0254aec7ce3c73bd416737bb46", + "x-ms-correlation-request-id": "1002fec4-3900-4399-8917-2f41ecb6c6ce", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "0ff965ea-1cd3-4943-92a6-b8728299a60c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065120Z:1002fec4-3900-4399-8917-2f41ecb6c6ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83e53a6b71d48bece793edc8372e48b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca1131ee-6851-4998-8ea5-ae117d7383f7", + "x-ms-client-request-id": "83e53a6b71d48bece793edc8372e48b2", + "x-ms-correlation-request-id": "97d4259f-71e0-4f14-aa08-5bb6f15c87a1", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "0baa4892-99ab-4fab-a514-e1917d453148", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065121Z:97d4259f-71e0-4f14-aa08-5bb6f15c87a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "069abb3581cb7994b86786bb276c05b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b63404d-ddba-415c-8a73-5ba7be978d10", + "x-ms-client-request-id": "069abb3581cb7994b86786bb276c05b3", + "x-ms-correlation-request-id": "2b4acbd3-10f3-4017-a539-c19cdfcb592c", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "808f6b82-a75d-4e94-a967-14b42cdcd838", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065122Z:2b4acbd3-10f3-4017-a539-c19cdfcb592c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2706eb3d8d1991b580a8921a6706900d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba8b0aaf-9a91-49e0-9116-a76b197b4482", + "x-ms-client-request-id": "2706eb3d8d1991b580a8921a6706900d", + "x-ms-correlation-request-id": "2bc468eb-d24f-4cfe-ad6d-042c7ce9f29e", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "035b1652-c178-4e44-8d32-166a8440131e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065126Z:2bc468eb-d24f-4cfe-ad6d-042c7ce9f29e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac0c0a2bb59dea7ba66bca6dea31637b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84b89ab2-775a-4181-91af-c46f40de153b", + "x-ms-client-request-id": "ac0c0a2bb59dea7ba66bca6dea31637b", + "x-ms-correlation-request-id": "afb5b8e4-768d-4f1f-9e3c-12c0d3bbeb3e", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "063e27de-698a-4624-9ea1-776be6e23af5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065127Z:afb5b8e4-768d-4f1f-9e3c-12c0d3bbeb3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b8b398e2128a89805088523ef7a11b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0f38d39-96d2-4264-a29d-2a0f9e2f04eb", + "x-ms-client-request-id": "4b8b398e2128a89805088523ef7a11b2", + "x-ms-correlation-request-id": "2420fdc3-6411-4d50-b0b1-489f061fe02f", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "36c001e9-70eb-4343-8535-ce2048c39958", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065129Z:2420fdc3-6411-4d50-b0b1-489f061fe02f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c8f79d759608716701b81aec248a64e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f8869f0-5d40-4951-846b-72951dc4fb87", + "x-ms-client-request-id": "1c8f79d759608716701b81aec248a64e", + "x-ms-correlation-request-id": "9baf4d02-9cac-499b-8091-a5c68a513d27", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "04525b01-496d-45ab-aab7-359e26c03472", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065130Z:9baf4d02-9cac-499b-8091-a5c68a513d27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d8b1644447a0ae47163a6942f57fb2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f888d5a-fe2d-4de5-8d0d-83aab808d895", + "x-ms-client-request-id": "2d8b1644447a0ae47163a6942f57fb2b", + "x-ms-correlation-request-id": "68f18e75-7803-44bb-927e-3178e7b6e49d", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "a0f8f66b-fc9f-4162-b9c1-56db2b1b91bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065131Z:68f18e75-7803-44bb-927e-3178e7b6e49d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7196185947a1341b2203da0d9feae6bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "754d9c5c-f9cd-4b5e-81dd-ecf14008cff7", + "x-ms-client-request-id": "7196185947a1341b2203da0d9feae6bd", + "x-ms-correlation-request-id": "e8c45f1f-7ebb-4b8d-8d14-d9c14f0a3c28", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "23fcbcc3-d3ce-4641-984c-33f303cc3ba1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065132Z:e8c45f1f-7ebb-4b8d-8d14-d9c14f0a3c28" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8df3761e4ee92379485aafcb2825718", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a5a9b3c-adb9-4420-a8c4-b0b4d70cf103", + "x-ms-client-request-id": "d8df3761e4ee92379485aafcb2825718", + "x-ms-correlation-request-id": "1a4b926d-3e0e-4c99-bd1f-db21919e5e5e", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "59d47c33-3386-42d9-a609-6840b0f50ba9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065134Z:1a4b926d-3e0e-4c99-bd1f-db21919e5e5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a954562035b2fcacfb570a776ad76a87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2839cc66-0088-46ab-a677-bde3d785e4d1", + "x-ms-client-request-id": "a954562035b2fcacfb570a776ad76a87", + "x-ms-correlation-request-id": "4bcc5dc5-e1fd-41c8-9351-629445d1c105", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "d157b7bb-e810-40b6-97eb-8bc23e0655d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065135Z:4bcc5dc5-e1fd-41c8-9351-629445d1c105" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f832e97c2278753ce103dc1c9d1e82a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6191afc7-4831-4932-90cc-96a7be9a23c8", + "x-ms-client-request-id": "f832e97c2278753ce103dc1c9d1e82a0", + "x-ms-correlation-request-id": "81272196-f9eb-4176-bcff-a35e49d1a80a", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "a1842dc7-08b9-4184-8edf-48cb49cb6412", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065136Z:81272196-f9eb-4176-bcff-a35e49d1a80a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49ecc1ac3d962c0b8ae2dc97d9c027bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c2d8f03-bf2d-479e-a627-e6e51103d3ba", + "x-ms-client-request-id": "49ecc1ac3d962c0b8ae2dc97d9c027bd", + "x-ms-correlation-request-id": "a511cbf4-de7b-4084-98e7-d6d70ab6d761", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "1946e515-5405-40d5-a57b-94fce0b63451", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065138Z:a511cbf4-de7b-4084-98e7-d6d70ab6d761" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c980231a5e4ffda019dec7ae59905fdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6451b95-457c-4826-a024-662715f67b4f", + "x-ms-client-request-id": "c980231a5e4ffda019dec7ae59905fdd", + "x-ms-correlation-request-id": "45ed3ae3-abd9-4680-967c-65dd16ad71d6", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "f2845a9a-5a95-4cb3-a741-9654d764f584", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065139Z:45ed3ae3-abd9-4680-967c-65dd16ad71d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9ca6ad421ea3ef0de066d9546a49c21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0bba199-722f-4958-8248-b8e66da5cf48", + "x-ms-client-request-id": "a9ca6ad421ea3ef0de066d9546a49c21", + "x-ms-correlation-request-id": "2c755d27-ead1-486e-8c41-b7c62148b186", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "c794ba8f-fd75-474b-80f5-913fbd1b5000", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065140Z:2c755d27-ead1-486e-8c41-b7c62148b186" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a011edcb89d4d5020ee2fb7755cd2fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92b960ba-70fe-4e52-98f2-d35db14df684", + "x-ms-client-request-id": "7a011edcb89d4d5020ee2fb7755cd2fa", + "x-ms-correlation-request-id": "2c859b4a-1192-4065-a383-d4fe93686c2d", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "981f2f44-6ac1-48fa-ab75-7e99c6c6a961", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065142Z:2c859b4a-1192-4065-a383-d4fe93686c2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ec2fe837ef5f8d33241ea49f10ab775", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1eb1b8ce-af00-4de9-a7f2-e0fc757b0f55", + "x-ms-client-request-id": "6ec2fe837ef5f8d33241ea49f10ab775", + "x-ms-correlation-request-id": "b66b87b8-5ff0-491c-939b-74919da9f981", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "b10e8b29-dd25-4233-ab16-ac434b80e0ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065143Z:b66b87b8-5ff0-491c-939b-74919da9f981" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bd2a642e58e1c40197d88fbf239c981", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cbbe6c97-0818-4a80-a571-ab9ff050fbd7", + "x-ms-client-request-id": "3bd2a642e58e1c40197d88fbf239c981", + "x-ms-correlation-request-id": "299897b9-20f5-4a25-9c28-b96095323b7b", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "16c929bc-c8e9-4590-af9f-09ec030297cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065144Z:299897b9-20f5-4a25-9c28-b96095323b7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "471273332de15d2b4b08475bce075c16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d8d47bb-63fe-4f8f-956d-2acbde4c267f", + "x-ms-client-request-id": "471273332de15d2b4b08475bce075c16", + "x-ms-correlation-request-id": "4c4e2672-6d69-4c52-9aa5-7c00e7e9e94f", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "17130b9a-3f15-4701-b825-d6629979afbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065146Z:4c4e2672-6d69-4c52-9aa5-7c00e7e9e94f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce74b936978a9e6bbea65578f5d705f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "450af599-b5ab-4201-a438-eea1e218d689", + "x-ms-client-request-id": "ce74b936978a9e6bbea65578f5d705f9", + "x-ms-correlation-request-id": "dad149f9-6e17-4cb5-9237-82fffb5a3ded", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "04eae9d5-e7c0-44ee-9c8f-e8eb7fb941f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065147Z:dad149f9-6e17-4cb5-9237-82fffb5a3ded" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d15697870f815937a74f0869de44d11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "859e8a85-5d0a-4dba-b9d0-8956e307db41", + "x-ms-client-request-id": "7d15697870f815937a74f0869de44d11", + "x-ms-correlation-request-id": "2a4941a7-5740-47b1-87a4-0eb748b9842f", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "426bdbdb-2d3d-4c2e-a0ed-b6913cd49e79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065148Z:2a4941a7-5740-47b1-87a4-0eb748b9842f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38c47120fac49cf70873883ad7b36773", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c1b239a8-040a-4615-b110-8ffce712bfbd", + "x-ms-client-request-id": "38c47120fac49cf70873883ad7b36773", + "x-ms-correlation-request-id": "104999ac-47c0-487e-af99-b1d5f5158f9f", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "8d9a5966-6fa0-417a-a050-8faab233875d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065150Z:104999ac-47c0-487e-af99-b1d5f5158f9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65e34d02def2c61e265f5316a7e500da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea0d2753-c3a0-4207-9551-c2fb8b4356ab", + "x-ms-client-request-id": "65e34d02def2c61e265f5316a7e500da", + "x-ms-correlation-request-id": "4d295cf2-1f6a-457d-bb4a-e1c9038044b1", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "c3113d8f-f34f-4e2b-9b4a-bdf8fa5f5818", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065151Z:4d295cf2-1f6a-457d-bb4a-e1c9038044b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84574358cc127d3572787584e7583dc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee01d5af-874a-4708-8d95-06a72f0a0b9f", + "x-ms-client-request-id": "84574358cc127d3572787584e7583dc7", + "x-ms-correlation-request-id": "f0ae11f0-1f40-4d38-ac1f-dcc586c4e36e", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "b72781a3-2249-42ec-8961-97fc150369ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065152Z:f0ae11f0-1f40-4d38-ac1f-dcc586c4e36e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f837c0ce801411f53fe1264a6e0f522", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a1eb545-801f-484d-b8a0-9313c794a7ce", + "x-ms-client-request-id": "4f837c0ce801411f53fe1264a6e0f522", + "x-ms-correlation-request-id": "590a4103-41e7-4885-84a1-cf85e7e01abe", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "b2e6e46f-b659-4c83-aac9-72a3e885a5f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065153Z:590a4103-41e7-4885-84a1-cf85e7e01abe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94e2ae73e35b35601865f2796999decd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a87fc0b-2327-4811-aa96-b62af4087060", + "x-ms-client-request-id": "94e2ae73e35b35601865f2796999decd", + "x-ms-correlation-request-id": "9b086c76-5712-4418-bdd7-76bfe86dffa6", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "3852d5da-ca27-4916-950b-4155fb13a1b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065155Z:9b086c76-5712-4418-bdd7-76bfe86dffa6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a0a8c21b1626fd823163014bad0d791", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b18dbf5c-f6f9-4614-a17f-b2b02d618a82", + "x-ms-client-request-id": "2a0a8c21b1626fd823163014bad0d791", + "x-ms-correlation-request-id": "25aba714-0e32-45bd-8588-b928b6688ce5", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "aab08710-b1af-4a23-bfa2-9b482e2afcb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065156Z:25aba714-0e32-45bd-8588-b928b6688ce5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39115283a976286c1b4d379cf5a5d8b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88a48465-9ca1-4adb-bd8c-23298faf60f1", + "x-ms-client-request-id": "39115283a976286c1b4d379cf5a5d8b9", + "x-ms-correlation-request-id": "77643496-d761-471c-bde6-595a169c29db", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "ac667b54-e84e-453a-b94e-7b0cd5e6ba9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065157Z:77643496-d761-471c-bde6-595a169c29db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a43441fcad6c2c0d5727045b34c7b48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:51:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b6ac5ca-03fe-4b2b-883e-58919b2dd6bb", + "x-ms-client-request-id": "1a43441fcad6c2c0d5727045b34c7b48", + "x-ms-correlation-request-id": "8e8347c8-4bf6-47f1-9a1c-429957da0604", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "5c0c23a7-0999-4fc3-907c-bc1d9e4ea250", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065159Z:8e8347c8-4bf6-47f1-9a1c-429957da0604" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16f6618da58878571fe10f14793c797e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9aadf9c2-4238-4f2d-bb5d-efef9f5c973f", + "x-ms-client-request-id": "16f6618da58878571fe10f14793c797e", + "x-ms-correlation-request-id": "784e4ece-71da-4392-914c-8016e88d7a3f", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "bc11a16f-07ec-48bf-a255-98b503f50dd2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065200Z:784e4ece-71da-4392-914c-8016e88d7a3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75f5763dbd8db9bb924f6304382775cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56043923-1c98-40fc-9ac1-443a52b13a64", + "x-ms-client-request-id": "75f5763dbd8db9bb924f6304382775cf", + "x-ms-correlation-request-id": "f8ee2176-4b17-4fdc-bf4b-c67036f7a3cd", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "9e870a55-f2f0-4823-92bf-981cf4d69aa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065201Z:f8ee2176-4b17-4fdc-bf4b-c67036f7a3cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "940eefd1c2af7931edcafaf4bbab4899", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b14d55c-7e3c-4b35-9e62-71eea0c1e1c7", + "x-ms-client-request-id": "940eefd1c2af7931edcafaf4bbab4899", + "x-ms-correlation-request-id": "89209062-9053-4c94-b78e-d83083675495", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "a8c672d5-426c-4a23-ad59-465bf4185ae1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065202Z:89209062-9053-4c94-b78e-d83083675495" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c07f2f80556d0baa63c843942523ff8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f3b0b34-afe8-4633-abc8-76f5b8c77ff7", + "x-ms-client-request-id": "3c07f2f80556d0baa63c843942523ff8", + "x-ms-correlation-request-id": "30122cd5-a6c9-4e2e-92fa-51bc16950eaf", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "f46d5423-6fa3-47c8-9932-4b60a0aeb0d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065204Z:30122cd5-a6c9-4e2e-92fa-51bc16950eaf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a423f6ce52e7bce457b88c3c2c6fee6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47bfd110-2eea-45f5-9ded-b98ba40f1f06", + "x-ms-client-request-id": "8a423f6ce52e7bce457b88c3c2c6fee6", + "x-ms-correlation-request-id": "0335bb1e-c6de-47bc-9354-324d827d6a72", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "497f1dfb-bd9f-4e89-8122-ed9e6d61acc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065205Z:0335bb1e-c6de-47bc-9354-324d827d6a72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "460cc907381fcc78343dee723df8379a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf75085a-7e4f-45aa-985a-828043e172d0", + "x-ms-client-request-id": "460cc907381fcc78343dee723df8379a", + "x-ms-correlation-request-id": "1220429c-8751-43f8-a82b-c20b76548542", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "6282c397-d442-498a-b946-4eefca40b676", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065206Z:1220429c-8751-43f8-a82b-c20b76548542" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b88028abd68126b238cf7db7df70ddf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc8bc3d8-4702-4662-abf2-d7e7087a8251", + "x-ms-client-request-id": "7b88028abd68126b238cf7db7df70ddf", + "x-ms-correlation-request-id": "1574172c-a64d-4716-b911-1cb87df7eaea", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "f9e8f30d-5916-45d1-b886-ddb501f6fb48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065208Z:1574172c-a64d-4716-b911-1cb87df7eaea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78319e3ef94633d8c67656f0f75b3d4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "091cb3e5-a551-4d16-a5c6-ddb4189f9c44", + "x-ms-client-request-id": "78319e3ef94633d8c67656f0f75b3d4d", + "x-ms-correlation-request-id": "cf8009f6-d0b4-4893-92c9-32fb5f96b56e", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "9677e612-67c2-42c8-8a71-deff0157cc04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065209Z:cf8009f6-d0b4-4893-92c9-32fb5f96b56e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c038ed43823e497d5ef92293419c4e3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61e708f2-7901-4067-995f-c2d99bdc2bc9", + "x-ms-client-request-id": "c038ed43823e497d5ef92293419c4e3c", + "x-ms-correlation-request-id": "df7d5192-cbca-431d-8561-8bb482dc531b", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "bd779930-b6f9-4819-bf12-fc2f0773b748", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065210Z:df7d5192-cbca-431d-8561-8bb482dc531b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f340e30bec691542a54b5f1677a1bc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9fcd3b08-a180-414d-9a97-91d4a45757f6", + "x-ms-client-request-id": "9f340e30bec691542a54b5f1677a1bc7", + "x-ms-correlation-request-id": "de69e154-eac2-4fde-a146-cdffa46da9e7", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "0566325a-6893-4f79-9002-f03d95da18f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065212Z:de69e154-eac2-4fde-a146-cdffa46da9e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9098aa4f4dbebba120e71a4dd645f229", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6ecf26b-e1ff-45c4-8a5d-0e0bff4c4004", + "x-ms-client-request-id": "9098aa4f4dbebba120e71a4dd645f229", + "x-ms-correlation-request-id": "bcec554e-efe0-4542-89cf-155a948337c0", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "0e9b9952-b981-414b-967c-2fe6581a7720", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065213Z:bcec554e-efe0-4542-89cf-155a948337c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9c019289d27848699a796e9cd8be2e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38e3104e-af10-459e-9402-c59a329c2757", + "x-ms-client-request-id": "e9c019289d27848699a796e9cd8be2e3", + "x-ms-correlation-request-id": "89b6042c-fc5f-41d7-81d7-44cde55c4a60", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "2e09f9df-6524-4fed-9437-254c38eec4d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065214Z:89b6042c-fc5f-41d7-81d7-44cde55c4a60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97435bdebd04e27d6c787fdea406bae4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d29f16b0-ee36-4e2d-ae69-8ad49132ba69", + "x-ms-client-request-id": "97435bdebd04e27d6c787fdea406bae4", + "x-ms-correlation-request-id": "50b3c256-fbb6-4f78-900a-f5b6d264092e", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "43539625-0110-4b23-bc16-a83d3d519f91", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065216Z:50b3c256-fbb6-4f78-900a-f5b6d264092e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dc98b6232bab19f2313f717b7b7ee95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e10d45b6-fe45-4681-b366-61624c1cf2fa", + "x-ms-client-request-id": "4dc98b6232bab19f2313f717b7b7ee95", + "x-ms-correlation-request-id": "59c87fd8-52fe-474a-86b1-6beb4b19a4aa", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "c494c8ea-4038-4b21-9132-480485b77df4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065217Z:59c87fd8-52fe-474a-86b1-6beb4b19a4aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b6f36055a016a259bdd7caf1ea7e092", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5864109-5126-4781-827f-bd8d2d661260", + "x-ms-client-request-id": "7b6f36055a016a259bdd7caf1ea7e092", + "x-ms-correlation-request-id": "184cef9e-0b8c-446b-9707-f08f4a939e92", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "e2e09472-f64d-401b-8d9d-8054c04a149f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065218Z:184cef9e-0b8c-446b-9707-f08f4a939e92" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4187b1ed95c2ab28bb9273f1c6662ab4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc2f33aa-74d2-430e-b124-2c5eb92e72f5", + "x-ms-client-request-id": "4187b1ed95c2ab28bb9273f1c6662ab4", + "x-ms-correlation-request-id": "0b2487c2-a4d2-423a-894f-0d0d24387c4e", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "279fc1be-cc7b-41e7-9b49-5a92c3510a98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065219Z:0b2487c2-a4d2-423a-894f-0d0d24387c4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ed9e9893e9707e3665eb1dcb5f0937b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a74e9ea-b644-456f-ba32-59bbc5a6ae3e", + "x-ms-client-request-id": "6ed9e9893e9707e3665eb1dcb5f0937b", + "x-ms-correlation-request-id": "0b534128-131d-4a31-963b-9dc2fdca8097", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "5754cf16-8119-4cd3-aee3-a1c9d093f88e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065221Z:0b534128-131d-4a31-963b-9dc2fdca8097" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "062a6433ac306fd30dc3c06fe734a335", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f8106d9-e7bc-4e17-80c4-8d59275ff1c4", + "x-ms-client-request-id": "062a6433ac306fd30dc3c06fe734a335", + "x-ms-correlation-request-id": "3715cae3-7875-424e-854e-0b3d3a457eae", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "0a3d4401-2ee6-4ac8-baeb-7ea9f395a80a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065222Z:3715cae3-7875-424e-854e-0b3d3a457eae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3425c8b371ceaefacd80db63e34cf6ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78e3f399-0eee-4982-a95a-b672074f94fd", + "x-ms-client-request-id": "3425c8b371ceaefacd80db63e34cf6ca", + "x-ms-correlation-request-id": "94b5f1ea-7210-44af-9318-46e16e8f903b", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "11ef6dc8-c0c6-42d1-a63a-93298ab4d265", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065223Z:94b5f1ea-7210-44af-9318-46e16e8f903b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61bdf8fe243cdd84166960d47e741f32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc90a777-af94-4d81-ad2d-60266f3d48be", + "x-ms-client-request-id": "61bdf8fe243cdd84166960d47e741f32", + "x-ms-correlation-request-id": "ccb96fc1-2096-4bac-a060-1610fe3328f5", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "31ae2555-d3a9-472b-b5d7-26eed4645edf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065225Z:ccb96fc1-2096-4bac-a060-1610fe3328f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec297cba5fcac1ac6a7b38afd06f8cc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2adb786f-a965-463a-bbd6-a750ea63491b", + "x-ms-client-request-id": "ec297cba5fcac1ac6a7b38afd06f8cc1", + "x-ms-correlation-request-id": "ae68ec76-57eb-42d4-a57e-d3dc963393b7", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "231a1fa8-96eb-40e0-8ea1-e08f4eb0416f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065226Z:ae68ec76-57eb-42d4-a57e-d3dc963393b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef70f6cc41768ef944481d6411253059", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "998fb947-fe11-49e1-9f3c-ba21004a5848", + "x-ms-client-request-id": "ef70f6cc41768ef944481d6411253059", + "x-ms-correlation-request-id": "31c1ad11-184f-4b75-8d4f-c810a01dd700", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "837a4a9f-6a29-471d-9d2e-af033826f5ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065227Z:31c1ad11-184f-4b75-8d4f-c810a01dd700" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67a8a96009229fff4bfbf7c0ecd40ca7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49bd623f-83da-4ba6-9f6e-09ad51e54b01", + "x-ms-client-request-id": "67a8a96009229fff4bfbf7c0ecd40ca7", + "x-ms-correlation-request-id": "6b6b1891-dae4-4a18-b3cf-a4a714a41ba9", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "be2e4400-4b6d-4391-ae85-9e82daab3633", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065228Z:6b6b1891-dae4-4a18-b3cf-a4a714a41ba9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88089edd300478bb839ba8824148b044", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc6f9140-a815-452b-b8e1-2c1cbaa324fc", + "x-ms-client-request-id": "88089edd300478bb839ba8824148b044", + "x-ms-correlation-request-id": "b8824881-493b-45c9-b914-f158cf7ffa60", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "b8f895fe-38ec-478a-92e1-dac9a7ed1e9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065230Z:b8824881-493b-45c9-b914-f158cf7ffa60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "274fdf4b24c6c29ff6d1a37a4a38a270", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ea7f9a9-93ba-4eee-84c3-328100fa4e9a", + "x-ms-client-request-id": "274fdf4b24c6c29ff6d1a37a4a38a270", + "x-ms-correlation-request-id": "36d442fa-7351-49f8-8d15-359d1d46b696", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "a5145602-d8e4-47d1-ad67-a00066761797", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065231Z:36d442fa-7351-49f8-8d15-359d1d46b696" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7287763ba81d2f55ed30e487617c5d03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a88f8b7-f4cc-48b5-8347-6c274e8279ca", + "x-ms-client-request-id": "7287763ba81d2f55ed30e487617c5d03", + "x-ms-correlation-request-id": "b23ed0d5-3975-4aba-a030-e1a981c81e1f", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "1f76e906-6674-4c09-b649-55239d5244ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065232Z:b23ed0d5-3975-4aba-a030-e1a981c81e1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c75b24be484b8e0ff4591328c412e4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fee60d07-d345-4b9c-8252-890f4693de23", + "x-ms-client-request-id": "0c75b24be484b8e0ff4591328c412e4a", + "x-ms-correlation-request-id": "3439318e-18f9-4c3d-a604-cc9fe2b53bc2", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "b03ef91c-f6e3-4406-84b9-cd38850d980d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065234Z:3439318e-18f9-4c3d-a604-cc9fe2b53bc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca4638f83dc0a327891f3a9640186179", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63f73094-13f7-4dcd-bea5-62044d37cfe8", + "x-ms-client-request-id": "ca4638f83dc0a327891f3a9640186179", + "x-ms-correlation-request-id": "48840d78-c2b6-4eb2-b125-50843fbc646d", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "01109154-b54b-4d2f-a793-1f56c89bdae7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065235Z:48840d78-c2b6-4eb2-b125-50843fbc646d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "972ea07395c357eb96ce73d81622a2ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de8b6f00-8aba-4532-9411-f11c1ff1db17", + "x-ms-client-request-id": "972ea07395c357eb96ce73d81622a2ac", + "x-ms-correlation-request-id": "4207d48c-3a49-487e-b3b6-faaa350330c7", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "784d5edc-868b-4ae0-ac40-a77c0bef470d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065236Z:4207d48c-3a49-487e-b3b6-faaa350330c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "288e9a0193360e428bd28265aa4978e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d03c9c4f-3d15-4163-b55a-c45907983cc1", + "x-ms-client-request-id": "288e9a0193360e428bd28265aa4978e7", + "x-ms-correlation-request-id": "e2e0d29f-95c4-46b6-9d93-2eafad9a0ba4", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "a7997fb4-352c-4269-bd6b-4d8000099595", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065238Z:e2e0d29f-95c4-46b6-9d93-2eafad9a0ba4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecbf18e3961262864cef34f1ca4f8c67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7fc8618b-489e-4b30-a699-3036fdf49951", + "x-ms-client-request-id": "ecbf18e3961262864cef34f1ca4f8c67", + "x-ms-correlation-request-id": "48627292-a26e-4f3e-a796-42d72e381d31", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "7f9ec5a7-0ada-4b45-a55e-80f7566ed918", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065239Z:48627292-a26e-4f3e-a796-42d72e381d31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6948e7d3989e0435e200bf11286ad4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd29c408-6f05-49a8-bf79-032fbff4d365", + "x-ms-client-request-id": "a6948e7d3989e0435e200bf11286ad4c", + "x-ms-correlation-request-id": "b12dde83-d871-42a6-a4dd-e22f4566314f", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "65ae684f-271f-4455-bae6-a8780ed35efb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065240Z:b12dde83-d871-42a6-a4dd-e22f4566314f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fef48b56b6626a9a132cdb465e50433c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c17b932-a82e-4fc6-9b98-8197dcfd0db9", + "x-ms-client-request-id": "fef48b56b6626a9a132cdb465e50433c", + "x-ms-correlation-request-id": "ab56532a-c21c-4187-ba4c-f574b3531b46", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "2b5cb95d-a869-422f-ad61-4dfc14bfc053", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065241Z:ab56532a-c21c-4187-ba4c-f574b3531b46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ce81b45d2b5aa5ed4df8ef18b944fc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f691f94e-3288-4dd3-b612-15021e570dc0", + "x-ms-client-request-id": "1ce81b45d2b5aa5ed4df8ef18b944fc6", + "x-ms-correlation-request-id": "177275ee-7265-4dff-b112-e3acbdcc074c", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "c7248b69-a3a9-43b7-be7a-bf85c84ddae4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065243Z:177275ee-7265-4dff-b112-e3acbdcc074c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e9be8428e5ac605f329925c5dfc810d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab330e2d-34cb-4303-b0c2-f2ce176bb92c", + "x-ms-client-request-id": "3e9be8428e5ac605f329925c5dfc810d", + "x-ms-correlation-request-id": "7d236caa-f6e6-44d6-8036-a82f39fd9827", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "f6859f3e-c718-4c89-94e6-c5d897714338", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065244Z:7d236caa-f6e6-44d6-8036-a82f39fd9827" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7accedd919e84962d49298228a9df7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b77885bf-d12a-4dfc-b338-28d75e633ad7", + "x-ms-client-request-id": "f7accedd919e84962d49298228a9df7f", + "x-ms-correlation-request-id": "517d9a65-6385-4841-acac-8304558e428d", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "3a764a38-c3dd-42bb-9785-eecc2aa78ab7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065245Z:517d9a65-6385-4841-acac-8304558e428d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "750415dc04b5b7e21621288b40014dd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8cad2a6b-bc34-4b9b-a9c5-695d863c8c3c", + "x-ms-client-request-id": "750415dc04b5b7e21621288b40014dd8", + "x-ms-correlation-request-id": "1b6a5968-d1ae-4df5-8a69-b0232475f0e9", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "0161ee0f-5a0a-4d0c-b89b-b5f3673a4d18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065247Z:1b6a5968-d1ae-4df5-8a69-b0232475f0e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc13805e58e8b1285117111165829e4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5bb6ffd-f2dd-42aa-a390-0758d0eb27d0", + "x-ms-client-request-id": "bc13805e58e8b1285117111165829e4a", + "x-ms-correlation-request-id": "dd38eef2-ceea-4daa-9d68-d33ed4de1ebc", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "b924abe7-ee13-4d7e-9700-9fa399d9b32e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065248Z:dd38eef2-ceea-4daa-9d68-d33ed4de1ebc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4880124a0cf8d857ecf5e17c690b432c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8319bea9-ef61-4682-a959-fa89e00cf266", + "x-ms-client-request-id": "4880124a0cf8d857ecf5e17c690b432c", + "x-ms-correlation-request-id": "d85e3d59-5faa-4743-9920-be25491adf28", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "081a36ce-090e-4386-af03-f97daab59fc0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065249Z:d85e3d59-5faa-4743-9920-be25491adf28" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a72451fc22958497ec53239df3d05293", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "763ca8c7-b847-4083-8120-a4f2a43bebde", + "x-ms-client-request-id": "a72451fc22958497ec53239df3d05293", + "x-ms-correlation-request-id": "9372b81e-7ae3-47f2-86f7-64806efa8441", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "b6137bfc-dd21-48f9-8900-591f3ac459bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065251Z:9372b81e-7ae3-47f2-86f7-64806efa8441" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d40dd83058051e0293bcff376ab4746", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e41d4389-1371-44aa-95da-629af8fad4e2", + "x-ms-client-request-id": "2d40dd83058051e0293bcff376ab4746", + "x-ms-correlation-request-id": "35f45002-baa3-4c9d-af20-2229829fb9e1", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "b2e61beb-6329-4585-aff3-cc1232bfd02a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065252Z:35f45002-baa3-4c9d-af20-2229829fb9e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1314e5d3f75e27b57bfc5ba4e9b9e51b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7884d8fb-1867-47ec-8ac6-d5a14521da74", + "x-ms-client-request-id": "1314e5d3f75e27b57bfc5ba4e9b9e51b", + "x-ms-correlation-request-id": "2a3c20a9-77e9-4a06-80f3-d0bf1a5a26f8", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "e61500f3-44a1-4854-9dcf-c1f7266e7cce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065253Z:2a3c20a9-77e9-4a06-80f3-d0bf1a5a26f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bf94ea216caf7ab71d27e5953a40d41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ecbb57b-8b51-4982-add2-bae465a44d0d", + "x-ms-client-request-id": "8bf94ea216caf7ab71d27e5953a40d41", + "x-ms-correlation-request-id": "10376274-ee6f-4c27-ac55-b393393650a1", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "1f78628f-1548-4915-a88b-6d7eddf77dee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065254Z:10376274-ee6f-4c27-ac55-b393393650a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0dcadd0b3ebc8c342719b184a93b686f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da9987af-6b6d-48e9-bf0d-465fa3792f38", + "x-ms-client-request-id": "0dcadd0b3ebc8c342719b184a93b686f", + "x-ms-correlation-request-id": "b93c011c-6706-4801-8442-6596c02730cc", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "0db66e27-9963-4530-8495-8e0c3bb7dae1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065256Z:b93c011c-6706-4801-8442-6596c02730cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2850b355bcb1bc7b3a1da28b785bd4d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93663c17-1a5c-47a4-93d7-ba8685d4c82f", + "x-ms-client-request-id": "2850b355bcb1bc7b3a1da28b785bd4d7", + "x-ms-correlation-request-id": "67a6f3b1-0fa2-4662-8ce7-9cebe99da08e", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "8e528e8c-f7aa-4d90-9741-f1f3c5d9d81c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065258Z:67a6f3b1-0fa2-4662-8ce7-9cebe99da08e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b9919eed7ef645f196d64b165264d35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:52:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87a27512-6b80-45fe-8c6b-cfb161a35a60", + "x-ms-client-request-id": "0b9919eed7ef645f196d64b165264d35", + "x-ms-correlation-request-id": "99d26a7f-8023-47c8-82d5-9284ccd9f257", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "0ba74273-1d27-484b-b364-46b58f392ce2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065259Z:99d26a7f-8023-47c8-82d5-9284ccd9f257" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f040f6ae4544f90620dd39e9ba813cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9883b872-76bd-4620-b44a-4d1e27235c72", + "x-ms-client-request-id": "9f040f6ae4544f90620dd39e9ba813cb", + "x-ms-correlation-request-id": "bfc1ce3a-1c58-41f5-82cf-25ba7a3eca12", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "d56e4a14-68e8-4498-a680-218cc0e9ec2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065300Z:bfc1ce3a-1c58-41f5-82cf-25ba7a3eca12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f96da455ca17d7f54eb0e4358c95714", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c2ba9b25-1daf-4ebe-a0a9-d1c8b1e8c543", + "x-ms-client-request-id": "8f96da455ca17d7f54eb0e4358c95714", + "x-ms-correlation-request-id": "386d7dbc-6dc3-4a28-ac49-7b3ff6afee9e", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "97315b53-d776-4907-afd6-1b3ee14cd048", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065302Z:386d7dbc-6dc3-4a28-ac49-7b3ff6afee9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69216dd034570983894aa9e104c0c971", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de1bf3f6-c534-4fb7-8944-48a7aa3e19e5", + "x-ms-client-request-id": "69216dd034570983894aa9e104c0c971", + "x-ms-correlation-request-id": "65ae47ba-d0f7-4edd-8f66-6bc5c453db3c", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "5707b15e-aa47-43e4-95f2-d6506af71ef1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065303Z:65ae47ba-d0f7-4edd-8f66-6bc5c453db3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a6c985abd8f0d938f864b68d64cf698", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c037c55-b866-4bcc-a2d2-30a5685dc597", + "x-ms-client-request-id": "8a6c985abd8f0d938f864b68d64cf698", + "x-ms-correlation-request-id": "95c4ae4f-0fb2-4c0a-95cc-a976943e47c1", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "d99c68f8-1652-459e-ad00-ec25540ba66d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065304Z:95c4ae4f-0fb2-4c0a-95cc-a976943e47c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2dcebfb6a9871074568c0657b39e7993", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c34e0c7f-e34c-4afd-99ae-d7eaf8222645", + "x-ms-client-request-id": "2dcebfb6a9871074568c0657b39e7993", + "x-ms-correlation-request-id": "13e86702-ea76-4139-844c-d145eaa95cdc", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "7df3567a-71de-4a68-9e91-daf0b0972d5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065305Z:13e86702-ea76-4139-844c-d145eaa95cdc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0e99d21cc5d1284d913dad1e91a333d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0ae7e2f-2a91-49f8-bf12-efd6b98b1fc6", + "x-ms-client-request-id": "c0e99d21cc5d1284d913dad1e91a333d", + "x-ms-correlation-request-id": "752ceb2c-5233-48db-94fa-73699d7d17ba", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "39c03463-53ec-4bc1-8253-0f6b5d1df69f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065307Z:752ceb2c-5233-48db-94fa-73699d7d17ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "452b10539bf2b1ea235c3403b73b5af1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8285289-607b-45d6-90c7-c421fd18fda8", + "x-ms-client-request-id": "452b10539bf2b1ea235c3403b73b5af1", + "x-ms-correlation-request-id": "05bbd32f-6d2d-4816-a4f8-90b9be00304b", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "9f1b578d-6a87-4317-81a5-357f2c30e2dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065308Z:05bbd32f-6d2d-4816-a4f8-90b9be00304b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3846b80d3663e93a3abc5473cea3263c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2e6b12c-dda5-4070-b7e4-60ded0e0e5be", + "x-ms-client-request-id": "3846b80d3663e93a3abc5473cea3263c", + "x-ms-correlation-request-id": "a9efc98d-d4c1-4724-b547-1163f239bc49", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "0d9a3c50-bc08-4a7f-a697-5d8f76254a2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065309Z:a9efc98d-d4c1-4724-b547-1163f239bc49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a204c859337286a0b3379c0198815b9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d41cfa2-f4d0-4e2e-b395-988477f8e949", + "x-ms-client-request-id": "a204c859337286a0b3379c0198815b9d", + "x-ms-correlation-request-id": "132b850f-0a5e-478a-a6ac-ceabab99adfb", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "fffbe272-8e7b-4f54-ae20-efbdbd6468cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065311Z:132b850f-0a5e-478a-a6ac-ceabab99adfb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31c3e9b9fad31cdad6420a364776e280", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "260c5f8f-ce21-434f-872e-f5172bbbb251", + "x-ms-client-request-id": "31c3e9b9fad31cdad6420a364776e280", + "x-ms-correlation-request-id": "1e50ed6b-0471-4a41-a87c-25ae72cf9d96", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "26c5a3fb-86e6-4bef-9c1f-378bdd8cff4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065312Z:1e50ed6b-0471-4a41-a87c-25ae72cf9d96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eea9f735b737d97e17c0852b9a3950b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "248020d2-f1cc-426a-8da7-8408ef42ee5d", + "x-ms-client-request-id": "eea9f735b737d97e17c0852b9a3950b9", + "x-ms-correlation-request-id": "532c28dd-3fb2-4ca5-86b0-01b3ab4222f8", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "3c1b4c2e-1146-49f7-8849-da44a006d591", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065313Z:532c28dd-3fb2-4ca5-86b0-01b3ab4222f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5b9b661f5df5e68eee8cc30286a3f3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a30833a0-149b-4bb9-915c-d0aad7cbf632", + "x-ms-client-request-id": "e5b9b661f5df5e68eee8cc30286a3f3c", + "x-ms-correlation-request-id": "35a2cb92-8139-4e75-a903-19061e3f6a90", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "5abf2327-d797-4625-81b6-aa9c724efab4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065315Z:35a2cb92-8139-4e75-a903-19061e3f6a90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0cc1b556cd702666aea1a1374af819c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca4a414f-e66b-4dde-812d-99ad04531834", + "x-ms-client-request-id": "a0cc1b556cd702666aea1a1374af819c", + "x-ms-correlation-request-id": "c4093d07-e397-4137-80e0-19f5c20e04cb", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "8ffe35ef-2162-49bd-8698-f614136ce2fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065316Z:c4093d07-e397-4137-80e0-19f5c20e04cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90d451f1fcbd3fa18f4b004eeb4db0ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bca2d5d6-dafb-4261-91a2-df0bfc4cddbf", + "x-ms-client-request-id": "90d451f1fcbd3fa18f4b004eeb4db0ac", + "x-ms-correlation-request-id": "49a4f2ef-18e1-44e1-a507-5b4b0164ce6d", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "9cd99f98-ebef-4b74-9d47-d1e7873a627b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065317Z:49a4f2ef-18e1-44e1-a507-5b4b0164ce6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ed54981af6df4e250b77af4db55e93e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36359d38-0d81-486b-a13f-9ba3d649d7c4", + "x-ms-client-request-id": "7ed54981af6df4e250b77af4db55e93e", + "x-ms-correlation-request-id": "df581261-e45e-4593-a933-16e528ebd007", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "5a087169-0a85-41d8-a67b-852f8becfdf9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065319Z:df581261-e45e-4593-a933-16e528ebd007" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d73e2f66af95587f7a8c118c6b17171d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89e55297-3d04-49d4-91fa-89448688abe6", + "x-ms-client-request-id": "d73e2f66af95587f7a8c118c6b17171d", + "x-ms-correlation-request-id": "43d7ab7a-e8c3-4f09-9469-88aca3e2cb17", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "ce31a5df-d4f9-4986-a95d-30f505d4df39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065320Z:43d7ab7a-e8c3-4f09-9469-88aca3e2cb17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b916d3a03d9422f6fdf3f0682ac643a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d43fcb9c-108c-414e-9fdb-2ce003b1174c", + "x-ms-client-request-id": "2b916d3a03d9422f6fdf3f0682ac643a", + "x-ms-correlation-request-id": "97d6fbf5-9652-433a-a7dd-505ac65f2bc6", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "2065522c-1be0-47cc-9468-d4080837dfc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065321Z:97d6fbf5-9652-433a-a7dd-505ac65f2bc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbe8c261d90fd216ca7c04e09d568939", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d7dfcd75-ccb1-4c61-8858-32e00fc63025", + "x-ms-client-request-id": "bbe8c261d90fd216ca7c04e09d568939", + "x-ms-correlation-request-id": "d3f41177-8b67-4294-a690-7474cf81caae", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "9c743b42-2ece-41a0-9a04-67b001036988", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065323Z:d3f41177-8b67-4294-a690-7474cf81caae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6dba5d9fbec3636400fc68b66f78d6cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "853b7a5d-a7c6-4310-92c4-34f6e2caae4c", + "x-ms-client-request-id": "6dba5d9fbec3636400fc68b66f78d6cd", + "x-ms-correlation-request-id": "407140e4-d743-4b69-9712-c3c5e053e8fa", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "c1cb8618-2e69-474b-a765-a20390b0ff9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065324Z:407140e4-d743-4b69-9712-c3c5e053e8fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a92ad7275b2e600d57bf615dfe4ea418", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57db6c82-b106-41ee-8b25-d24b128a4d85", + "x-ms-client-request-id": "a92ad7275b2e600d57bf615dfe4ea418", + "x-ms-correlation-request-id": "f05ea3ad-a928-4616-987b-7d483495f56b", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "f7a16d2a-ea7a-4f95-8b3b-85d590b1481e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065325Z:f05ea3ad-a928-4616-987b-7d483495f56b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24660656f7f1a2765d85ba1371606251", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e81ec92-b989-44ce-a94f-2fb5cc3d8f58", + "x-ms-client-request-id": "24660656f7f1a2765d85ba1371606251", + "x-ms-correlation-request-id": "fd71f8e8-7001-4dc7-8ba2-b22c143f66f4", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "e8d73d98-8a2c-427e-9d15-b787d55f7d70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065326Z:fd71f8e8-7001-4dc7-8ba2-b22c143f66f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6b936a6e02b440a4f5915045c0764b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "739283fe-ebe2-4455-b8ab-b00caf41f45f", + "x-ms-client-request-id": "c6b936a6e02b440a4f5915045c0764b2", + "x-ms-correlation-request-id": "c86d2883-e3df-42d3-b9cc-478ebc2c8a0a", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "8ed9f79c-cb80-4ad6-807f-3775d0a90209", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065328Z:c86d2883-e3df-42d3-b9cc-478ebc2c8a0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "695f4f57b1122fdc60884ba9a1faeff7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de1eb258-7337-42ef-9652-107c19c0e73a", + "x-ms-client-request-id": "695f4f57b1122fdc60884ba9a1faeff7", + "x-ms-correlation-request-id": "f583c356-23cf-4446-9968-724966e6eb40", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "8f6dd83d-f76a-40a1-8ac6-216d776465e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065329Z:f583c356-23cf-4446-9968-724966e6eb40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8b6105cdd9475edfb22d597e2714655", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45859d00-f6d1-48f4-9323-209f115f740e", + "x-ms-client-request-id": "c8b6105cdd9475edfb22d597e2714655", + "x-ms-correlation-request-id": "442afa9f-100f-4153-9936-22c7630c688e", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "b0d6b52b-616d-498b-8ece-b64c6343daaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065330Z:442afa9f-100f-4153-9936-22c7630c688e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21bb0820f900f43f5a8966a39460a254", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87301789-e86a-4bda-83b4-85695970ce76", + "x-ms-client-request-id": "21bb0820f900f43f5a8966a39460a254", + "x-ms-correlation-request-id": "c059bcf9-bb99-4421-83eb-aa3735e8445c", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "f7479d00-c26a-400c-b889-2b2c48ea9e72", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065332Z:c059bcf9-bb99-4421-83eb-aa3735e8445c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ca81e6a9c50791d61e96df0dc444dee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8aa2cbc7-9e7a-4e42-8785-3a1aab8de248", + "x-ms-client-request-id": "4ca81e6a9c50791d61e96df0dc444dee", + "x-ms-correlation-request-id": "5d37e0a0-1927-4bd1-b701-eb0201c5328e", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "da7cbf15-27b3-4de5-9166-c97d05856a38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065333Z:5d37e0a0-1927-4bd1-b701-eb0201c5328e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9989f541cd3e62f6d1c26e0b774ae19b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16922be5-f152-4d50-af5b-292ef5b299dd", + "x-ms-client-request-id": "9989f541cd3e62f6d1c26e0b774ae19b", + "x-ms-correlation-request-id": "97c724a3-1e4b-4341-ae52-8fb4f6f034e8", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "ceb7239d-a5dc-4147-b22d-7b562c45d267", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065334Z:97c724a3-1e4b-4341-ae52-8fb4f6f034e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c32d807ff9c98405ea42c0168b4e1815", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e71ccb9-8779-4adc-bc89-fb9ba6de2285", + "x-ms-client-request-id": "c32d807ff9c98405ea42c0168b4e1815", + "x-ms-correlation-request-id": "3db22758-7b02-482f-a58c-2894f2ac8b7b", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "31947378-1775-472e-9b7d-bdb19f2da3a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065335Z:3db22758-7b02-482f-a58c-2894f2ac8b7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e61773b09d79c1527457b8e2d120216", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3775d760-08bc-49fa-b4a3-7873db959a9f", + "x-ms-client-request-id": "9e61773b09d79c1527457b8e2d120216", + "x-ms-correlation-request-id": "cc96bd4f-e2c0-4286-905f-639ea83f6b96", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "2ff7eec7-2c5b-4329-b11e-38ec31ec2334", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065337Z:cc96bd4f-e2c0-4286-905f-639ea83f6b96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b70d20889164725f005aefc0ddfd782", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de79a9c0-baf8-4662-88b9-23a877590a5d", + "x-ms-client-request-id": "5b70d20889164725f005aefc0ddfd782", + "x-ms-correlation-request-id": "f293b545-4580-4489-8921-146d44f36645", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "f6d798f2-9dfc-43fb-9d2c-5aefc8fc06b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065338Z:f293b545-4580-4489-8921-146d44f36645" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffcf58a942e976c46a919c847e7656d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d01d816e-d66b-45ed-821c-3afb9ed34de8", + "x-ms-client-request-id": "ffcf58a942e976c46a919c847e7656d7", + "x-ms-correlation-request-id": "92042843-0a69-425e-ab95-e20e0b35123c", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "ea7aafeb-c639-4bce-b261-28467997c847", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065339Z:92042843-0a69-425e-ab95-e20e0b35123c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b90ea940bcdeb2ff5219aed15a198e47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "664b245a-a743-49f5-bcf7-93786b8383b4", + "x-ms-client-request-id": "b90ea940bcdeb2ff5219aed15a198e47", + "x-ms-correlation-request-id": "4573a0b1-84ea-45e1-b6d5-2892efbe2336", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "6f038b15-83f8-4f78-928f-8f1cea94457d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065341Z:4573a0b1-84ea-45e1-b6d5-2892efbe2336" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5e4f86e0243c62d0dfaf084eda1c97a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69bd1825-d1d5-4835-8d3d-f3c224735be7", + "x-ms-client-request-id": "d5e4f86e0243c62d0dfaf084eda1c97a", + "x-ms-correlation-request-id": "47074221-ea65-4fe2-9c36-ceaabb3d54d0", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "641f116d-8a78-4a7c-8f4a-e9d10a9d4d53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065342Z:47074221-ea65-4fe2-9c36-ceaabb3d54d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "64bcd7ae1dd1eda3591dadcf94f21c51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4ef3b9b-e9cf-4fdf-82aa-0d3f6b186462", + "x-ms-client-request-id": "64bcd7ae1dd1eda3591dadcf94f21c51", + "x-ms-correlation-request-id": "ccd92a17-0b53-4db3-a0b1-1993ef713a2d", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "615434a2-9c72-4325-a29d-a09f99e216d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065343Z:ccd92a17-0b53-4db3-a0b1-1993ef713a2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8515540380923d947b47abe4cb7ac4b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c71fc81b-8f35-49bd-9322-c4995194635b", + "x-ms-client-request-id": "8515540380923d947b47abe4cb7ac4b1", + "x-ms-correlation-request-id": "721db441-1d0b-48ba-85c1-0656ede9b3bf", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "9ec58495-6a2f-4dfd-8d16-4f14b1215d9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065344Z:721db441-1d0b-48ba-85c1-0656ede9b3bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "832334502a5d507655f77c26545e321b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e83bdcdd-b768-42c9-9387-700ecc9102a6", + "x-ms-client-request-id": "832334502a5d507655f77c26545e321b", + "x-ms-correlation-request-id": "29d85194-9f0e-4846-add4-b1b3df6e5b22", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "b29b744d-0a4f-4f8a-8bc9-c84244672725", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065346Z:29d85194-9f0e-4846-add4-b1b3df6e5b22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98819fdd438b2ee7427ee88971be21de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e4d2840-c8ea-4411-9fdb-476904cb2bea", + "x-ms-client-request-id": "98819fdd438b2ee7427ee88971be21de", + "x-ms-correlation-request-id": "bd52a802-5fbc-4038-b846-6b911e19c5bb", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "ecbe2ee3-e674-4828-b3de-20054455c08a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065347Z:bd52a802-5fbc-4038-b846-6b911e19c5bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "607ffc5898cfd8f4dec5309b046ee91d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f1cc524-e054-4595-820b-453b4b4a523a", + "x-ms-client-request-id": "607ffc5898cfd8f4dec5309b046ee91d", + "x-ms-correlation-request-id": "bebc6db9-e9e6-431c-bf66-8a6acb46184f", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "6d1284b8-c8e0-4fe9-b8d7-1a2cac56f215", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065348Z:bebc6db9-e9e6-431c-bf66-8a6acb46184f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c068f152bf80d254cf440de42ecdf96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35898291-c91c-4ae5-a457-ef217bcdbb51", + "x-ms-client-request-id": "2c068f152bf80d254cf440de42ecdf96", + "x-ms-correlation-request-id": "185f4f25-0b9e-47d7-a6f8-bb6cb19a0fff", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "6e4f5eea-8e54-444f-98bd-a942371341e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065349Z:185f4f25-0b9e-47d7-a6f8-bb6cb19a0fff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58cd9dd5d2df454caba9bac6124c29d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00811ca5-1558-4bc4-88cb-76a82bac042a", + "x-ms-client-request-id": "58cd9dd5d2df454caba9bac6124c29d3", + "x-ms-correlation-request-id": "1e6f2a11-c25d-42ab-a7cc-1ae72c2ed7c5", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "e3d14ee4-6db7-4a09-adbb-a0167dab51d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065351Z:1e6f2a11-c25d-42ab-a7cc-1ae72c2ed7c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e174cb95f5b82ce5d67113da571596f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3bd44f8-2668-4e11-b694-e03be165cd92", + "x-ms-client-request-id": "e174cb95f5b82ce5d67113da571596f1", + "x-ms-correlation-request-id": "b799145a-21a8-4ab9-9712-87a86df1d076", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "d9569ea4-71b4-4029-abf5-320ba6c52b22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065352Z:b799145a-21a8-4ab9-9712-87a86df1d076" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66c59ae590a1433e43c1804f715ffaff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f73e9c00-19f7-437d-9ab3-866baeb0cb14", + "x-ms-client-request-id": "66c59ae590a1433e43c1804f715ffaff", + "x-ms-correlation-request-id": "cc7e5aec-74d6-4e99-853b-57bf8a33c77f", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "c23fc31d-de71-4fb0-bbef-0e0dcf5677e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065353Z:cc7e5aec-74d6-4e99-853b-57bf8a33c77f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77486dcbfd78e0ddb8a0816dbe72ed96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5fe31028-6f83-4505-9ba6-2a2609a27347", + "x-ms-client-request-id": "77486dcbfd78e0ddb8a0816dbe72ed96", + "x-ms-correlation-request-id": "73275c57-4c01-4012-955b-3b2a3fd1780a", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "132dc509-4942-46db-899d-c8a34278b409", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065355Z:73275c57-4c01-4012-955b-3b2a3fd1780a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78e0c912c38704328c319ef77595bb77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7692cf95-6193-4050-9e80-3084cf19734b", + "x-ms-client-request-id": "78e0c912c38704328c319ef77595bb77", + "x-ms-correlation-request-id": "e5587053-1e9d-45f2-afbb-9438ecb24170", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "82d20896-401d-42f4-964a-3c8923780c31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065356Z:e5587053-1e9d-45f2-afbb-9438ecb24170" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea0f14771fcce878bce4ad000fd084d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2615bfb8-697d-4b4f-8e7f-4373e1f01645", + "x-ms-client-request-id": "ea0f14771fcce878bce4ad000fd084d0", + "x-ms-correlation-request-id": "e5dfe105-0f2c-414d-8bc2-cc5407d8e95f", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "1281d762-1c29-42bd-acdc-4ee42efb713d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065357Z:e5dfe105-0f2c-414d-8bc2-cc5407d8e95f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a73cead3817e07773a44ea475ee66b22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75e8b663-10f4-44e7-bec1-fc9158c74a5e", + "x-ms-client-request-id": "a73cead3817e07773a44ea475ee66b22", + "x-ms-correlation-request-id": "fcf3bed1-ced0-4ce9-8491-15934eb90d67", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "821df2f8-e5ab-4cec-888b-abccd31d1d64", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065359Z:fcf3bed1-ced0-4ce9-8491-15934eb90d67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9f60ae40263f3c950f7bca21532f5bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:53:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "573089cd-f9fa-49d3-80f7-522bf473069e", + "x-ms-client-request-id": "a9f60ae40263f3c950f7bca21532f5bc", + "x-ms-correlation-request-id": "bbc2eb9a-bb99-4b24-bade-dd93b3b76026", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "03ad4d50-d5db-4ab0-a31e-3eb3c6e41f84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065400Z:bbc2eb9a-bb99-4b24-bade-dd93b3b76026" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a23cdac1358f5f89c07b088353189d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8119510-b572-44e9-aba1-6a6ed454ce97", + "x-ms-client-request-id": "8a23cdac1358f5f89c07b088353189d5", + "x-ms-correlation-request-id": "e2a886e2-ff6a-465b-87aa-b367f4e985d6", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "5588d892-eaf4-4ebb-abad-5fddea6a2037", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065401Z:e2a886e2-ff6a-465b-87aa-b367f4e985d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "041b8b79dadad16d20495787c4d4f208", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f9541eb-c783-43ea-8d6f-ad67c66778ad", + "x-ms-client-request-id": "041b8b79dadad16d20495787c4d4f208", + "x-ms-correlation-request-id": "25b7ebe9-ee0c-4cb0-9e63-ba9ee00600b3", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "9d03967d-3203-4acb-93fc-8b1ac511b004", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065402Z:25b7ebe9-ee0c-4cb0-9e63-ba9ee00600b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "919a2d4ee0c3d0c911000d5c5240be1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c44fc09-d5e9-4801-904f-948ed142db05", + "x-ms-client-request-id": "919a2d4ee0c3d0c911000d5c5240be1e", + "x-ms-correlation-request-id": "8be45762-b11d-49d8-8a5c-f135ec43a73b", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "182a35a7-8e00-413e-b41e-53c035b30d71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065404Z:8be45762-b11d-49d8-8a5c-f135ec43a73b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a29e76df016d1e16051690fbc7130c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c87c6f8-6c3e-4230-820b-aa14a7850403", + "x-ms-client-request-id": "8a29e76df016d1e16051690fbc7130c7", + "x-ms-correlation-request-id": "b072b588-1f94-4e47-b4dd-b7da93159682", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "963675b4-5083-45fe-be1e-a00dbfc485a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065405Z:b072b588-1f94-4e47-b4dd-b7da93159682" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "073aa814f8969811c14af3dacd117fe0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df7c571d-e5fa-401e-bcae-f3cfafcf9b6f", + "x-ms-client-request-id": "073aa814f8969811c14af3dacd117fe0", + "x-ms-correlation-request-id": "367a0196-8a91-4969-9de4-6f63abfdddaf", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "15d44e58-6135-4006-9031-3cd5b13cc4bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065406Z:367a0196-8a91-4969-9de4-6f63abfdddaf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd19388b68ab5df24cc9317276ba14a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "97baf4c3-8f33-49e4-8eb7-de773e3e0806", + "x-ms-client-request-id": "dd19388b68ab5df24cc9317276ba14a0", + "x-ms-correlation-request-id": "86d22bd6-2e95-482a-a140-83a31ec53629", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "8ef2ce08-3802-4f4d-8fc9-2d802fba7db2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065407Z:86d22bd6-2e95-482a-a140-83a31ec53629" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa4745cfb6067588d691c8cbfd07044e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59daeb1d-ac7d-495a-bf90-11d4a8982b97", + "x-ms-client-request-id": "aa4745cfb6067588d691c8cbfd07044e", + "x-ms-correlation-request-id": "378f06f6-c0a6-4f70-9a02-9539bae71433", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "f819f508-c996-4649-8186-9ea3825d1b5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065409Z:378f06f6-c0a6-4f70-9a02-9539bae71433" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "848489d25358ac1cb6dcbacdc79e2107", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d86a1f1f-f5ae-43b1-a135-61d467a89387", + "x-ms-client-request-id": "848489d25358ac1cb6dcbacdc79e2107", + "x-ms-correlation-request-id": "221efc27-a819-455f-a9bf-e5f6a3c8ee6b", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "d7c38371-dea8-43ed-a171-aae7e8d9244e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065410Z:221efc27-a819-455f-a9bf-e5f6a3c8ee6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "880a5236d5cad4d9b0a40719a0265f45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "591f4ed5-3abf-4f41-a4e0-c8cb84212e93", + "x-ms-client-request-id": "880a5236d5cad4d9b0a40719a0265f45", + "x-ms-correlation-request-id": "d52084ba-859d-4691-99a4-0a688249ffdb", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "ea4e5e77-8418-4e0b-90d8-7e051cc8eca0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065411Z:d52084ba-859d-4691-99a4-0a688249ffdb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eca0e2c58f357c48289bf42afcbaad37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c808cd3f-3866-4581-bae4-4752ee20b656", + "x-ms-client-request-id": "eca0e2c58f357c48289bf42afcbaad37", + "x-ms-correlation-request-id": "89f7b969-2c97-496c-8d14-4f12e0622fcc", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "2b6e76b8-d9c7-495b-9222-894c0d59e6c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065413Z:89f7b969-2c97-496c-8d14-4f12e0622fcc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa95c06f7bfcfc84b0b0d4b44c030b8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e42e237-4d78-4f6f-9ff3-b8284a314dbc", + "x-ms-client-request-id": "aa95c06f7bfcfc84b0b0d4b44c030b8f", + "x-ms-correlation-request-id": "961bf522-790d-415c-b18d-b376bcf3d398", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "d94cf143-cfa1-4a8b-9062-38ef9866f404", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065414Z:961bf522-790d-415c-b18d-b376bcf3d398" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e508757c34fea6d20a8e602ee1afd7f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2c2000a4-a3aa-4a9c-b027-43b718008606", + "x-ms-client-request-id": "e508757c34fea6d20a8e602ee1afd7f5", + "x-ms-correlation-request-id": "71ca2172-dd11-4bc2-b422-94c9d48d2fdb", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "e4a85d5f-d0ab-49e2-8403-287dd3b8a8d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065415Z:71ca2172-dd11-4bc2-b422-94c9d48d2fdb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfaacff6b59149495ea33c85bb932f25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a664f23a-ce9a-4a9b-a693-08818b4ac2cd", + "x-ms-client-request-id": "dfaacff6b59149495ea33c85bb932f25", + "x-ms-correlation-request-id": "a3576830-a9a5-49d4-9632-0014fbedd50d", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "fff1db46-e3e9-4d68-91fc-d9c79e6b7016", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065416Z:a3576830-a9a5-49d4-9632-0014fbedd50d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86ad648fc8b23a38eeeea06d1b551b00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dbe42b6f-23c2-4bf0-bd1f-ea0180c732fb", + "x-ms-client-request-id": "86ad648fc8b23a38eeeea06d1b551b00", + "x-ms-correlation-request-id": "b85afd5a-abf3-42c0-9cd5-a4112b66b8f9", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "e58d7d15-80e1-40e1-90aa-ffcb4f32b44a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065418Z:b85afd5a-abf3-42c0-9cd5-a4112b66b8f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7cbddfd82c58c7fe2bbe865bf84cea76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c2e460f-7796-486c-9f40-8a8bf728c10e", + "x-ms-client-request-id": "7cbddfd82c58c7fe2bbe865bf84cea76", + "x-ms-correlation-request-id": "46754fa8-412d-49f1-a173-f762d86a4e00", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "6982a6f4-77be-4920-90c2-6b7e0e4c7e98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065419Z:46754fa8-412d-49f1-a173-f762d86a4e00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c9f3b5e51012e42976ff0a214db2e08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b7f1ca92-86e2-4a68-915c-717252141271", + "x-ms-client-request-id": "7c9f3b5e51012e42976ff0a214db2e08", + "x-ms-correlation-request-id": "a4727aea-202e-4958-bc46-95912a59acc4", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "f0f75949-c928-40cd-a879-780ababcfa88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065420Z:a4727aea-202e-4958-bc46-95912a59acc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dcac3b87b3d662cc65e65af341dd42a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4de8a9df-25c0-406b-af78-17494bfc9815", + "x-ms-client-request-id": "dcac3b87b3d662cc65e65af341dd42a1", + "x-ms-correlation-request-id": "4ffe065d-44e8-4089-bd60-e7a60127b1eb", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "058f98c7-c51c-44bf-93b3-3b7cd274a830", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065422Z:4ffe065d-44e8-4089-bd60-e7a60127b1eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e00e29049eb687fe9c8fe5e93b5cb24f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5deb6864-3460-4d69-af85-3b8d57f06986", + "x-ms-client-request-id": "e00e29049eb687fe9c8fe5e93b5cb24f", + "x-ms-correlation-request-id": "c4512fa1-fe69-4fc4-bb94-b8f77f2f9992", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "aeb74616-369d-4736-8917-9b38679890d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065423Z:c4512fa1-fe69-4fc4-bb94-b8f77f2f9992" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcd37e900ea0aba06f3c161bf64eedb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9312fe6-996f-43fd-830c-3164ab9c1d08", + "x-ms-client-request-id": "bcd37e900ea0aba06f3c161bf64eedb9", + "x-ms-correlation-request-id": "191c59bf-8615-413c-b3d7-6017b60fd841", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "99325713-9611-4f89-8d0c-dcb9e03c4945", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065424Z:191c59bf-8615-413c-b3d7-6017b60fd841" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb9e4f2d4dcde8523c253f47cde22709", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa89095b-923d-409f-ad6e-dc830f09d228", + "x-ms-client-request-id": "eb9e4f2d4dcde8523c253f47cde22709", + "x-ms-correlation-request-id": "598c6406-c199-4f0e-801f-b83642092f17", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "cbef3daf-974c-481a-8f76-e9ce7c0a7f09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065426Z:598c6406-c199-4f0e-801f-b83642092f17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3620a338509f5018962717987e2914d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5cc0534c-e03f-47ca-b03f-b1dacc5c7071", + "x-ms-client-request-id": "c3620a338509f5018962717987e2914d", + "x-ms-correlation-request-id": "4a9f99ab-a9b6-460c-aa34-6a49bf372190", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "956f195e-07d0-49bd-9628-da6effd81b7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065427Z:4a9f99ab-a9b6-460c-aa34-6a49bf372190" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecbc2ba1c7bd43822bea7f7ace59de8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4be02334-a686-47f0-a316-426d102f76b1", + "x-ms-client-request-id": "ecbc2ba1c7bd43822bea7f7ace59de8c", + "x-ms-correlation-request-id": "04d61266-de0c-4884-ab24-48f7af6b5fdd", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "3cc27027-f697-47ed-9b95-3f3893a53db1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065429Z:04d61266-de0c-4884-ab24-48f7af6b5fdd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebe80d1529eba7b04da8616bdcd86059", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d15b1957-a72b-4bd2-832e-83cb349d6fe5", + "x-ms-client-request-id": "ebe80d1529eba7b04da8616bdcd86059", + "x-ms-correlation-request-id": "4fe9597c-72b4-45cf-86aa-19b9000e1956", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "d045e33c-f25c-429c-855d-1284149e1292", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065430Z:4fe9597c-72b4-45cf-86aa-19b9000e1956" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2a5f1943a266b4b881f971e06862730", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d1bd9f1a-3d9e-492c-a5b6-ac611780e9e8", + "x-ms-client-request-id": "a2a5f1943a266b4b881f971e06862730", + "x-ms-correlation-request-id": "2619e990-190e-481e-a46f-f24959919607", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "6598cb07-846a-4072-80a7-ef1277263037", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065431Z:2619e990-190e-481e-a46f-f24959919607" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a64e484a5fa78627a149f1565176652", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30c7e73b-04a2-4685-935f-9674f4889d22", + "x-ms-client-request-id": "7a64e484a5fa78627a149f1565176652", + "x-ms-correlation-request-id": "ef9cca17-6267-47da-8b3e-7abcf590e4ad", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "26bb5bd8-4d0a-43f7-93f9-0858110bfb8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065432Z:ef9cca17-6267-47da-8b3e-7abcf590e4ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dce625893bb3da65c17c62cb9292a1c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c12dcea-e658-420d-b593-83c5dcce7f0c", + "x-ms-client-request-id": "dce625893bb3da65c17c62cb9292a1c6", + "x-ms-correlation-request-id": "a947152e-e1ca-4adf-a2a5-016107d86a65", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "4d2571c0-e502-417a-be98-0278d399fb63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065434Z:a947152e-e1ca-4adf-a2a5-016107d86a65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7e63180e673ee5f8f2d27129b360671", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25b359ec-c4c1-4639-ba77-a8839ba2bc25", + "x-ms-client-request-id": "f7e63180e673ee5f8f2d27129b360671", + "x-ms-correlation-request-id": "64711020-5587-456f-9edc-33573a89f1c4", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "50baacd4-be0f-4ece-bf21-9218378ec0db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065435Z:64711020-5587-456f-9edc-33573a89f1c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e09444b94aa0487c7f8ab97d4396e5e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa7af7db-d81f-425e-81fb-538ef1cf5043", + "x-ms-client-request-id": "e09444b94aa0487c7f8ab97d4396e5e8", + "x-ms-correlation-request-id": "0851c68f-517e-47a4-8228-4e97fa661798", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "23f07646-edd7-4fb0-b92e-af0de8b4b5f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065436Z:0851c68f-517e-47a4-8228-4e97fa661798" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3494d8726f30a3dfc5f74d8614533e8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4b01ff1-468a-4494-8473-9ed85518c477", + "x-ms-client-request-id": "3494d8726f30a3dfc5f74d8614533e8b", + "x-ms-correlation-request-id": "c90ee254-3c54-4053-91cf-69247c5d5d53", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "53c42787-54e8-420e-9f90-da4f392cc742", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065438Z:c90ee254-3c54-4053-91cf-69247c5d5d53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d12f176c1fd3626b59d78e92de2abf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "127d36b1-b19a-448f-b565-21d51f3ce824", + "x-ms-client-request-id": "4d12f176c1fd3626b59d78e92de2abf9", + "x-ms-correlation-request-id": "a5ab96a1-7e32-4322-b002-0b1f0ef6ead3", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "4d83cda2-1fe9-4644-a525-b747e91d1d3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065439Z:a5ab96a1-7e32-4322-b002-0b1f0ef6ead3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c39f3e47d1a14a4065f01aa9fdf6342b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9255fb6d-acdf-4606-a713-1277a9705286", + "x-ms-client-request-id": "c39f3e47d1a14a4065f01aa9fdf6342b", + "x-ms-correlation-request-id": "4ca2b2e8-8ee4-4c67-93f5-2775f066458b", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "7cb69a5a-8134-4d5e-889a-07cf43679601", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065440Z:4ca2b2e8-8ee4-4c67-93f5-2775f066458b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51062d4b9883b1eab25e7e93f6f576e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0734c8f5-92e7-4603-8bad-84ea3e95bd37", + "x-ms-client-request-id": "51062d4b9883b1eab25e7e93f6f576e3", + "x-ms-correlation-request-id": "fceab4af-cd12-437f-b3e6-9742c0824180", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "7485f2a4-443d-4669-8845-4b80f6690cc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065441Z:fceab4af-cd12-437f-b3e6-9742c0824180" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d53e534c7bb4a4e9b0c8e70da67c38bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce1a0573-0f8e-4b14-84de-f5854414882f", + "x-ms-client-request-id": "d53e534c7bb4a4e9b0c8e70da67c38bf", + "x-ms-correlation-request-id": "304c29f0-4000-4991-b4f0-5ecb3067e84f", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "6e1b7c2a-65e4-417b-aa63-a4f25a74e5f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065443Z:304c29f0-4000-4991-b4f0-5ecb3067e84f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff9d4d6959dbaf7553ed104353ad536f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8c41813-e052-4c51-8f90-4c3dbef9b136", + "x-ms-client-request-id": "ff9d4d6959dbaf7553ed104353ad536f", + "x-ms-correlation-request-id": "849ce580-a868-461b-9297-19b783474c81", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "e2674888-39f5-40a8-b165-b763d063d258", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065444Z:849ce580-a868-461b-9297-19b783474c81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa5c367a5eb7d0764361a0bab0dd0a35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a00fcb55-dd8b-464d-8980-62a6c31d6594", + "x-ms-client-request-id": "aa5c367a5eb7d0764361a0bab0dd0a35", + "x-ms-correlation-request-id": "9f564b42-90fd-40a4-b63b-8263f117bb49", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "0c88447b-4851-4e52-a307-b06936023577", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065445Z:9f564b42-90fd-40a4-b63b-8263f117bb49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a929bf267658f207dd8f81c76aa65103", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0da39735-92f8-41ce-9f4a-99ffbab8d2d0", + "x-ms-client-request-id": "a929bf267658f207dd8f81c76aa65103", + "x-ms-correlation-request-id": "3eb1c45c-de61-4ab7-9016-e07646078b50", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "79fd4e06-1201-4309-a9e1-b62512f019fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065446Z:3eb1c45c-de61-4ab7-9016-e07646078b50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "709278758e200b07d6cdbc7ab8bbfe76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bef4d558-9efc-4cb8-832b-172212c0f869", + "x-ms-client-request-id": "709278758e200b07d6cdbc7ab8bbfe76", + "x-ms-correlation-request-id": "3d5b613f-ca20-4ed4-99de-542aff4e1490", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "1291e9f2-d089-4f21-a55c-1d76c0ce2e4a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065448Z:3d5b613f-ca20-4ed4-99de-542aff4e1490" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "931cdbe2a98404172f69cc27dcaf659d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd158f23-6385-4e7b-a27a-233d38781398", + "x-ms-client-request-id": "931cdbe2a98404172f69cc27dcaf659d", + "x-ms-correlation-request-id": "e7b62ca2-3411-42f7-8c8d-9ff5e070ae8e", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "52b9941d-11a3-4ce7-9d8b-b656a7f6dd32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065449Z:e7b62ca2-3411-42f7-8c8d-9ff5e070ae8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37459d0f9a4b9815b71dd38bba8d3a22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e605b73c-ac94-48df-acf6-6346b4280166", + "x-ms-client-request-id": "37459d0f9a4b9815b71dd38bba8d3a22", + "x-ms-correlation-request-id": "e3f06fcc-6ad1-4a41-8513-38c7c54ce57b", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "3451decf-607d-448f-af6f-b9ee5b614a2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065450Z:e3f06fcc-6ad1-4a41-8513-38c7c54ce57b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ee40b90be89cb7f618e41b6c1e02f27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99411a90-a1d9-42d1-90bf-e4e250ce9978", + "x-ms-client-request-id": "8ee40b90be89cb7f618e41b6c1e02f27", + "x-ms-correlation-request-id": "774174e1-1d79-481b-8518-4cf00521759e", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "b34e3ecf-967e-4d0a-a669-693110436467", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065452Z:774174e1-1d79-481b-8518-4cf00521759e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b6a1f67c775482bc684db66d68b4aa1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4eff4555-c3f1-405b-9d08-a94bb551d1bd", + "x-ms-client-request-id": "1b6a1f67c775482bc684db66d68b4aa1", + "x-ms-correlation-request-id": "5d7e0866-86aa-4cc0-9c8d-ff982383d369", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "c3f65628-35f4-4431-8895-f404169b9840", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065453Z:5d7e0866-86aa-4cc0-9c8d-ff982383d369" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d097a92fd7ca51131d79d6bd595ed6d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c41004f4-959f-4bbc-b95f-6592719d1c29", + "x-ms-client-request-id": "d097a92fd7ca51131d79d6bd595ed6d7", + "x-ms-correlation-request-id": "5c5c567a-a76b-4cd2-9790-3422c9180fad", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "52681f6c-fa7d-4dec-baab-b4487ee2c765", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065454Z:5c5c567a-a76b-4cd2-9790-3422c9180fad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b24abee1f22c9ace09cc804e318f4d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b5eecae-7001-482e-8109-60dec4165229", + "x-ms-client-request-id": "9b24abee1f22c9ace09cc804e318f4d5", + "x-ms-correlation-request-id": "587674cd-74a2-44be-85a5-8ebae8e4f0b9", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "bea11dc0-26d1-4d6b-b273-91fe34e74809", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065455Z:587674cd-74a2-44be-85a5-8ebae8e4f0b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17869f435e498f5c0b19fdfbf06dee67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50cb96ae-a1ab-41ed-9f1a-f7c6ce0b76a9", + "x-ms-client-request-id": "17869f435e498f5c0b19fdfbf06dee67", + "x-ms-correlation-request-id": "64ed9311-937c-42d8-9b97-e99f7e8c8af4", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "6176a1e5-3ed5-43c7-ae3a-e0ec37db00cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065457Z:64ed9311-937c-42d8-9b97-e99f7e8c8af4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a7803aeaf67107ffdcdf02d0e0e6d04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0648e98b-22a5-4b89-9a6d-a93d9490e408", + "x-ms-client-request-id": "2a7803aeaf67107ffdcdf02d0e0e6d04", + "x-ms-correlation-request-id": "c99af37a-dea3-4340-8e65-f292e2dbf80d", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "1d4744ef-a2f3-4f52-87b6-15624ed92f57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065458Z:c99af37a-dea3-4340-8e65-f292e2dbf80d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9790085bed78f8e4f948f0922b0d972", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:54:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "162be8d1-2060-4476-a537-666b6bcb6333", + "x-ms-client-request-id": "b9790085bed78f8e4f948f0922b0d972", + "x-ms-correlation-request-id": "38509c26-7629-49e1-b1a0-54443360adc1", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "5604a7f1-bf24-40cf-926d-cc55c9a50229", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065459Z:38509c26-7629-49e1-b1a0-54443360adc1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df5660aec9a0946e20761a7b6e2e81fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca22de3b-36df-47aa-9c71-b4a02e4ad54f", + "x-ms-client-request-id": "df5660aec9a0946e20761a7b6e2e81fd", + "x-ms-correlation-request-id": "1807c178-70cc-44ba-9cad-bfeffd30433d", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "91066c97-3854-4361-801e-360a86f8cc94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065500Z:1807c178-70cc-44ba-9cad-bfeffd30433d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef76f8ab34f4f08f74e9dbd21f75ed4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c3ce325-f09e-4746-a9ba-75cfe247a821", + "x-ms-client-request-id": "ef76f8ab34f4f08f74e9dbd21f75ed4c", + "x-ms-correlation-request-id": "c157f01e-6b0a-4a98-8b1c-46c38a7690c6", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "a8c4b037-e82f-4a2a-91ee-55c777c630df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065502Z:c157f01e-6b0a-4a98-8b1c-46c38a7690c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae7f7df48eb8bb6492e49961a3132020", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de3357d7-973e-4795-b8a7-e332277e968c", + "x-ms-client-request-id": "ae7f7df48eb8bb6492e49961a3132020", + "x-ms-correlation-request-id": "f622e243-3261-433b-994b-a894356ab8f3", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "a8006787-f6df-4dc8-b9d5-06f4b1a6312e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065503Z:f622e243-3261-433b-994b-a894356ab8f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a5d9113e93a797dd0656ab7ed9b74aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99c16bd0-26da-4aa0-b60d-b138d2fb9b80", + "x-ms-client-request-id": "2a5d9113e93a797dd0656ab7ed9b74aa", + "x-ms-correlation-request-id": "1d2567d1-e092-481a-a47c-d465c55fa32f", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "212aa82a-a091-433c-9a82-8026dbf453d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065504Z:1d2567d1-e092-481a-a47c-d465c55fa32f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f187ce88d2af1d4493bb5d109b2e4c61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d94a21b-4352-48cd-98e2-b87d5de5574e", + "x-ms-client-request-id": "f187ce88d2af1d4493bb5d109b2e4c61", + "x-ms-correlation-request-id": "0430b274-08dd-44f6-9936-01c0bc1b9ab8", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "1ba4ea68-2634-4f4f-9ba3-08d9bb2fe060", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065506Z:0430b274-08dd-44f6-9936-01c0bc1b9ab8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8dbfbbc8c3180b11ff06dd5223accdf6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "acf4a7b4-9f60-4347-a51c-3569188103b4", + "x-ms-client-request-id": "8dbfbbc8c3180b11ff06dd5223accdf6", + "x-ms-correlation-request-id": "ca66af7c-841e-4a73-984e-866eb43c6bc8", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "f579e000-9da9-4e4b-8179-01553647f3f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065507Z:ca66af7c-841e-4a73-984e-866eb43c6bc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4d8ee6f2e8b40704d40967f8b6ddda1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c517a1a2-4c9b-4074-9ea4-d976996f5937", + "x-ms-client-request-id": "d4d8ee6f2e8b40704d40967f8b6ddda1", + "x-ms-correlation-request-id": "2ebf0cc1-3477-49e4-a3af-e81fc8e33cc8", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "d842fb26-88a3-4c13-a97c-6df0e45ed2ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065508Z:2ebf0cc1-3477-49e4-a3af-e81fc8e33cc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32ee0919e7dcc592bc7cf1a8f5f2f9e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8282357f-0c29-45b9-a067-b032625aaa08", + "x-ms-client-request-id": "32ee0919e7dcc592bc7cf1a8f5f2f9e6", + "x-ms-correlation-request-id": "947b4929-9b4e-4dda-b3c0-b4dad88f54f7", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "f6516a33-c277-4f09-82f2-154c43d3cddd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065510Z:947b4929-9b4e-4dda-b3c0-b4dad88f54f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ada067ed77569ad64a7f40d82d927f91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5af621f-9b05-4184-b730-9e75678de4b5", + "x-ms-client-request-id": "ada067ed77569ad64a7f40d82d927f91", + "x-ms-correlation-request-id": "170a943f-0fb5-4f3b-8a27-9035fd8eb692", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "040de8b2-2c1c-42f0-b15e-655ba5d90517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065511Z:170a943f-0fb5-4f3b-8a27-9035fd8eb692" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a393b299bbe881a5c12180f3dc84b5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "050df291-013d-4c72-aea6-eb6b891bd5aa", + "x-ms-client-request-id": "1a393b299bbe881a5c12180f3dc84b5a", + "x-ms-correlation-request-id": "02570bb7-a730-4654-ab51-9a376855099b", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "b88b0f76-d647-43f5-b2d9-3cee2c8b4a0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065512Z:02570bb7-a730-4654-ab51-9a376855099b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2491af4630cda14b3354e75da6ba9829", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "beee41ad-8233-49e8-b21a-3799955f594f", + "x-ms-client-request-id": "2491af4630cda14b3354e75da6ba9829", + "x-ms-correlation-request-id": "9c5988ab-0ef5-4e85-9a57-c8d0d9bd753c", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "ce6506d4-7f37-4a67-af85-e2f78508009d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065513Z:9c5988ab-0ef5-4e85-9a57-c8d0d9bd753c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b97f60fcdfb852284d1750445fc65c82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e36b3927-21b2-46da-9726-42f0218fdff8", + "x-ms-client-request-id": "b97f60fcdfb852284d1750445fc65c82", + "x-ms-correlation-request-id": "5a51176f-5ead-4f00-b701-aec2fba8959a", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "f5ea641f-3b5d-4561-8453-c03a4a119a63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065515Z:5a51176f-5ead-4f00-b701-aec2fba8959a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d91e5335b01f9c4f097e76ab3bce2a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5eb854d3-3164-4064-9f60-33213f877ec1", + "x-ms-client-request-id": "7d91e5335b01f9c4f097e76ab3bce2a2", + "x-ms-correlation-request-id": "d4301fab-61a9-4cec-b34f-e24f6482b698", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "61cc512f-4fff-4a43-9922-88da5ef8491e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065516Z:d4301fab-61a9-4cec-b34f-e24f6482b698" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd12ee7a914866a1873fd7b5df07426c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4b7dc124-2c26-4daa-8324-c53ea7f46900", + "x-ms-client-request-id": "dd12ee7a914866a1873fd7b5df07426c", + "x-ms-correlation-request-id": "7501b0dd-cfe4-4558-9fb8-d76ae7ceddf1", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "64c01c6f-e6b5-40f3-94e9-f9093bdcc6d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065517Z:7501b0dd-cfe4-4558-9fb8-d76ae7ceddf1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c02964f71a28a1289b86c921f8be9e90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "383e9b43-06f7-49e1-9f1f-85b87a2e83c4", + "x-ms-client-request-id": "c02964f71a28a1289b86c921f8be9e90", + "x-ms-correlation-request-id": "59bb78b1-e803-4132-b6bf-1a2c2af94283", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "9da57119-6922-4169-8786-65be66057bda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065519Z:59bb78b1-e803-4132-b6bf-1a2c2af94283" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70c9ae357fb3a239432bf6c2840e19e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e97cedc6-ac42-4c5b-8844-29c5bebeb964", + "x-ms-client-request-id": "70c9ae357fb3a239432bf6c2840e19e9", + "x-ms-correlation-request-id": "ac0e95fa-6a72-4d7c-9b5d-bf3915cff083", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "b5be244a-e144-4cf4-a457-dcdc9da8aac3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065520Z:ac0e95fa-6a72-4d7c-9b5d-bf3915cff083" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e727a5521935f79c67141c2c8806dc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c1d2c883-a64e-4aa5-b829-de27c99e7016", + "x-ms-client-request-id": "4e727a5521935f79c67141c2c8806dc8", + "x-ms-correlation-request-id": "5942507b-ce13-442b-8cbb-193c6f9cd8e3", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "b0e5ca6e-7489-435e-80ec-f34db9f62b67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065521Z:5942507b-ce13-442b-8cbb-193c6f9cd8e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "307f46a0d13d77b92b877cfd24651d8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7945396d-57d5-40bd-9dfc-45fe3a4253ab", + "x-ms-client-request-id": "307f46a0d13d77b92b877cfd24651d8d", + "x-ms-correlation-request-id": "7e57ebdc-5c46-45b7-8eea-e6978b925ba7", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "02547f2a-d3c8-453d-b654-48b209aeebfa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065522Z:7e57ebdc-5c46-45b7-8eea-e6978b925ba7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ecbdf6c4f4b14fc3469aa413e76d9c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cfa1200e-e444-48e9-bac3-f29813554cd8", + "x-ms-client-request-id": "7ecbdf6c4f4b14fc3469aa413e76d9c3", + "x-ms-correlation-request-id": "bd9e16de-820b-4527-8150-b0b5e1b90703", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "9f43a8c9-be00-4fd5-9a8e-0d6efdc30079", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065524Z:bd9e16de-820b-4527-8150-b0b5e1b90703" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d212dbde88f83abc1fa230ca47c3b60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13b1cbe8-c688-43d7-a745-2c1b950cd798", + "x-ms-client-request-id": "3d212dbde88f83abc1fa230ca47c3b60", + "x-ms-correlation-request-id": "b0a0f9e8-5539-4981-9d33-eb12b6f8608d", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "c71229e2-c580-4f0c-be0e-fe9c3563fe48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065525Z:b0a0f9e8-5539-4981-9d33-eb12b6f8608d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e856b454efb5517c496bfcd4277739b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cd991b0-021e-46d8-9f52-049283757688", + "x-ms-client-request-id": "e856b454efb5517c496bfcd4277739b4", + "x-ms-correlation-request-id": "2b91a0be-7ec7-4e9f-897b-aa0a02ab0c8a", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "5d264436-9183-4325-9da3-d709db5c44b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065526Z:2b91a0be-7ec7-4e9f-897b-aa0a02ab0c8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f63fb9addf4483fd3447bd512cf06fb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "342ff228-44f3-4f38-997d-36e78d773f7f", + "x-ms-client-request-id": "f63fb9addf4483fd3447bd512cf06fb7", + "x-ms-correlation-request-id": "a07e4e50-a154-4ccd-8086-8000ab2b2f0d", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "d43742fe-2ddf-4bff-b76a-21de7a3b9d1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065528Z:a07e4e50-a154-4ccd-8086-8000ab2b2f0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8aed492df120ce0db0d0f324ecd75c49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f3a583f-6767-4521-99cd-ad39952fa86e", + "x-ms-client-request-id": "8aed492df120ce0db0d0f324ecd75c49", + "x-ms-correlation-request-id": "fdca3d70-0f55-462f-a0cb-ddb20eb17195", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "27511a6b-a44a-41bf-978c-19237e389477", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065529Z:fdca3d70-0f55-462f-a0cb-ddb20eb17195" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea5f6ec1453d741cb6d2b36d312b2559", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b54f4e7b-f1fd-4feb-afa9-ed8170f5b48f", + "x-ms-client-request-id": "ea5f6ec1453d741cb6d2b36d312b2559", + "x-ms-correlation-request-id": "f2eba2b1-94c7-476c-9274-f0e593a2631e", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "add40cbc-9cf3-4942-859f-891421994217", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065530Z:f2eba2b1-94c7-476c-9274-f0e593a2631e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dda644fbaf89bb94ab714573ebd9975d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee9ca9c0-f4e8-4de8-9644-acd3e6983c4a", + "x-ms-client-request-id": "dda644fbaf89bb94ab714573ebd9975d", + "x-ms-correlation-request-id": "261be95b-bdbf-4107-b5ba-5722f6369e40", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "53ab1a2b-cb39-441b-8605-1a653a1f0609", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065531Z:261be95b-bdbf-4107-b5ba-5722f6369e40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd9073eb8491e87a2d79d34d3da09c84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f91c650c-3ecb-4a9f-b02d-e99ba4b06ffb", + "x-ms-client-request-id": "bd9073eb8491e87a2d79d34d3da09c84", + "x-ms-correlation-request-id": "9e7fae8c-c10a-4fc5-bd4c-8cdcf1ffc68f", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "185f6571-b24e-4dab-b041-ea513fe34db5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065533Z:9e7fae8c-c10a-4fc5-bd4c-8cdcf1ffc68f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8289aab7f3011c0daa33fcbffa888dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cae087e-7e85-40f9-8998-83c2c930287b", + "x-ms-client-request-id": "a8289aab7f3011c0daa33fcbffa888dc", + "x-ms-correlation-request-id": "a430dd72-beac-40a4-b74b-3bf431345712", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "5169f076-e141-48a9-be06-e87036a9cd40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065534Z:a430dd72-beac-40a4-b74b-3bf431345712" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be82563b679b76c7c9beb010db477e0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a737c63a-5673-401c-833f-ee5fd72b23ed", + "x-ms-client-request-id": "be82563b679b76c7c9beb010db477e0b", + "x-ms-correlation-request-id": "c679c406-54f1-496b-bacc-8bc85568dd7c", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "f45735cb-6ac7-4e67-baa5-be01c3148290", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065535Z:c679c406-54f1-496b-bacc-8bc85568dd7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51c8c0d5eeb16b2cb37ee3ee45aee884", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "371db78c-c613-4268-be2f-3aaa76a1a1ec", + "x-ms-client-request-id": "51c8c0d5eeb16b2cb37ee3ee45aee884", + "x-ms-correlation-request-id": "0cd825bc-b544-4894-b35d-ef01b169a5ea", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "315546b8-9591-4bfc-8e81-0aa01a847c31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065536Z:0cd825bc-b544-4894-b35d-ef01b169a5ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e611f7f0dd1e43e9d3b2de72ceaf3592", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0825ead0-3fae-4342-b4ba-37dc2a2b3131", + "x-ms-client-request-id": "e611f7f0dd1e43e9d3b2de72ceaf3592", + "x-ms-correlation-request-id": "22f2f985-b120-4d67-a2dd-ac96fd2ab524", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "7cd9ce0b-3999-4df1-aad8-4281fa9e4c59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065538Z:22f2f985-b120-4d67-a2dd-ac96fd2ab524" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ff6342537e04c2b2a160a1c84d9311a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4e2218b-8617-4742-aa99-9717371f741a", + "x-ms-client-request-id": "3ff6342537e04c2b2a160a1c84d9311a", + "x-ms-correlation-request-id": "816bcfd3-1996-42ed-a1b0-b28d42f6d799", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "acb79397-e4b8-4b34-ad97-ce271b7fa4d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065539Z:816bcfd3-1996-42ed-a1b0-b28d42f6d799" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e41f2bd69735f7ecd7847dfe10ba9d03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe35ae94-10af-489e-8266-53d8b5b158f3", + "x-ms-client-request-id": "e41f2bd69735f7ecd7847dfe10ba9d03", + "x-ms-correlation-request-id": "01153dcb-9fa5-442d-9747-75d78f2746ea", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "8c2b29ea-b85a-41d2-ad53-5a0c08ffc9b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065540Z:01153dcb-9fa5-442d-9747-75d78f2746ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11c95049a8b7b9a4cbc4bb08d3ccbffa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf8d51dc-fc02-4490-9a8f-62c1c93940f5", + "x-ms-client-request-id": "11c95049a8b7b9a4cbc4bb08d3ccbffa", + "x-ms-correlation-request-id": "dd87737b-d47a-41fc-a702-29d13598896e", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "af0c2e5e-6b2e-4442-aff4-526b9c178578", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065542Z:dd87737b-d47a-41fc-a702-29d13598896e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a29bc38150908d5c47ff675bb92c3c70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b971bdc-29b7-4b69-b30a-c9d376062cc9", + "x-ms-client-request-id": "a29bc38150908d5c47ff675bb92c3c70", + "x-ms-correlation-request-id": "6bc8c674-a3a0-4c13-997b-3fc188ec9fa5", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "82290f22-d7b5-4cc5-b320-a454b29f4437", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065543Z:6bc8c674-a3a0-4c13-997b-3fc188ec9fa5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33d306781f102d6287661971dbe4230a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7bff6a8d-5a42-4581-9ff3-ea0a72a637d0", + "x-ms-client-request-id": "33d306781f102d6287661971dbe4230a", + "x-ms-correlation-request-id": "899a87e3-6579-4c55-a9f4-1664a2173683", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "e8719054-6ec9-4988-a2bd-2ef8f1a1a2ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065544Z:899a87e3-6579-4c55-a9f4-1664a2173683" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c7d83c5fa1ef873f43bc9b84149ff9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c090c760-f064-4c67-9310-c90f8c455278", + "x-ms-client-request-id": "4c7d83c5fa1ef873f43bc9b84149ff9f", + "x-ms-correlation-request-id": "207cfbaa-2ad5-4f04-b9b5-dc41969a9f27", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "353ec483-c7d4-4dcc-b93c-79678f710af5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065545Z:207cfbaa-2ad5-4f04-b9b5-dc41969a9f27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc8f4b878cf961e9606e1b2937ebb163", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32f4cd8a-caa0-4984-a1ad-802e4dcef70d", + "x-ms-client-request-id": "cc8f4b878cf961e9606e1b2937ebb163", + "x-ms-correlation-request-id": "72480adc-af81-4535-97b5-f721b0bad034", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "e7875b16-84ec-4187-b904-bf113861d389", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065547Z:72480adc-af81-4535-97b5-f721b0bad034" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35955ddbf0ae7e5292da3ed456aaec3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b3d3df49-4226-4184-91ec-81adfc734f84", + "x-ms-client-request-id": "35955ddbf0ae7e5292da3ed456aaec3d", + "x-ms-correlation-request-id": "f23d681e-074c-4e88-bc10-96fdc8ba301c", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "20828ecc-b2bb-464e-8864-4751a919bfbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065548Z:f23d681e-074c-4e88-bc10-96fdc8ba301c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90e97a6657543911991cebafde4ac109", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "636947c3-d9ec-494d-9776-160fa1147a90", + "x-ms-client-request-id": "90e97a6657543911991cebafde4ac109", + "x-ms-correlation-request-id": "e2003ddb-a38a-43cf-9f3d-736e6430e30f", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "7326c47a-1694-40fa-aa3a-0eafd45451b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065549Z:e2003ddb-a38a-43cf-9f3d-736e6430e30f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3dc658acab397f0f910391e4d150ab6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b4ca013-9a39-4585-9778-5b73e73a2c6a", + "x-ms-client-request-id": "e3dc658acab397f0f910391e4d150ab6", + "x-ms-correlation-request-id": "a7ff9c83-f6df-4f88-a8a6-38ac103d97bb", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "c5bc23b8-3366-4eee-a04b-627ce2bdaa74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065551Z:a7ff9c83-f6df-4f88-a8a6-38ac103d97bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bdc3dd812101840e4b5c9b9104a29f48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "471f5008-cb12-4a82-aa60-b555360518df", + "x-ms-client-request-id": "bdc3dd812101840e4b5c9b9104a29f48", + "x-ms-correlation-request-id": "ca101b95-f1cb-4889-bcc6-e60f1a22cdc9", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "f9624ce3-aca8-4293-88b2-efcfd6803b1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065552Z:ca101b95-f1cb-4889-bcc6-e60f1a22cdc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f04a351908ce9b8a895197431df2ec84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2413d345-06c6-427e-8bfa-a569e4280b16", + "x-ms-client-request-id": "f04a351908ce9b8a895197431df2ec84", + "x-ms-correlation-request-id": "8aaee796-9278-4da4-bdd6-c990288d733b", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "2306cc53-1f46-40d6-b1d8-07cbf90924c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065553Z:8aaee796-9278-4da4-bdd6-c990288d733b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "012d351104866807565797572e5e9256", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "44e1d024-b462-4649-8c2e-58c84562ad68", + "x-ms-client-request-id": "012d351104866807565797572e5e9256", + "x-ms-correlation-request-id": "b4619887-8762-4893-aa7c-a5c8ab6b884b", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "50fd02b2-8d15-416d-be9e-64cfba8111a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065554Z:b4619887-8762-4893-aa7c-a5c8ab6b884b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1705f0711acb79e7532733b08acb6658", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d1d15b4-cff6-4f01-bf7a-a4ec8017625f", + "x-ms-client-request-id": "1705f0711acb79e7532733b08acb6658", + "x-ms-correlation-request-id": "38598f86-331b-495b-87f0-0a9a4883adbe", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "9fd9595d-dbf3-4cf3-b0d8-ef934f5cca2c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065556Z:38598f86-331b-495b-87f0-0a9a4883adbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf8017709e7414c22ee1997770326d2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79347c85-55e7-42a8-9842-faf676d248d0", + "x-ms-client-request-id": "cf8017709e7414c22ee1997770326d2b", + "x-ms-correlation-request-id": "54ed0814-9dcf-4397-8a6d-d37f9e12a914", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "1bb1a34e-038e-44e7-be06-00581d64ebd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065557Z:54ed0814-9dcf-4397-8a6d-d37f9e12a914" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2dd240bfd4edf7b94db4ad5ed057de8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d0182e2-0a44-4f74-b037-d858e51836da", + "x-ms-client-request-id": "2dd240bfd4edf7b94db4ad5ed057de8b", + "x-ms-correlation-request-id": "afe2b836-6755-4637-9fb1-55ef2be8dd4d", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "26d089ff-9f83-46d7-94dc-262ee5323e4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065558Z:afe2b836-6755-4637-9fb1-55ef2be8dd4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17e73ef1c2ded2e12ef0e8e980700820", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:55:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0efbe392-314e-45cc-b0c9-4aabbc3c1afb", + "x-ms-client-request-id": "17e73ef1c2ded2e12ef0e8e980700820", + "x-ms-correlation-request-id": "5234e2fa-55e0-4613-9548-12962c5d6755", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "57088c44-5509-4716-afae-53627737166c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065600Z:5234e2fa-55e0-4613-9548-12962c5d6755" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49f008ba39f89b6b5d8881c0f06343d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "716ce626-3ec4-4f34-9c6b-8a7acf3417fc", + "x-ms-client-request-id": "49f008ba39f89b6b5d8881c0f06343d7", + "x-ms-correlation-request-id": "174d5908-e8de-4fc0-b3b5-a09e9cdfe8b1", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "05d28286-e4ce-41b5-8e66-c77f2b76b99a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065601Z:174d5908-e8de-4fc0-b3b5-a09e9cdfe8b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31860e02554bfc4c5e00fefcebcf76dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccfb72c0-d603-4e24-a411-cc08bdb9e7e9", + "x-ms-client-request-id": "31860e02554bfc4c5e00fefcebcf76dd", + "x-ms-correlation-request-id": "814bbd47-1008-49f0-a39e-7db9d7dadf7c", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "075b27c8-de91-4499-98f5-310a80083df7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065602Z:814bbd47-1008-49f0-a39e-7db9d7dadf7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8a48cac9566b793d34bb9554121e1cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0f83691-63c9-4383-91ed-ebad4fa5b1d9", + "x-ms-client-request-id": "c8a48cac9566b793d34bb9554121e1cb", + "x-ms-correlation-request-id": "e5a58f1e-378b-4f96-8125-c19da9904156", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "08a5cb17-3fa3-4d2f-96f7-8ac3ef79e108", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065603Z:e5a58f1e-378b-4f96-8125-c19da9904156" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72e711acd6e964d4bbf4eaf83a6eaf8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d8ce6c0-d401-4354-9358-eae183920e71", + "x-ms-client-request-id": "72e711acd6e964d4bbf4eaf83a6eaf8e", + "x-ms-correlation-request-id": "8be35537-9f79-42fd-afad-964de51d5aa6", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "644617c5-f3ef-4808-9881-357d9bf74de4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065605Z:8be35537-9f79-42fd-afad-964de51d5aa6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6413a4117bbe6d707ace5e009bf6ba3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f01ce863-da6a-474b-814f-e2acb8ffee8a", + "x-ms-client-request-id": "6413a4117bbe6d707ace5e009bf6ba3d", + "x-ms-correlation-request-id": "2b981439-675f-4dd5-9e62-ce1eeb854012", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "6cd11378-ad90-4a0a-b64b-4a6c6cb2002a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065606Z:2b981439-675f-4dd5-9e62-ce1eeb854012" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d94f331e04e7d5f3b73f0c71aa9a7c64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d317800d-3341-47d7-b67d-bfd529f17b9b", + "x-ms-client-request-id": "d94f331e04e7d5f3b73f0c71aa9a7c64", + "x-ms-correlation-request-id": "10ef7018-50de-476f-8ede-4b99c4388200", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "0f5c1355-e47b-4dd0-800a-bdb68dbb73ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065608Z:10ef7018-50de-476f-8ede-4b99c4388200" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d432a9b7d0d310ca179f71b77d4c9c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10f7b3ad-d606-40bd-8e5e-60489bfad77a", + "x-ms-client-request-id": "9d432a9b7d0d310ca179f71b77d4c9c4", + "x-ms-correlation-request-id": "a81f266d-0808-427e-945d-8ffaf4f86e3c", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "31316e28-4f05-46c1-ae1c-cd83ea7c7add", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065609Z:a81f266d-0808-427e-945d-8ffaf4f86e3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07daad39d51e0da6b03eac7f6effc2e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f9efc0d-aca7-4643-93b9-bf34e402a27c", + "x-ms-client-request-id": "07daad39d51e0da6b03eac7f6effc2e0", + "x-ms-correlation-request-id": "100e8f71-2573-450c-8c66-c8cc10b15457", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "ddeb2e72-7ec4-4951-b0b6-dc239fc7e0d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065610Z:100e8f71-2573-450c-8c66-c8cc10b15457" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7164f9511db2a02f261e386d0dd85de3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71a70b22-f072-4a20-a20a-766ef6c9a658", + "x-ms-client-request-id": "7164f9511db2a02f261e386d0dd85de3", + "x-ms-correlation-request-id": "6edc73da-04da-4c22-8c75-65e5092951ec", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "c56f79dc-09bb-4418-a7f3-76c83ec1438b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065611Z:6edc73da-04da-4c22-8c75-65e5092951ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd37477675c0c5468336eccfd18cc3a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d7bac761-fc6c-4a43-b042-5af5e20065d4", + "x-ms-client-request-id": "fd37477675c0c5468336eccfd18cc3a1", + "x-ms-correlation-request-id": "03e97043-0492-4e76-a95d-33bfee445ab7", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "38f43c45-c369-413a-b911-860c2eb714ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065613Z:03e97043-0492-4e76-a95d-33bfee445ab7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ec917b757701b127e39e0009c3900d7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77787699-7621-4005-b726-eaa6678ba37b", + "x-ms-client-request-id": "7ec917b757701b127e39e0009c3900d7", + "x-ms-correlation-request-id": "9e58e992-4ef6-4c31-b018-3a3841c09b6b", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "313eed9e-8bf9-42c7-884b-b7848da1b17e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065614Z:9e58e992-4ef6-4c31-b018-3a3841c09b6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2609c8e0c5c7dc1fb39eed7c315fcf9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8477401d-443b-41f0-a4f8-70049332d255", + "x-ms-client-request-id": "2609c8e0c5c7dc1fb39eed7c315fcf9a", + "x-ms-correlation-request-id": "e540d122-82f4-4f74-879c-ac0842290d2e", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "c4ca051a-3366-4729-b636-502ee123e106", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065615Z:e540d122-82f4-4f74-879c-ac0842290d2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5b6965adf0e1e73351b7e879445294a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "caaf8ca8-6257-4384-8b7b-bd67b81b5865", + "x-ms-client-request-id": "f5b6965adf0e1e73351b7e879445294a", + "x-ms-correlation-request-id": "df84e450-02b9-4fd7-9fac-14f8909477bd", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "48df967e-66da-412e-ac91-63f2096d656d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065616Z:df84e450-02b9-4fd7-9fac-14f8909477bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08ef14369c83f1daf7eccad16a95ea1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f80a4b14-930e-430b-8735-4784430e63be", + "x-ms-client-request-id": "08ef14369c83f1daf7eccad16a95ea1e", + "x-ms-correlation-request-id": "25d72aeb-b45d-47d5-a3c7-8d5f7bf7ca4c", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "644e5b3d-244a-4fc7-bac0-4a983f1295af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065618Z:25d72aeb-b45d-47d5-a3c7-8d5f7bf7ca4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05a5466a0a8200c955eaf0ac4798486d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e624121-460d-4054-8afc-74953b63f254", + "x-ms-client-request-id": "05a5466a0a8200c955eaf0ac4798486d", + "x-ms-correlation-request-id": "6be41487-c466-4eea-b614-789a010e8999", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "9987bb12-b0d4-4777-93b3-ce3d5548ebcc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065619Z:6be41487-c466-4eea-b614-789a010e8999" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c45a275c670be16bcc5fe2114a1b3a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b68597a0-2889-4a1c-a8f6-df109f460181", + "x-ms-client-request-id": "1c45a275c670be16bcc5fe2114a1b3a0", + "x-ms-correlation-request-id": "12cfa35a-0c5d-4b4c-a324-9cf12ee6d6b8", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "edabee6f-ed55-4b04-88af-a93de9e0085b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065620Z:12cfa35a-0c5d-4b4c-a324-9cf12ee6d6b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d1c6030239f2cc84beeb298ab2eaa5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9569cc2-aa04-44fd-81b7-d60bfb7069b1", + "x-ms-client-request-id": "4d1c6030239f2cc84beeb298ab2eaa5f", + "x-ms-correlation-request-id": "a7d8c489-7833-4ca1-bc9d-3c3a0fe52538", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "174b33c8-c27f-47d2-8511-7e76bb9d01ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065621Z:a7d8c489-7833-4ca1-bc9d-3c3a0fe52538" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c85b5ca4ce4fa3ad2fe749bc0ba7ebb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4058bd6c-49b6-48ea-b664-b36fd5712362", + "x-ms-client-request-id": "c85b5ca4ce4fa3ad2fe749bc0ba7ebb3", + "x-ms-correlation-request-id": "0d6ff6ed-3626-4f64-8ea0-2ba74744f882", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "db61c723-7a33-4805-abfa-3e367e61ab3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065623Z:0d6ff6ed-3626-4f64-8ea0-2ba74744f882" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e67b5037fa7b52ced919d081137e128e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "117466cb-ae2b-4cdd-9b86-6f37fbd41ae6", + "x-ms-client-request-id": "e67b5037fa7b52ced919d081137e128e", + "x-ms-correlation-request-id": "3a7729a5-f039-43a2-b155-0132dcee3162", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "6842a67c-1e6f-4928-895e-570874b61dd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065624Z:3a7729a5-f039-43a2-b155-0132dcee3162" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b87d9f1beb466250b2791db8d90b20a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d0c8bb0-5f98-4722-90e0-d6f98818d05f", + "x-ms-client-request-id": "b87d9f1beb466250b2791db8d90b20a4", + "x-ms-correlation-request-id": "568c9d7b-ebde-49b2-a1af-a2bf38a83d31", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "c8e33ab8-8126-44ea-8c16-a01206037e00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065625Z:568c9d7b-ebde-49b2-a1af-a2bf38a83d31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b61ff02c3b2a9e38e09ee36fd2b8fb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "01c4d341-cb98-4865-a552-22fb69cc411b", + "x-ms-client-request-id": "5b61ff02c3b2a9e38e09ee36fd2b8fb1", + "x-ms-correlation-request-id": "e20dead3-7db2-4078-a9be-510d6a19f868", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "5dfc649c-529f-4807-b43b-74bfb12a0028", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065627Z:e20dead3-7db2-4078-a9be-510d6a19f868" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ca1bad533294b6d00183402dc1578cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4a9a029-6902-4c41-b2a6-fffeed4f1d08", + "x-ms-client-request-id": "6ca1bad533294b6d00183402dc1578cd", + "x-ms-correlation-request-id": "4b70a07e-ead8-4f31-be38-6901be4c4847", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "83567dbd-e58d-48e7-9d6a-7b68fd54343d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065628Z:4b70a07e-ead8-4f31-be38-6901be4c4847" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "147f2cf8b61c57dbbcd4293cfd196586", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06d1925a-2b32-45de-9218-b943f718e8ae", + "x-ms-client-request-id": "147f2cf8b61c57dbbcd4293cfd196586", + "x-ms-correlation-request-id": "83283b56-302e-4498-9a57-1ca932b8c17e", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "9a9f2da4-4d5b-42c6-9681-75b01026cd27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065629Z:83283b56-302e-4498-9a57-1ca932b8c17e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fe26ce9b46acf7a91155a9a8fe0cc78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "228d0927-70a4-4b76-9eab-81cf403ec4d3", + "x-ms-client-request-id": "1fe26ce9b46acf7a91155a9a8fe0cc78", + "x-ms-correlation-request-id": "a596166d-db64-4509-a914-0442c930ff34", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "a172ed2f-cb30-4d60-8ca9-5e0e5852aca9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065630Z:a596166d-db64-4509-a914-0442c930ff34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d03d20907bac1e94de49b05509304ee6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63c7c2c1-c426-48f6-b144-663e4f39ed61", + "x-ms-client-request-id": "d03d20907bac1e94de49b05509304ee6", + "x-ms-correlation-request-id": "0793bd24-f5f7-4e57-881f-47d4b90eb484", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "c5b67ae4-452f-4018-8e02-53092920ae9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065632Z:0793bd24-f5f7-4e57-881f-47d4b90eb484" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7019adb359324463b2af82075c41c8db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16a4f3fa-dd81-467a-8ca8-5e89dfdb6047", + "x-ms-client-request-id": "7019adb359324463b2af82075c41c8db", + "x-ms-correlation-request-id": "32ad256f-897b-4c64-8aa0-c52e4321f2ed", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "7c0d6e8f-9a69-4854-aaf1-b14999b933a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065633Z:32ad256f-897b-4c64-8aa0-c52e4321f2ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dcacb00794dc6dd9d7c440200324c561", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0d780bd-2933-4f76-8e98-f38acda3ff2f", + "x-ms-client-request-id": "dcacb00794dc6dd9d7c440200324c561", + "x-ms-correlation-request-id": "723c0b10-2123-4a87-9fb6-8b34722a9b90", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "bfcabbdd-e80f-4c9e-9057-28ffd0c62827", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065634Z:723c0b10-2123-4a87-9fb6-8b34722a9b90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1e673c75bc73746bdf81efcf88dc29c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c16df11-c824-4245-b8db-a6a8518de342", + "x-ms-client-request-id": "e1e673c75bc73746bdf81efcf88dc29c", + "x-ms-correlation-request-id": "29a3682c-322c-44a1-9d19-399105a9e4ad", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "c1d3367b-db5a-4bf5-a0c9-b8b9ada61ddf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065635Z:29a3682c-322c-44a1-9d19-399105a9e4ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "584dd48172841f0ad4ab986e1842418d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "063e879b-4a23-454f-af7c-cdf062690403", + "x-ms-client-request-id": "584dd48172841f0ad4ab986e1842418d", + "x-ms-correlation-request-id": "3df252be-6be1-4d90-83ab-bfd56d90dba3", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "c8e20c8d-84d8-4d10-9b96-bf56ffca79c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065637Z:3df252be-6be1-4d90-83ab-bfd56d90dba3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e83f21e9e65bab146a741fe376dc754a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9105b86-f6c0-41e7-b870-88b9ce92f7bd", + "x-ms-client-request-id": "e83f21e9e65bab146a741fe376dc754a", + "x-ms-correlation-request-id": "41bb80bc-e9fa-4e92-9db2-4f5b57328d9d", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "b97196db-4e88-455b-8df7-64a8615e0702", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065638Z:41bb80bc-e9fa-4e92-9db2-4f5b57328d9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e9fa4026dd655dc69c70d1bc3d81f7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e8b6207-9e39-426b-85a7-3caa422cf649", + "x-ms-client-request-id": "2e9fa4026dd655dc69c70d1bc3d81f7a", + "x-ms-correlation-request-id": "19d65955-2961-433e-9ac7-d3aa83317509", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "73dd21d1-acec-4629-9bb3-91975ee088d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065639Z:19d65955-2961-433e-9ac7-d3aa83317509" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d61390b7da4d9a41c0a1ee0f5327a8f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4228506f-4afd-4422-88d1-d66ec86fd243", + "x-ms-client-request-id": "d61390b7da4d9a41c0a1ee0f5327a8f7", + "x-ms-correlation-request-id": "ed02173a-d0cd-4cd6-8b01-e0c65136c416", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "03790402-9144-48fc-bd3c-dabd9af7cc72", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065641Z:ed02173a-d0cd-4cd6-8b01-e0c65136c416" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "746c4e3612a37cb645ea7f93d9f8e892", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "236aec35-6a7f-418f-8445-5ff2b12c223b", + "x-ms-client-request-id": "746c4e3612a37cb645ea7f93d9f8e892", + "x-ms-correlation-request-id": "d0012655-46ce-4f7c-94e0-cbb0c14ce2f4", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "0fd8eb8a-1920-4445-b5ff-f3787034bc9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065642Z:d0012655-46ce-4f7c-94e0-cbb0c14ce2f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e52ba4559ec927fc62046e357ecd0141", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1420c127-b191-4e48-b50e-af7ffe189676", + "x-ms-client-request-id": "e52ba4559ec927fc62046e357ecd0141", + "x-ms-correlation-request-id": "e0cd1083-8ed2-4729-aef0-2c2e7a5e801d", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "d42ef60a-c4db-4372-9f6a-3096ef237f14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065643Z:e0cd1083-8ed2-4729-aef0-2c2e7a5e801d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75e5151eaa6ba5d7da9691635aaec1c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "feba1e80-b544-4723-af08-68f9f5bfa3ca", + "x-ms-client-request-id": "75e5151eaa6ba5d7da9691635aaec1c7", + "x-ms-correlation-request-id": "f5972c34-35c6-4263-b36c-9b3c629c754f", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "da6f8784-fdd2-4e43-bba7-22c50fb2da58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065644Z:f5972c34-35c6-4263-b36c-9b3c629c754f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aeb95cb9c3fb972d5144119fa381fe77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c1d3604-2a18-4f5a-bd48-998706ce6720", + "x-ms-client-request-id": "aeb95cb9c3fb972d5144119fa381fe77", + "x-ms-correlation-request-id": "6320fda3-8762-4332-8ad7-f2954ecfc996", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "63507833-9a66-4dd1-a696-386b6dc0bbdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065646Z:6320fda3-8762-4332-8ad7-f2954ecfc996" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3743de87313aa26cd860b330d99ccb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc127c9f-fec0-4c9d-a11c-1f4986f9deb1", + "x-ms-client-request-id": "c3743de87313aa26cd860b330d99ccb4", + "x-ms-correlation-request-id": "9a2f56ad-3d25-4e60-b229-4bfa30541494", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "80d72149-06ce-4205-982a-482ec78eef41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065647Z:9a2f56ad-3d25-4e60-b229-4bfa30541494" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "227ba74253135a46e84d232799370258", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "90244bc7-99f3-4387-851b-2a0b38a33aed", + "x-ms-client-request-id": "227ba74253135a46e84d232799370258", + "x-ms-correlation-request-id": "d465eb3d-fef9-4625-be93-1067ccdcec40", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "5713e083-d590-45a7-8657-baf796601cdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065648Z:d465eb3d-fef9-4625-be93-1067ccdcec40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d7a1a98fe3945b3350ee175b8fa8ab8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4a76b1e-feb5-406e-8ffc-5040b37473c9", + "x-ms-client-request-id": "1d7a1a98fe3945b3350ee175b8fa8ab8", + "x-ms-correlation-request-id": "390a5056-e47b-42bb-aa9b-052caf780620", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "99402f43-4f49-495b-a782-25047047b07b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065650Z:390a5056-e47b-42bb-aa9b-052caf780620" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc5c5d77db059563f619dbc650fe1195", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee2df185-9032-4299-8db5-11d605c3248f", + "x-ms-client-request-id": "fc5c5d77db059563f619dbc650fe1195", + "x-ms-correlation-request-id": "dadb6e2c-1bc6-4ea2-84f6-44035f631c8e", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "09d16086-6439-49ff-8387-91225f086d09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065651Z:dadb6e2c-1bc6-4ea2-84f6-44035f631c8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f39bb284af1f437bf336ed0572d1a2ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba2f8fa9-f7db-4151-a77a-352b9c36fa20", + "x-ms-client-request-id": "f39bb284af1f437bf336ed0572d1a2ed", + "x-ms-correlation-request-id": "97a09207-1be6-4075-9b5f-68c08690c9b9", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "2c04d894-7b1b-48e5-8679-33ec8876272d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065652Z:97a09207-1be6-4075-9b5f-68c08690c9b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bb06bc205dabc53b6e4271f23ecf537", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6eaa0e6c-dd97-4023-8d6f-15b45be5ff72", + "x-ms-client-request-id": "3bb06bc205dabc53b6e4271f23ecf537", + "x-ms-correlation-request-id": "dfe7be85-b7a1-49dc-90f4-8af39a613168", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "0299df50-7e03-4fb2-848a-beae0e174755", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065653Z:dfe7be85-b7a1-49dc-90f4-8af39a613168" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06f04bfc975fc899e11808cfee5e2325", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9dcb1b54-83a2-44f4-8a44-4cee787c59de", + "x-ms-client-request-id": "06f04bfc975fc899e11808cfee5e2325", + "x-ms-correlation-request-id": "44c851f0-b05b-4b08-9c9c-3fb040b7e78a", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "ed21f9e9-7532-4a96-b293-d2e842e4e8e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065655Z:44c851f0-b05b-4b08-9c9c-3fb040b7e78a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e403ed77d64e7eba5fde3c3a885c2006", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9a7cac8-ae9c-4819-abfc-2238b5b643be", + "x-ms-client-request-id": "e403ed77d64e7eba5fde3c3a885c2006", + "x-ms-correlation-request-id": "0f225d79-0818-4084-ad6e-345b0e24203b", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "fbd4d511-1648-409e-8c32-747c9b0d4389", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065656Z:0f225d79-0818-4084-ad6e-345b0e24203b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2608b6409be02b8ed2e859c2fc83ce58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c0927a0-e9f7-4141-9f19-e39d12cc53a2", + "x-ms-client-request-id": "2608b6409be02b8ed2e859c2fc83ce58", + "x-ms-correlation-request-id": "4c14241e-7284-4880-a67d-9f8f4f174b8d", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "ecbe4fa6-80e4-4478-ac2e-af0ed14b064b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065657Z:4c14241e-7284-4880-a67d-9f8f4f174b8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36a702c111e926e89072a7805b5e3f85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05c1b250-18ec-40fc-bf99-ed9ff79d9016", + "x-ms-client-request-id": "36a702c111e926e89072a7805b5e3f85", + "x-ms-correlation-request-id": "e3f1aa0a-e6e8-47f8-b127-813434fe6d1f", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "56de5df4-3e91-456c-b423-eec2006934ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065658Z:e3f1aa0a-e6e8-47f8-b127-813434fe6d1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "388f01f8fc55db445fd812657cf881db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:56:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b7a86cd-d0df-4b58-84f8-bd32efdc41c6", + "x-ms-client-request-id": "388f01f8fc55db445fd812657cf881db", + "x-ms-correlation-request-id": "4ed8ad6a-f36b-43a9-8378-b550eee285ab", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "4c43d83d-c8bc-4934-9c72-607dda75ddfa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065700Z:4ed8ad6a-f36b-43a9-8378-b550eee285ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8678e40feab42f1dcde2956ef40dd073", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5481c66-0853-4613-ad21-124a35379ec0", + "x-ms-client-request-id": "8678e40feab42f1dcde2956ef40dd073", + "x-ms-correlation-request-id": "7b7ffceb-e731-479e-a7ba-7d0a5c03b93f", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "3a746679-518e-497a-a777-a0dad5740e85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065701Z:7b7ffceb-e731-479e-a7ba-7d0a5c03b93f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fac9d4a896f4c403bdccd711fe82aa98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83a9634c-fc07-4c48-b1b7-54436c47bde3", + "x-ms-client-request-id": "fac9d4a896f4c403bdccd711fe82aa98", + "x-ms-correlation-request-id": "9e155660-c4ab-41de-a385-59dc290985e1", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "8441e704-297f-483f-b35b-b5ed95c32066", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065702Z:9e155660-c4ab-41de-a385-59dc290985e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7770cbf0b9e60dd1e45f6b7367d5e651", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9e39548-3c67-404f-8b7c-c5ba354e44f6", + "x-ms-client-request-id": "7770cbf0b9e60dd1e45f6b7367d5e651", + "x-ms-correlation-request-id": "36843f7f-1ac2-4e34-8614-9b4c7c51fba8", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "c0dec9a0-3b05-4f2f-85d5-ff61522011ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065703Z:36843f7f-1ac2-4e34-8614-9b4c7c51fba8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7bd9f07862e79e7e0b4c8e8130c304a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af860df1-5c3f-4a0e-a4f7-b4735e509309", + "x-ms-client-request-id": "a7bd9f07862e79e7e0b4c8e8130c304a", + "x-ms-correlation-request-id": "546b39fb-daf3-4c10-8461-9fb206e71563", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "52c3ac04-3439-42a4-afd4-20255a5eb43a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065705Z:546b39fb-daf3-4c10-8461-9fb206e71563" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "297dfd37599cee8c02bc16942b8f5de7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b2cb492-9219-4c31-9b08-e12b38ceaf2a", + "x-ms-client-request-id": "297dfd37599cee8c02bc16942b8f5de7", + "x-ms-correlation-request-id": "295195d8-82ae-4259-97f9-8ad35b419091", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "00ddd66b-c32e-4e01-9f9f-726107144e77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065706Z:295195d8-82ae-4259-97f9-8ad35b419091" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f0985e502c56969e4f79632f1e8fad8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6398ec04-1143-4e3a-9b52-9e7c433d39e4", + "x-ms-client-request-id": "5f0985e502c56969e4f79632f1e8fad8", + "x-ms-correlation-request-id": "bc9d7d9e-457e-4dc6-a574-3eea3fa6c830", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "a4884636-2e84-4499-a075-a18e9a360dde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065707Z:bc9d7d9e-457e-4dc6-a574-3eea3fa6c830" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "693b202fbd58aeb412cea57270524e51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e66023e-64a4-4210-b8ca-0d367a1ce406", + "x-ms-client-request-id": "693b202fbd58aeb412cea57270524e51", + "x-ms-correlation-request-id": "d17dcf6c-863a-4db2-b1b8-ad2956c9fbbb", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "5f8cf654-a75f-4102-9580-502a4babc6a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065709Z:d17dcf6c-863a-4db2-b1b8-ad2956c9fbbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d03e056d1023484931444a5c35afd1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b4ceb5f-c8c8-4ed6-9a92-b7790c15bca1", + "x-ms-client-request-id": "8d03e056d1023484931444a5c35afd1a", + "x-ms-correlation-request-id": "e94aa660-5d2e-4bbd-9eba-5bfacc790145", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "280dcf69-10a8-4875-af8a-8cefaf18fbc5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065710Z:e94aa660-5d2e-4bbd-9eba-5bfacc790145" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a653dc1f354278fd15a4cf65df6f991", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8388c3a7-f8f5-4fc4-a114-141987ebd5c8", + "x-ms-client-request-id": "0a653dc1f354278fd15a4cf65df6f991", + "x-ms-correlation-request-id": "16c6c685-772e-4a9c-9c13-f5e92cdd9116", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "8f066ec9-5c32-425a-9635-916f6b089eff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065711Z:16c6c685-772e-4a9c-9c13-f5e92cdd9116" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10db45a96ce55dd59c06d543780febb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69551767-a0c3-4ad4-8425-65dc1afb1b7a", + "x-ms-client-request-id": "10db45a96ce55dd59c06d543780febb7", + "x-ms-correlation-request-id": "b84e84a6-4854-4aba-9a83-5151e479fdc3", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "4912fb26-afe4-4225-8697-2b2cca60db9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065712Z:b84e84a6-4854-4aba-9a83-5151e479fdc3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32b18bd143ed62fc51dbbca7848dd79c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d194493d-344e-4cd7-97b4-38ea9e15e5f2", + "x-ms-client-request-id": "32b18bd143ed62fc51dbbca7848dd79c", + "x-ms-correlation-request-id": "1d25198e-9c35-440e-8f9b-78a4d09815d2", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "03ff0fb2-20d2-4b3f-b9bd-a498ce676d22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065714Z:1d25198e-9c35-440e-8f9b-78a4d09815d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7efcb31bec7f543468076e4d1d4bafc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22ea53cd-0416-46f7-becc-34ed392925ce", + "x-ms-client-request-id": "7efcb31bec7f543468076e4d1d4bafc1", + "x-ms-correlation-request-id": "e6aa5b7c-803f-4278-94f4-3696621a9fd9", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "225951fe-453d-41f0-92d4-b08614bb8ee4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065715Z:e6aa5b7c-803f-4278-94f4-3696621a9fd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d225956fc64565a34878bf0aaf2dd90e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa28f5a0-8241-4052-b0da-1414087c41f8", + "x-ms-client-request-id": "d225956fc64565a34878bf0aaf2dd90e", + "x-ms-correlation-request-id": "cf8f73ce-45e7-491b-8019-30fc0d564062", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "3333c657-2df0-4e58-be37-9dd8e93bc3ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065716Z:cf8f73ce-45e7-491b-8019-30fc0d564062" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c528382f6d13e438565ccae6d5af4405", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0816c264-aaa6-4d5d-a61d-8618280e1028", + "x-ms-client-request-id": "c528382f6d13e438565ccae6d5af4405", + "x-ms-correlation-request-id": "e2a23e35-c289-4355-8319-31a258a4a684", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "9c997724-64ea-4372-9564-7ce3fe6154da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065717Z:e2a23e35-c289-4355-8319-31a258a4a684" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef38fb2c046854560f9635062d29a43a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32e672b5-3760-48cb-95fe-d073f4df2800", + "x-ms-client-request-id": "ef38fb2c046854560f9635062d29a43a", + "x-ms-correlation-request-id": "e3a009b2-a171-4c09-992a-c491b491b7b5", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "3fdbb381-fa0b-49b9-9dba-d10e2d7b0044", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065719Z:e3a009b2-a171-4c09-992a-c491b491b7b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e41d5f2dea2302ae5c407be9fcbd9098", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc626eb6-76e7-4b50-8ce0-04fbb43c407d", + "x-ms-client-request-id": "e41d5f2dea2302ae5c407be9fcbd9098", + "x-ms-correlation-request-id": "4c017306-64b5-4ccc-98dc-000e81d5f445", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "be2ffb69-cfa2-44af-a516-17f27790114a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065720Z:4c017306-64b5-4ccc-98dc-000e81d5f445" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4deb933eaf52aa5e1d4b57c3732b72c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b94d4bfe-c0e4-4d66-913e-22557fe3b185", + "x-ms-client-request-id": "b4deb933eaf52aa5e1d4b57c3732b72c", + "x-ms-correlation-request-id": "14e07fb2-ab0c-4892-80cf-f5509c566632", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "9c0f3fb0-59e3-4555-81a0-f82b54598400", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065721Z:14e07fb2-ab0c-4892-80cf-f5509c566632" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75b88fb7609142e24c359228896d5752", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63b1fa8d-2d41-4ff0-8a8f-22284befc36f", + "x-ms-client-request-id": "75b88fb7609142e24c359228896d5752", + "x-ms-correlation-request-id": "93e583b4-9d6a-4f1c-877f-83d01653acd2", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "c2e43f4a-a0bd-4b24-a376-587de977b69e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065723Z:93e583b4-9d6a-4f1c-877f-83d01653acd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74d29d06ef4b4345baf3034e3431cb2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15d39df2-2724-43bc-bbdf-98db79fc9d2e", + "x-ms-client-request-id": "74d29d06ef4b4345baf3034e3431cb2a", + "x-ms-correlation-request-id": "12e6e842-8f53-41aa-97de-74aa1e5eabc2", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "9f35eaa7-9b18-4a3b-8c1e-7b24c2f7cc92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065724Z:12e6e842-8f53-41aa-97de-74aa1e5eabc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d324e881a05d307d79b68c0577ca174", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cb9b8d9-01f0-44ff-9d6a-8a3e620365fa", + "x-ms-client-request-id": "6d324e881a05d307d79b68c0577ca174", + "x-ms-correlation-request-id": "865bea4e-78d0-4061-b312-fe48b1a25e30", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "8ed67b0b-e301-4b6e-b71e-947837d45c31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065725Z:865bea4e-78d0-4061-b312-fe48b1a25e30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9976637c435fc7e04a74ba9e5c930d1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da8e40d6-89cf-4b68-8085-897dfb2238fe", + "x-ms-client-request-id": "9976637c435fc7e04a74ba9e5c930d1b", + "x-ms-correlation-request-id": "965b339c-25ff-4684-8975-882189868ff3", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "72e75117-ce3c-494f-a634-d728b4b4856f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065726Z:965b339c-25ff-4684-8975-882189868ff3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3aa06869ea3beb4d96ff9caf8785ec3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f381fd4-e9ed-49dc-acbc-61145c22dc30", + "x-ms-client-request-id": "3aa06869ea3beb4d96ff9caf8785ec3d", + "x-ms-correlation-request-id": "ff4546b1-4462-4967-a46d-d1e460054ff8", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "80364587-9264-452f-a5fe-7dd87252cc4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065728Z:ff4546b1-4462-4967-a46d-d1e460054ff8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1d28e5131ba45ca6e6a239060687643", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ef31b8b-a531-48c9-97c5-11571c2a02d8", + "x-ms-client-request-id": "d1d28e5131ba45ca6e6a239060687643", + "x-ms-correlation-request-id": "f1339daf-5585-4f40-8236-7df7ef769bc1", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "7a3f0c14-2d74-4ce6-835e-7ccf72cdc263", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065729Z:f1339daf-5585-4f40-8236-7df7ef769bc1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee564c8e67dc9139158b0360a6303fc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a8a8f81-ce10-4017-8372-cbae12fb80aa", + "x-ms-client-request-id": "ee564c8e67dc9139158b0360a6303fc4", + "x-ms-correlation-request-id": "b93eea8f-ab93-497b-b19a-9d340b8c8bff", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "aef5f5f4-6ee3-40cd-b63c-f6a36aeb1136", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065730Z:b93eea8f-ab93-497b-b19a-9d340b8c8bff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce4c7d873cc137609e5accd0c7bc8b2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9edd378d-ac91-4270-9d3f-4b301ca7151b", + "x-ms-client-request-id": "ce4c7d873cc137609e5accd0c7bc8b2d", + "x-ms-correlation-request-id": "9dbfcbf1-8580-478c-a7d2-0ec65ed364a1", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "07052f21-3bcb-4bfd-b92b-1c2a00f07882", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065731Z:9dbfcbf1-8580-478c-a7d2-0ec65ed364a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a215988fe2eea615441bb2f2e699f3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6567ae9-0be8-499c-a611-27288772b707", + "x-ms-client-request-id": "3a215988fe2eea615441bb2f2e699f3d", + "x-ms-correlation-request-id": "d0337730-77e5-4acc-b1ef-912259cd9d7e", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "5f3327ce-8e5b-479e-99df-c28ce8ad3380", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065733Z:d0337730-77e5-4acc-b1ef-912259cd9d7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2085e2aa81b5282ec1e50829b69c959", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "624052aa-55cd-44e2-bc15-d763787a4d66", + "x-ms-client-request-id": "e2085e2aa81b5282ec1e50829b69c959", + "x-ms-correlation-request-id": "f3a6ee1c-8ef3-436a-b91e-0a5ae2e04a04", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "94ed633c-14a7-49c2-9daa-378285a5f895", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065734Z:f3a6ee1c-8ef3-436a-b91e-0a5ae2e04a04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cd8d600040f89951c62797f80310934", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a678f333-3fec-4cd9-9ba3-1616e96c2c48", + "x-ms-client-request-id": "4cd8d600040f89951c62797f80310934", + "x-ms-correlation-request-id": "498c3654-cc66-4a36-882d-e08b358e9bce", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "1332fe00-01df-4e2f-810d-a7edf7ab346a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065735Z:498c3654-cc66-4a36-882d-e08b358e9bce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69a58ebba8b3e011d7cf4e10adde4eeb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba6114bd-64df-4d9a-b5b5-030fd1ed0278", + "x-ms-client-request-id": "69a58ebba8b3e011d7cf4e10adde4eeb", + "x-ms-correlation-request-id": "83148669-2e12-4e5f-aeeb-61e9407bd411", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "4a279e1f-4ef9-44fa-83f9-ac3c7095b631", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065736Z:83148669-2e12-4e5f-aeeb-61e9407bd411" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "582e62775291252dc87fc6b92e02d1bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8ace524-7b5c-46ae-8fd0-a8f801e13949", + "x-ms-client-request-id": "582e62775291252dc87fc6b92e02d1bb", + "x-ms-correlation-request-id": "f78b10f7-3899-49b9-bc8d-1dc99220aaf9", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "7af7124a-2f60-4453-930f-5e4a2d21f3ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065738Z:f78b10f7-3899-49b9-bc8d-1dc99220aaf9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0cc61b145fc358a5c4f8753fb685db3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fdaad94-f0da-4e00-a48f-486fbe8d4c08", + "x-ms-client-request-id": "0cc61b145fc358a5c4f8753fb685db3d", + "x-ms-correlation-request-id": "1bfc87a3-7139-485b-9459-478a6850dd00", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "11403da3-fdb5-411c-aeec-26d61d11c70b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065739Z:1bfc87a3-7139-485b-9459-478a6850dd00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e088d13b10269a2607fa134e158b1d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "699d5442-8e8f-4450-97a1-df4c9d84c947", + "x-ms-client-request-id": "1e088d13b10269a2607fa134e158b1d4", + "x-ms-correlation-request-id": "b5abcef9-33c1-4911-b33c-cd58655bd9ed", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "5f2257c2-3076-4357-b4e5-35803998c3ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065740Z:b5abcef9-33c1-4911-b33c-cd58655bd9ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91fb92fd42181828bcd69399dcee6f43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6386e8f-75c8-4194-a9c3-8ea776e782c1", + "x-ms-client-request-id": "91fb92fd42181828bcd69399dcee6f43", + "x-ms-correlation-request-id": "043ca980-25ff-4311-bd0d-e8b36ddca608", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "9d0a27af-00db-4c18-be60-43097469f4af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065742Z:043ca980-25ff-4311-bd0d-e8b36ddca608" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0a589a3b3fa62b8795dab44be71766b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93392239-c44b-4723-829c-f80d99f5cf4a", + "x-ms-client-request-id": "a0a589a3b3fa62b8795dab44be71766b", + "x-ms-correlation-request-id": "b213f507-e8bc-4083-8984-6c05598f8e87", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "4461a199-01a6-4514-b102-1292cc857707", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065743Z:b213f507-e8bc-4083-8984-6c05598f8e87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2341a1464989d12465f0612b1e098c72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0258027e-ec1c-406f-888a-4086bf749a0d", + "x-ms-client-request-id": "2341a1464989d12465f0612b1e098c72", + "x-ms-correlation-request-id": "32b33956-7c17-4373-97c3-adaf4ae0033c", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "41a957ec-5163-47f6-a955-9252f29d68e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065744Z:32b33956-7c17-4373-97c3-adaf4ae0033c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58905e1011b24adada9818bb96e3594a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9631a241-c2e2-4fc2-8a91-deaeb85c1632", + "x-ms-client-request-id": "58905e1011b24adada9818bb96e3594a", + "x-ms-correlation-request-id": "746f1d23-3fb5-4a7e-a747-b4fe4f980bf0", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "a9083c45-4e48-4b35-8924-d4d1083afc42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065745Z:746f1d23-3fb5-4a7e-a747-b4fe4f980bf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b5327604bac59b964d43a0a518c446f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1498bf7-1eac-41ef-88bf-7574a7b2e0c0", + "x-ms-client-request-id": "3b5327604bac59b964d43a0a518c446f", + "x-ms-correlation-request-id": "5a940cd5-ab68-4345-be47-4002fa7fdcbd", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "e015c390-018d-46bc-96da-1698bb44a60a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065747Z:5a940cd5-ab68-4345-be47-4002fa7fdcbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "603439d01ee134b9c7f749f031693b81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d1774a8a-d2a0-4f6c-9abe-97b64d2210ae", + "x-ms-client-request-id": "603439d01ee134b9c7f749f031693b81", + "x-ms-correlation-request-id": "9c9bcf98-de18-44c6-a71a-04661f52625f", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "8c191dca-2d81-4489-9ddb-0bb5c365f84e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065748Z:9c9bcf98-de18-44c6-a71a-04661f52625f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6cb179651b5c4c5a436f3ded6cff94d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "90617e04-3eef-4a76-baaf-668b874b3527", + "x-ms-client-request-id": "f6cb179651b5c4c5a436f3ded6cff94d", + "x-ms-correlation-request-id": "5cf688e6-e8ea-40a4-801f-4ea7ac36877b", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "c94b2d6a-68cd-48ed-82f9-5e9016cc44ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065749Z:5cf688e6-e8ea-40a4-801f-4ea7ac36877b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5deaa854f8af41686e1e74b501c828fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b8cf02e-2935-43ae-ad0a-9cf4e9ab75fd", + "x-ms-client-request-id": "5deaa854f8af41686e1e74b501c828fa", + "x-ms-correlation-request-id": "6bcc1a82-9922-408c-94ba-d436203d4550", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "72985679-1e40-4d32-8c6b-ebefffc675ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065750Z:6bcc1a82-9922-408c-94ba-d436203d4550" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a73b9994ec17fb9736fbbaa2adb5ef7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8641b39c-d5e7-4b09-b22f-5ba8dab8bb13", + "x-ms-client-request-id": "3a73b9994ec17fb9736fbbaa2adb5ef7", + "x-ms-correlation-request-id": "ae52f637-a862-4227-96d4-fc51f5a6ce1d", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "19e410a9-d77b-446d-8215-013590035c97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065752Z:ae52f637-a862-4227-96d4-fc51f5a6ce1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "889cfcfddd7f9dd1ae898897dc0fc2db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67764b1f-1375-49d8-9cf4-79ed61c133ad", + "x-ms-client-request-id": "889cfcfddd7f9dd1ae898897dc0fc2db", + "x-ms-correlation-request-id": "7ee59d9a-3f9d-4dae-84c2-3d00154744b5", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "ee16ca55-9ca7-452b-91cb-c85f6f734a7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065753Z:7ee59d9a-3f9d-4dae-84c2-3d00154744b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d45f80ebf5b068cee6ae9403cbe1793", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4183365d-7786-4a6a-bbe0-f316be61408e", + "x-ms-client-request-id": "1d45f80ebf5b068cee6ae9403cbe1793", + "x-ms-correlation-request-id": "42330c7b-df82-42a6-8c21-6b645f9f6b51", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "c91da1ae-778d-4a46-832f-30e6374b7b06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065754Z:42330c7b-df82-42a6-8c21-6b645f9f6b51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05b77cbf9f2cbb7be7d58b37c622a263", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a50ea1ed-51a7-460c-8ee2-5c559aa1c996", + "x-ms-client-request-id": "05b77cbf9f2cbb7be7d58b37c622a263", + "x-ms-correlation-request-id": "4fd22428-0999-404e-bc8b-81db1ad8d6dd", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "c782090a-de00-47d7-a186-2a3a3a32a5c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065756Z:4fd22428-0999-404e-bc8b-81db1ad8d6dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "319ce0ac41953e9c6f969914f39161f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92ffb0f7-ed23-4bb4-9928-e87fdb029445", + "x-ms-client-request-id": "319ce0ac41953e9c6f969914f39161f0", + "x-ms-correlation-request-id": "c626fe02-c8aa-407e-8152-79097e57162e", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "444bac7d-1f4c-4b2c-9c83-b7538618b0da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065757Z:c626fe02-c8aa-407e-8152-79097e57162e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60d7f472bc576eaf7d89358533553fcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6b3dda9-dbda-4fda-b646-e47e37e8a0f9", + "x-ms-client-request-id": "60d7f472bc576eaf7d89358533553fcc", + "x-ms-correlation-request-id": "5731b512-f39b-41e7-9fcc-226887212f08", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "3f857ebd-746b-4dee-945f-bc8991678399", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065758Z:5731b512-f39b-41e7-9fcc-226887212f08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c9386c8e5217efde07995960666c755", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:57:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca53bb58-e519-4492-8ea0-d8bef7d1f789", + "x-ms-client-request-id": "5c9386c8e5217efde07995960666c755", + "x-ms-correlation-request-id": "135ce21c-30f0-4d1b-b620-3d91ef263e6f", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "3f6740b3-7876-4548-afa5-ed66ca9c21d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065759Z:135ce21c-30f0-4d1b-b620-3d91ef263e6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1c49b74424aef0b302eb40c0b160b1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e7a1d44-d263-465f-8a4f-6becccfc27d7", + "x-ms-client-request-id": "d1c49b74424aef0b302eb40c0b160b1a", + "x-ms-correlation-request-id": "897b190e-257b-4e41-ab4f-0a2c562c6231", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "8f4b5306-b636-4d30-9b33-b660b540f3c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065801Z:897b190e-257b-4e41-ab4f-0a2c562c6231" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d4ccd5604fd8dcff7597fde27196716", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7fd1bd79-19f3-4416-ba9b-9e4da892a3ae", + "x-ms-client-request-id": "6d4ccd5604fd8dcff7597fde27196716", + "x-ms-correlation-request-id": "590a1220-e387-4400-a6f0-7dd1e53386b2", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "a97832ea-f3fd-4159-a2a6-e95c31996936", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065802Z:590a1220-e387-4400-a6f0-7dd1e53386b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9810dfc16e9085817aa42bf230f172ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e696b8f-6d25-48dd-9702-99bc8c24d0b1", + "x-ms-client-request-id": "9810dfc16e9085817aa42bf230f172ca", + "x-ms-correlation-request-id": "5465c947-2c4d-42a4-b333-b9df71acdf49", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "a131c6c8-19f2-4c42-b7a5-d29515d9b9e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065803Z:5465c947-2c4d-42a4-b333-b9df71acdf49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "383f7b6d5a1a7058cc36d9f1c32cc817", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a7f0bb4-9a55-44ee-852a-25815ef900ac", + "x-ms-client-request-id": "383f7b6d5a1a7058cc36d9f1c32cc817", + "x-ms-correlation-request-id": "60ef81a3-a0e6-4aef-96ee-f2ca9ae94f06", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "fc43bd85-6253-4ad5-bcda-c42d464573e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065804Z:60ef81a3-a0e6-4aef-96ee-f2ca9ae94f06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b4a9ec67305e7894bc7f259d8dc5c05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bccd259b-b51e-4565-96c2-f5a10388b719", + "x-ms-client-request-id": "2b4a9ec67305e7894bc7f259d8dc5c05", + "x-ms-correlation-request-id": "b2e1197a-2c85-41bd-a567-8d15872bfa75", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "6a43dbb2-a81e-49b6-aa7d-6e27a62bb608", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065806Z:b2e1197a-2c85-41bd-a567-8d15872bfa75" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac71b5e62fd967fb87a0cc5a948fc24d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8142f20-fcec-449a-b6f8-f757b0f9f073", + "x-ms-client-request-id": "ac71b5e62fd967fb87a0cc5a948fc24d", + "x-ms-correlation-request-id": "465263bd-4cfd-48e1-baaa-8b2483d5a8de", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "2eff56e4-c2d8-4982-9500-4db72ed9da64", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065807Z:465263bd-4cfd-48e1-baaa-8b2483d5a8de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "922b14db46a7fac4f158ec5367fe97ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6d591d0-521e-4211-8662-458eacef4926", + "x-ms-client-request-id": "922b14db46a7fac4f158ec5367fe97ef", + "x-ms-correlation-request-id": "e9812984-c9b6-4a80-ac48-4ffb8dbb9e56", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "65ac5c49-8e03-48c9-a2e7-8d75d80153fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065808Z:e9812984-c9b6-4a80-ac48-4ffb8dbb9e56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d0bd4da1cbb973ea2e2a464a72f52bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a319cf93-8013-4a00-84e0-562cc6e83ede", + "x-ms-client-request-id": "0d0bd4da1cbb973ea2e2a464a72f52bc", + "x-ms-correlation-request-id": "88f8b58a-8b27-4205-a3dd-2f266e116fe6", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "496d754c-f630-4d4c-bf83-cb03820304fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065809Z:88f8b58a-8b27-4205-a3dd-2f266e116fe6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c47da404c9b19f5ef077ba8042a80088", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13fc294c-5e4a-4993-bbbf-88cb4f3b79e2", + "x-ms-client-request-id": "c47da404c9b19f5ef077ba8042a80088", + "x-ms-correlation-request-id": "4f9c4c7d-3f31-48ad-8f8d-f5525552a2d2", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "01732319-242f-48d6-8436-23dc2290d252", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065811Z:4f9c4c7d-3f31-48ad-8f8d-f5525552a2d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c07fdd09b484bf92d693f0c4a25f52c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "350f3a61-c179-4390-bd27-36386e93696a", + "x-ms-client-request-id": "c07fdd09b484bf92d693f0c4a25f52c1", + "x-ms-correlation-request-id": "5ba5c61f-edf7-473d-9a95-768ed38e0903", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "281f8dd9-e156-45f0-9645-c6e99daa373e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065812Z:5ba5c61f-edf7-473d-9a95-768ed38e0903" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c24e3005d380103d756b1d4461bd55fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3cbb1176-62eb-4e1e-90d7-067fd1915120", + "x-ms-client-request-id": "c24e3005d380103d756b1d4461bd55fa", + "x-ms-correlation-request-id": "63b9b69b-8e46-41c9-a5ff-b0239b504c98", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "a112643f-9e37-4c7a-9ba2-9ad39d803868", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065813Z:63b9b69b-8e46-41c9-a5ff-b0239b504c98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca5b1be292b0503712beed1dd89afc90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68ae12f9-571e-4fea-b592-9fd85c1d2eb8", + "x-ms-client-request-id": "ca5b1be292b0503712beed1dd89afc90", + "x-ms-correlation-request-id": "563a804a-da86-44fd-a896-a12eba4d38d4", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "65161823-a786-437d-ad89-633d16a572a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065815Z:563a804a-da86-44fd-a896-a12eba4d38d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "117bf9243d5935079f6e4b19974e5d19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "280e1b38-66cc-4af6-bf62-e052dd281fd2", + "x-ms-client-request-id": "117bf9243d5935079f6e4b19974e5d19", + "x-ms-correlation-request-id": "a75013cb-c38e-4859-93fa-0dd51a6491ff", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "e4acb180-cf2c-41a4-a70b-e02790577c94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065816Z:a75013cb-c38e-4859-93fa-0dd51a6491ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "87e2f63e88047311f9feb0c2e62037db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf661b55-d54b-4a57-899b-807a802f22ce", + "x-ms-client-request-id": "87e2f63e88047311f9feb0c2e62037db", + "x-ms-correlation-request-id": "099b2939-f99b-49e3-97ea-e347a7aac1bd", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "6f1f5a8a-52c9-4a10-a18c-4a61b6b99066", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065817Z:099b2939-f99b-49e3-97ea-e347a7aac1bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af456400-fe8c-44a7-ac4c-2c277b60144e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "671f8c6e4341a4a013252a41461eb9c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "355d2c02-cf80-4d30-8b1a-d2ef2688950c", + "x-ms-client-request-id": "671f8c6e4341a4a013252a41461eb9c3", + "x-ms-correlation-request-id": "8716079d-7545-47e0-92d6-5a03aeab36c1", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "f71b16fc-c58b-4fd1-a749-1f63e55651ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065818Z:8716079d-7545-47e0-92d6-5a03aeab36c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2ded46175b79b8ce808185b8d454f7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2414", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd9392bb-4ab4-4c44-b59e-7af0ca8a02ec", + "x-ms-client-request-id": "e2ded46175b79b8ce808185b8d454f7e", + "x-ms-correlation-request-id": "41499504-1cb7-4598-a273-a32d6f56d8c2", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "3dfb58b1-81f6-4759-baf2-10c01328e0bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065819Z:41499504-1cb7-4598-a273-a32d6f56d8c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1046\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022caf1114a-d549-445a-87a1-ec2e5eca65f9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229e303b96-178c-4e37-bae4-87e467b85da9\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9024\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046/ipConfigurations/azsmnet9024\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022caf1114a-d549-445a-87a1-ec2e5eca65f9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Basic\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046/ipConfigurations/azsmnet9024\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.175.199.128\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0baa7037f52efbd7563d73de5dcf2cdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2414", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1aaade47-1471-43c2-b2fe-8be0860fe20d", + "x-ms-client-request-id": "0baa7037f52efbd7563d73de5dcf2cdb", + "x-ms-correlation-request-id": "215ca82e-d0ce-4865-8849-e8b36eef27a7", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "43e6b3d1-df93-4847-8655-7c95b98568cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065819Z:215ca82e-d0ce-4865-8849-e8b36eef27a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1046\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022caf1114a-d549-445a-87a1-ec2e5eca65f9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229e303b96-178c-4e37-bae4-87e467b85da9\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9024\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046/ipConfigurations/azsmnet9024\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022caf1114a-d549-445a-87a1-ec2e5eca65f9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Basic\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046/ipConfigurations/azsmnet9024\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.175.199.128\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "640", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1161ec455541f923ff847f392b4517cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value", + "tag2": "value", + "tag3": "value" + }, + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet9024", + "id": null, + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "enableBgp": false, + "sku": { + "name": "Basic", + "tier": "Basic" + } + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2576", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ad4f629-ab72-4173-aa73-8de58518fd48", + "x-ms-client-request-id": "1161ec455541f923ff847f392b4517cd", + "x-ms-correlation-request-id": "e59b744e-9315-4032-ba8c-d26e1b6dafd3", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "82818a34-5d3f-4184-be84-225ca4cf01ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065823Z:e59b744e-9315-4032-ba8c-d26e1b6dafd3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1046\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f1ca5aaf-8063-4c1a-8ef3-bdabcc9c3867\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022,\r\n", + " \u0022tag2\u0022: \u0022value\u0022,\r\n", + " \u0022tag3\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229e303b96-178c-4e37-bae4-87e467b85da9\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9024\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046/ipConfigurations/azsmnet9024\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f1ca5aaf-8063-4c1a-8ef3-bdabcc9c3867\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Basic\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022SSTP\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 0,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046/ipConfigurations/azsmnet9024\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [],\r\n", + " \u0022customBgpIpAddresses\u0022: []\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0163cdb3de4e13d4db00baa769dcf10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c091b42-db85-4765-ae8a-278052755d35", + "x-ms-client-request-id": "a0163cdb3de4e13d4db00baa769dcf10", + "x-ms-correlation-request-id": "d58a2bfc-553d-403f-a9f9-51ab285f56f8", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "843d18fc-7dc7-4ce0-96e5-bfc5041a024c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065824Z:d58a2bfc-553d-403f-a9f9-51ab285f56f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b108a52556c5976757f5145ec9a8f751", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "076d46ed-a44a-433d-ba24-aa9d9574c34d", + "x-ms-client-request-id": "b108a52556c5976757f5145ec9a8f751", + "x-ms-correlation-request-id": "88cacc08-d523-4c89-8843-206440c76c2f", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "27a85181-128c-4b30-b7ac-070bad5e0573", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065825Z:88cacc08-d523-4c89-8843-206440c76c2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee5e6646772f98e96e2888c2a1eaf55f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95b399a1-a402-4ced-93fe-0dbf84e94d72", + "x-ms-client-request-id": "ee5e6646772f98e96e2888c2a1eaf55f", + "x-ms-correlation-request-id": "fa1f0ad7-15f5-487b-8a30-200e05afc399", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "0ef92831-5b9c-4c8c-b80c-e45de80308e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065826Z:fa1f0ad7-15f5-487b-8a30-200e05afc399" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b547b138ca68552d57e48ef29df18a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac7544f8-c0a5-44bd-9a93-728804d4adb3", + "x-ms-client-request-id": "5b547b138ca68552d57e48ef29df18a4", + "x-ms-correlation-request-id": "284e4284-c46d-4a46-87fb-f45f1cc06211", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "73b3d486-e827-4a07-83c7-2a5233f1021d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065827Z:284e4284-c46d-4a46-87fb-f45f1cc06211" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f64bab9e13faee1bc6f439dcda4f56d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb738493-20fa-41f4-8eaf-4372517324ae", + "x-ms-client-request-id": "0f64bab9e13faee1bc6f439dcda4f56d", + "x-ms-correlation-request-id": "b648f171-5161-4dd1-8acb-4ddad7b54aa4", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "98679ef9-7ada-4d9e-a0ec-143ed2bc70e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065829Z:b648f171-5161-4dd1-8acb-4ddad7b54aa4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e4ab5ff9c54b9aa13d918b02efa6f8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b51e60b-692f-42dc-b430-66c96319b9cc", + "x-ms-client-request-id": "4e4ab5ff9c54b9aa13d918b02efa6f8f", + "x-ms-correlation-request-id": "4fae7539-9688-4d75-b3a7-2f765ce91cf4", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "b95eaaca-e75e-43fd-8e40-0c30376b89b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065830Z:4fae7539-9688-4d75-b3a7-2f765ce91cf4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e609e40fe685311f99a59f3649b5b730", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8f9dfd7-e648-48dc-b8fd-448c07ef24e7", + "x-ms-client-request-id": "e609e40fe685311f99a59f3649b5b730", + "x-ms-correlation-request-id": "042d7f29-5165-4c5d-b026-5872a1cbff67", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "f975557e-2ace-4c9f-9e97-5df55e993a83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065831Z:042d7f29-5165-4c5d-b026-5872a1cbff67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73efda88ca941c4f10aafb66c8317fc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0482c46-ed18-4b90-87aa-ba42be55c2a1", + "x-ms-client-request-id": "73efda88ca941c4f10aafb66c8317fc2", + "x-ms-correlation-request-id": "e2b9df6d-0cf3-41fd-a59f-0679bcd90393", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "ff7700fa-68c1-4492-9cbe-27470529055d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065833Z:e2b9df6d-0cf3-41fd-a59f-0679bcd90393" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e88db3000e9b19e89618b4affd74705e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8110dbc-6aab-40f0-8343-0c7b6a6a4d2a", + "x-ms-client-request-id": "e88db3000e9b19e89618b4affd74705e", + "x-ms-correlation-request-id": "49184da5-ac25-4201-adcb-0de62289dcdc", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "9b760119-a4d0-4983-a4e4-16d2c5b1222e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065834Z:49184da5-ac25-4201-adcb-0de62289dcdc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5427e821fb0b45fa95ecd6daeab96968", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9721301c-de42-43e7-bee0-9ba7f26d941f", + "x-ms-client-request-id": "5427e821fb0b45fa95ecd6daeab96968", + "x-ms-correlation-request-id": "8f21162d-a92b-42e5-8ad6-3bc2969db039", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "6d088986-1c8b-449f-b159-77e39bf7b894", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065835Z:8f21162d-a92b-42e5-8ad6-3bc2969db039" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9536dc25cf277995f2d5dd7c15a01f9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13b7b6e7-b0de-484e-b64d-8f15167db151", + "x-ms-client-request-id": "9536dc25cf277995f2d5dd7c15a01f9b", + "x-ms-correlation-request-id": "174883d0-5a89-47ba-86b6-2df06aca4558", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "f2a512f8-eb67-4484-acfa-44e0e5d8a8f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065836Z:174883d0-5a89-47ba-86b6-2df06aca4558" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0459c3a2b0904b6b94853ae370d2fdd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1441ed0-39e7-4024-91c8-00d638e61ed0", + "x-ms-client-request-id": "e0459c3a2b0904b6b94853ae370d2fdd", + "x-ms-correlation-request-id": "34557265-fd75-4197-8fd2-b62aedf176cd", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "86a6f234-e9dd-440a-895c-96456b11fbe4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065838Z:34557265-fd75-4197-8fd2-b62aedf176cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20894cafdb3e513752ad62351e7e2ff4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76a02d32-8133-417a-89bb-4ea20535102d", + "x-ms-client-request-id": "20894cafdb3e513752ad62351e7e2ff4", + "x-ms-correlation-request-id": "eeceef15-cd2a-46d3-9095-a5c9ba4fca5d", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "ff5479c4-1745-4c87-97f2-7a7954acff8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065839Z:eeceef15-cd2a-46d3-9095-a5c9ba4fca5d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4da03bcd8873fa5e2531dcde7be742e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e051d869-4646-48cb-b6d3-1b41cd8eea47", + "x-ms-client-request-id": "4da03bcd8873fa5e2531dcde7be742e4", + "x-ms-correlation-request-id": "a69539e5-11e3-4b23-9c4f-722903bd0ac3", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "49b422a7-490d-4cfe-8dbe-5e77e3d33e4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065840Z:a69539e5-11e3-4b23-9c4f-722903bd0ac3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9cd00a6ff175f5d65f38d5bc881e63b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e196ebd-ac2c-4743-a74c-33c590dcc8d6", + "x-ms-client-request-id": "c9cd00a6ff175f5d65f38d5bc881e63b", + "x-ms-correlation-request-id": "0943a996-b53b-408b-8068-b8761fb37e6c", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "520f3756-d356-4134-9451-c8b00280caa5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065841Z:0943a996-b53b-408b-8068-b8761fb37e6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fce05f19e16d2669ed8efa0dff58d66a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27bd69f5-672e-4b9d-bc27-4b1c1be4513f", + "x-ms-client-request-id": "fce05f19e16d2669ed8efa0dff58d66a", + "x-ms-correlation-request-id": "c23b92e5-c946-4d03-8197-55396616e33a", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "5a9835da-6890-4eb4-a1de-e49bcd307829", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065843Z:c23b92e5-c946-4d03-8197-55396616e33a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e8f7e6b66b1cddddd40e780fb0331a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e58dd9ff-1991-4686-ba1d-9db90d962964", + "x-ms-client-request-id": "1e8f7e6b66b1cddddd40e780fb0331a4", + "x-ms-correlation-request-id": "d8ba7d98-b543-41b9-8710-19e925844eb4", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "b534bc15-23c4-4a3b-8385-9db5f188da1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065844Z:d8ba7d98-b543-41b9-8710-19e925844eb4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cc5a04a4506c47696a6db880550600d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92eb9d4d-9dd7-4425-8e3f-03455a1db467", + "x-ms-client-request-id": "1cc5a04a4506c47696a6db880550600d", + "x-ms-correlation-request-id": "887e1cef-315b-45ae-a614-bd27bd5edfb8", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "21e20e67-e456-4347-9095-d0c44d6615aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065845Z:887e1cef-315b-45ae-a614-bd27bd5edfb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4aef221dc8f1b38982131e2dfae92bea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1790f055-d56e-454d-ad08-37c0731c141c", + "x-ms-client-request-id": "4aef221dc8f1b38982131e2dfae92bea", + "x-ms-correlation-request-id": "cfe31ee4-fa9c-4851-89a2-b37b9614fb57", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "3f0920b5-a672-4425-8a6d-3712b090d9e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065846Z:cfe31ee4-fa9c-4851-89a2-b37b9614fb57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ec2555cb992266408cb870a8a54c88d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08ba92a0-a4c0-4561-9769-a082f53dbb1e", + "x-ms-client-request-id": "5ec2555cb992266408cb870a8a54c88d", + "x-ms-correlation-request-id": "3d72fff2-940d-40af-ba28-09db33f64cd5", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "3a69729a-11f0-4cce-a7d9-22c417e697c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065848Z:3d72fff2-940d-40af-ba28-09db33f64cd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d863d9e0e71382b317129af32648caad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5f53103-c44c-4ebc-9503-77d2c97baf2c", + "x-ms-client-request-id": "d863d9e0e71382b317129af32648caad", + "x-ms-correlation-request-id": "7adb1c78-13d2-4067-85fd-ddb1ea8e319b", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "10f5fdd8-86e0-460d-aa85-cda36262ba05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065849Z:7adb1c78-13d2-4067-85fd-ddb1ea8e319b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b02cf17b028e637bbec94226407f282e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78316d5e-2fc7-4e4e-90b5-cbee613dbe95", + "x-ms-client-request-id": "b02cf17b028e637bbec94226407f282e", + "x-ms-correlation-request-id": "2372feb9-1788-46a8-a752-8dac9d69916a", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "bcdb2924-54e6-49bb-a742-2bc83f6eefb1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065850Z:2372feb9-1788-46a8-a752-8dac9d69916a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "204c914a528675d6a23f467f1f70ffbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3973ca41-8f2f-4594-8162-80cedf4dc1a7", + "x-ms-client-request-id": "204c914a528675d6a23f467f1f70ffbf", + "x-ms-correlation-request-id": "148cfe1b-c865-4ffe-979d-d5fa54cb2fd2", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "b3b067b0-7b6b-4dd6-bae1-f35705d0d386", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065852Z:148cfe1b-c865-4ffe-979d-d5fa54cb2fd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "988eda001827ddff5e00194aa48d4297", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5b2837f-79d2-4656-9a19-1000c588dfce", + "x-ms-client-request-id": "988eda001827ddff5e00194aa48d4297", + "x-ms-correlation-request-id": "af966716-8556-4e66-8fc8-4a7a15bf1667", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "77140d3a-d937-4295-886b-1c8446d9bf11", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065853Z:af966716-8556-4e66-8fc8-4a7a15bf1667" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95a86ce9aafb28271ab60e4fbbfb434e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12157696-17af-49c5-9167-613887eb308f", + "x-ms-client-request-id": "95a86ce9aafb28271ab60e4fbbfb434e", + "x-ms-correlation-request-id": "da620747-913d-4dd2-b5a0-23d462b12c76", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "ad706d04-eef1-4e21-a1a9-a1aa4d0ff91f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065854Z:da620747-913d-4dd2-b5a0-23d462b12c76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "662583c990f03206926fc185398cd014", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "695d280e-9f5a-4af1-abbc-dab7cdfad267", + "x-ms-client-request-id": "662583c990f03206926fc185398cd014", + "x-ms-correlation-request-id": "950d45fe-c6d7-4d08-b037-39ebc60c8b55", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "e4ba1ca4-e452-4aa3-b294-f2b64dabd508", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065856Z:950d45fe-c6d7-4d08-b037-39ebc60c8b55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b396affc6ac756c3b2667d700aaf2263", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a929b92-a06d-4168-8e31-2de6021e8658", + "x-ms-client-request-id": "b396affc6ac756c3b2667d700aaf2263", + "x-ms-correlation-request-id": "b7aef273-ea5d-4fca-b7b0-02f19636bb0e", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "58f88265-36c3-4562-908a-9955f544c836", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065857Z:b7aef273-ea5d-4fca-b7b0-02f19636bb0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2180cbbcdc6759a66676038ce9a1ef8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3a0bfd2-2792-4f00-a0ea-2247a3073575", + "x-ms-client-request-id": "2180cbbcdc6759a66676038ce9a1ef8e", + "x-ms-correlation-request-id": "30f531f5-8bfb-4946-b892-a8ce1fd7f5ee", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "89cd03b9-1337-41de-8e04-ce5492ea8319", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065858Z:30f531f5-8bfb-4946-b892-a8ce1fd7f5ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c52f9e690645e86bfceb38a129528e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:58:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7a7ec08-4e83-445d-ada0-29c73d3b6b41", + "x-ms-client-request-id": "0c52f9e690645e86bfceb38a129528e2", + "x-ms-correlation-request-id": "9e811cbc-adfd-4dc2-a574-62f19ea1a442", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "921bd198-1325-4358-a090-f542fe941cfe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065859Z:9e811cbc-adfd-4dc2-a574-62f19ea1a442" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6dc95d4caf0b20ac083c4c5167366d11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37b05205-4f66-42b5-bf7a-0cc2b56e6a7f", + "x-ms-client-request-id": "6dc95d4caf0b20ac083c4c5167366d11", + "x-ms-correlation-request-id": "aa096194-2e5e-4db4-b437-1452206bd0e6", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "b60f3557-505e-41c0-ac86-90fd7dc8774c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065901Z:aa096194-2e5e-4db4-b437-1452206bd0e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "118aef76165d2bfe45226199281b47d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "852e25f0-5b79-4221-8fe3-5d4066808263", + "x-ms-client-request-id": "118aef76165d2bfe45226199281b47d0", + "x-ms-correlation-request-id": "8008b55a-b6d4-41a5-8034-e014c4fc6414", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "52ee7208-38ad-4b05-836c-cade5cee474b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065903Z:8008b55a-b6d4-41a5-8034-e014c4fc6414" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b40204d81d736834c3103284334f789", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84b572f7-4554-416a-a9c9-9956e71775b9", + "x-ms-client-request-id": "8b40204d81d736834c3103284334f789", + "x-ms-correlation-request-id": "836779ed-1ca3-4964-8f13-2aa9ef35e524", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "8b815951-f43d-4bee-af2b-052412d9a7f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065904Z:836779ed-1ca3-4964-8f13-2aa9ef35e524" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2214a260170a36845f9d28e94e13f8ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8ecc734-8f1c-46b2-a964-2c5fa465ab59", + "x-ms-client-request-id": "2214a260170a36845f9d28e94e13f8ec", + "x-ms-correlation-request-id": "120b2abf-29e1-4daa-87a8-c92c7f1b4a99", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "faa69122-7cfa-4013-9188-e3e37fbfb1da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065905Z:120b2abf-29e1-4daa-87a8-c92c7f1b4a99" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46047cf5e2f6f5396c54c42b13d6e811", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "70c4aa5a-116e-4571-bfd6-8805b1ebd93d", + "x-ms-client-request-id": "46047cf5e2f6f5396c54c42b13d6e811", + "x-ms-correlation-request-id": "75988d72-684f-4af6-92d4-2018923177f7", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "7a0247b9-654b-40b5-945d-0d85bbde5590", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065906Z:75988d72-684f-4af6-92d4-2018923177f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8638d72a240736c59b0a2c3a5899e838", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ef934b2-1dbf-49af-99c9-af62ea7137a2", + "x-ms-client-request-id": "8638d72a240736c59b0a2c3a5899e838", + "x-ms-correlation-request-id": "19deeb0a-d089-4698-8a2a-18b412fd81d2", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "b8a016d2-8d36-4bcc-9bb6-2a1d0f12c0fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065908Z:19deeb0a-d089-4698-8a2a-18b412fd81d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7321639b0307e93681eb6b652592288", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57ba9bbd-433c-4bb7-813b-f55cc7afeae3", + "x-ms-client-request-id": "c7321639b0307e93681eb6b652592288", + "x-ms-correlation-request-id": "f6a8f649-effe-498a-aca8-85b9933824bf", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "99ac8598-ca42-494e-a2c0-9b39223f337a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065909Z:f6a8f649-effe-498a-aca8-85b9933824bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76be17b571dbd1e4b6cdaaebb6ff9cd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da5a3c44-5c19-4e5f-ae77-4e3a3f07cf8d", + "x-ms-client-request-id": "76be17b571dbd1e4b6cdaaebb6ff9cd2", + "x-ms-correlation-request-id": "5c9103d8-079c-4263-bff6-c7a84eb6fdd9", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "3d74ba76-5616-48a2-881e-73679dce30a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065910Z:5c9103d8-079c-4263-bff6-c7a84eb6fdd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcf18c6b21a379e044b91de96d0fe342", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9587785-daa2-47fa-9727-75a4dfb83694", + "x-ms-client-request-id": "fcf18c6b21a379e044b91de96d0fe342", + "x-ms-correlation-request-id": "6e6b765e-2c23-4349-944e-08a3f1b2015c", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "4d47691e-30c4-4a82-bdbe-92411f7d8f82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065911Z:6e6b765e-2c23-4349-944e-08a3f1b2015c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4185a3e772dbc75d3261106205a7c869", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "afe23e40-b25c-4026-9576-aee2c8dc3a6a", + "x-ms-client-request-id": "4185a3e772dbc75d3261106205a7c869", + "x-ms-correlation-request-id": "343fad13-cef3-4178-a8a2-ee074ce9fbdf", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "376dd587-0f8c-472b-8cce-5e8630547b06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065913Z:343fad13-cef3-4178-a8a2-ee074ce9fbdf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c64ae482266793e43644312154fb63a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c666a693-92cd-4289-ac20-502d7ec84070", + "x-ms-client-request-id": "c64ae482266793e43644312154fb63a6", + "x-ms-correlation-request-id": "5b50b9e3-228c-42e5-af05-c3f898e297dd", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "af696aba-ccbb-4633-be1f-f89c86a5320c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065915Z:5b50b9e3-228c-42e5-af05-c3f898e297dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "120468ea5b7af9f72e29ca42107e739d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6895507-9c93-4195-a627-733b6f538789", + "x-ms-client-request-id": "120468ea5b7af9f72e29ca42107e739d", + "x-ms-correlation-request-id": "f8b5c594-1b2a-4704-9024-63e3ef4e5526", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "7d2e9328-40c9-4b97-94ac-4cbcd92b890d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065917Z:f8b5c594-1b2a-4704-9024-63e3ef4e5526" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8867b4f11dc4c0dabef10a96403c7336", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0a27213-1e1c-4ffc-84dd-64993348989e", + "x-ms-client-request-id": "8867b4f11dc4c0dabef10a96403c7336", + "x-ms-correlation-request-id": "0ef41ef4-d4d0-4e16-adda-60694fb25eb4", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "4054dc2c-9618-4e8d-9ed2-3e29675386c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065919Z:0ef41ef4-d4d0-4e16-adda-60694fb25eb4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d7869fdb5a226eeed51983d5ca283b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35e0499e-80b3-4074-adcc-422cd3995ecc", + "x-ms-client-request-id": "9d7869fdb5a226eeed51983d5ca283b7", + "x-ms-correlation-request-id": "4a3c4c7e-1af9-436a-b4f6-1d40ccb54840", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "86a34d3e-f6bf-4dda-90b0-361536d75579", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065920Z:4a3c4c7e-1af9-436a-b4f6-1d40ccb54840" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f3094d0db94cce18e4353885060b8f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c724f168-e0cb-406e-bd16-242d705d9025", + "x-ms-client-request-id": "9f3094d0db94cce18e4353885060b8f2", + "x-ms-correlation-request-id": "b1eb371c-b0f4-46c1-8d2e-05ca0829dabb", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "cb973f77-bd75-4061-9f00-085d93df926a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065921Z:b1eb371c-b0f4-46c1-8d2e-05ca0829dabb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a64493b6d6063bfac5409a73859c641b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7131bef9-5e8d-49ab-bdbf-5b91d8c087a2", + "x-ms-client-request-id": "a64493b6d6063bfac5409a73859c641b", + "x-ms-correlation-request-id": "3d486d1f-3dc3-42c1-834b-186b470b5172", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "498b1e97-268d-4020-b39c-f7fb71c2b786", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065923Z:3d486d1f-3dc3-42c1-834b-186b470b5172" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acc5536dd40c22a287ab0f5f6266d68c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea8d4310-4da1-4262-8bca-ac79514b1386", + "x-ms-client-request-id": "acc5536dd40c22a287ab0f5f6266d68c", + "x-ms-correlation-request-id": "05f0601e-058a-4900-b9ec-8ee3e4b5b608", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "1ffca438-3fba-49e6-b66d-edb59e75974e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065924Z:05f0601e-058a-4900-b9ec-8ee3e4b5b608" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c887a598dc5efab19af4d953406e47f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "856b72fe-9ced-43fe-afe8-4c7b0c5be1f0", + "x-ms-client-request-id": "c887a598dc5efab19af4d953406e47f1", + "x-ms-correlation-request-id": "bf18854f-6f75-47f1-b3e1-8fbce04e2fac", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "8da6dd69-f673-4248-8bd2-e0d3be4b5430", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065926Z:bf18854f-6f75-47f1-b3e1-8fbce04e2fac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc1b37df0c9be2e6f1211e5bc79bd95f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "241b9815-ad0e-4891-81a7-6444ff1ccb6b", + "x-ms-client-request-id": "fc1b37df0c9be2e6f1211e5bc79bd95f", + "x-ms-correlation-request-id": "4d00b000-ffb5-4b46-9808-3bf71ff62769", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "86cb5abe-bfe3-4a98-b59f-9593cb298582", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065927Z:4d00b000-ffb5-4b46-9808-3bf71ff62769" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfdb0e699b1490bda2ca1117fa4ee219", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9929a07f-ab2f-42a7-9775-e3ec3ba0ef0f", + "x-ms-client-request-id": "dfdb0e699b1490bda2ca1117fa4ee219", + "x-ms-correlation-request-id": "4d86b485-d6ae-4064-8f47-83bf5ac6b8a6", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "9082c2de-05ab-4a8b-a520-f04689083a61", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065928Z:4d86b485-d6ae-4064-8f47-83bf5ac6b8a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a7f1d63d94a8cf1bfa5d73dbe5533ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79b7bcb3-eb2e-46dd-91bf-5bb8b9d84d7c", + "x-ms-client-request-id": "2a7f1d63d94a8cf1bfa5d73dbe5533ff", + "x-ms-correlation-request-id": "a04da3b2-6f99-462b-8ef6-114c678e7bd6", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "729cbf2b-369d-4cc0-b41a-3461844936e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065930Z:a04da3b2-6f99-462b-8ef6-114c678e7bd6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32ea7a1b689343dc7a8a5ad0facee8a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a70956d2-1442-418f-a03b-ae1375ea527d", + "x-ms-client-request-id": "32ea7a1b689343dc7a8a5ad0facee8a2", + "x-ms-correlation-request-id": "c008350a-1fff-4e1a-bfec-18a507260670", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "dd3d5fc3-6fc2-45dd-aae8-023fa92e4fa1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065931Z:c008350a-1fff-4e1a-bfec-18a507260670" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9f7053eae1b8f141c4e206fc47fd24c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3dd056fe-6ba2-461f-aad6-70f3d8b75c29", + "x-ms-client-request-id": "a9f7053eae1b8f141c4e206fc47fd24c", + "x-ms-correlation-request-id": "bba6d5fb-c922-4263-8451-77736daf8562", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "9c979029-d928-4988-877a-b73801956f79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065932Z:bba6d5fb-c922-4263-8451-77736daf8562" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80fb1297b064fb86403bafc07f2091f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60f811a3-c815-4308-86a3-6aabdb527671", + "x-ms-client-request-id": "80fb1297b064fb86403bafc07f2091f0", + "x-ms-correlation-request-id": "06c0aa69-c75f-4cdb-bf59-4341d2ab9540", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "0cf39432-c7c1-4597-840b-d31c19a45aa5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065933Z:06c0aa69-c75f-4cdb-bf59-4341d2ab9540" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9fe34bc895d6de3655a1544486d7ffa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "068f86a2-3092-4ec8-85e3-144b350f2d0c", + "x-ms-client-request-id": "b9fe34bc895d6de3655a1544486d7ffa", + "x-ms-correlation-request-id": "cfbbfe90-62c9-4fc8-8239-b5964cf709a2", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "e3bb5f7c-9026-4d3b-81ae-5ee7e8aaf963", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065935Z:cfbbfe90-62c9-4fc8-8239-b5964cf709a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7380eb768d38e3e7efc69dffe5310fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a16f213e-d046-4c45-a20d-8e7a01aa9c6a", + "x-ms-client-request-id": "e7380eb768d38e3e7efc69dffe5310fb", + "x-ms-correlation-request-id": "185e33ce-984b-4edf-b0e9-17c63e43cbf5", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "bbc9108d-8d9f-4f28-920e-52bd5eacb430", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065936Z:185e33ce-984b-4edf-b0e9-17c63e43cbf5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fb22fbd19810eee2f8e1a099a41b3d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0b7b0fa-3dd0-4722-9022-75ef52ada8c8", + "x-ms-client-request-id": "8fb22fbd19810eee2f8e1a099a41b3d3", + "x-ms-correlation-request-id": "04afc507-e41c-4da7-a0ba-f08d601dbd43", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "ddf51591-d120-4219-82c7-1ba1d61efa55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065937Z:04afc507-e41c-4da7-a0ba-f08d601dbd43" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7009b5bca9e8541df66f3a6020046e11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea10ee52-1f9e-4f50-9592-c1b807da644c", + "x-ms-client-request-id": "7009b5bca9e8541df66f3a6020046e11", + "x-ms-correlation-request-id": "7def5079-3c33-4b83-beb0-2665b7ebdecc", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "d8ff8b33-cb18-4003-b768-493834961a9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065938Z:7def5079-3c33-4b83-beb0-2665b7ebdecc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1886194aefba9e791f2ab8444d35f33d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3492a18c-4717-49cb-8b0c-7016896da4db", + "x-ms-client-request-id": "1886194aefba9e791f2ab8444d35f33d", + "x-ms-correlation-request-id": "564afbfa-475c-43dc-a3c6-0758a8a47a11", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "5bbfcb46-7fd6-4bbc-8023-3771250e6615", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065940Z:564afbfa-475c-43dc-a3c6-0758a8a47a11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "492395499f4a1313125d9911de8dee2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69c63b06-f0ed-440f-8e1f-9067bd6c5840", + "x-ms-client-request-id": "492395499f4a1313125d9911de8dee2b", + "x-ms-correlation-request-id": "fce3ba46-4dc4-4d20-abe7-b9896cc0499e", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "ec148385-41a9-4206-b453-e2c2ead094c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065941Z:fce3ba46-4dc4-4d20-abe7-b9896cc0499e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80be09209abacc183b6a51bdf0d807c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29c54d6a-f2bf-4217-b04d-b4d816365b7e", + "x-ms-client-request-id": "80be09209abacc183b6a51bdf0d807c0", + "x-ms-correlation-request-id": "25da65b1-1092-4a89-9d8b-2cfc40e632f6", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "4ff662fb-a571-41cd-a2df-fdcc7e0cffd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065942Z:25da65b1-1092-4a89-9d8b-2cfc40e632f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a17fd7c24e0abc60673065c5667bf92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "640c08cf-2ff9-4365-9dcb-afc0edfc25d7", + "x-ms-client-request-id": "8a17fd7c24e0abc60673065c5667bf92", + "x-ms-correlation-request-id": "282ed365-6335-4a42-a223-25540a7351b9", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "20d65a30-fd24-4484-836a-41e063f412e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065944Z:282ed365-6335-4a42-a223-25540a7351b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44248d3c7276af827c560ddf4e552339", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61277f2e-bc43-429d-bb27-392d08527a04", + "x-ms-client-request-id": "44248d3c7276af827c560ddf4e552339", + "x-ms-correlation-request-id": "55661cf8-9dec-43b7-b0b8-b8e503b54d4d", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "aa1a8383-d57b-43ce-8d4f-7081af1b1244", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065945Z:55661cf8-9dec-43b7-b0b8-b8e503b54d4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e195d8566376fb4a42137a4794bc76d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "372737fa-cb11-4b70-b5d6-9f1ceaa1afb2", + "x-ms-client-request-id": "e195d8566376fb4a42137a4794bc76d4", + "x-ms-correlation-request-id": "7d2d668f-0629-45dc-92a1-a81bed185da9", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "b24c0616-035b-44ed-9048-ae7ac368c679", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065946Z:7d2d668f-0629-45dc-92a1-a81bed185da9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6381bfabc3b4094a7a670d8a17e65cb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce8707b0-65e3-48f2-a834-1a50b7ee9813", + "x-ms-client-request-id": "6381bfabc3b4094a7a670d8a17e65cb0", + "x-ms-correlation-request-id": "82dadfb2-14ac-45d4-b164-0fcc0ec837d5", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "4c10e0f2-b0a8-4ee9-bc47-65d5e2fd6385", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065947Z:82dadfb2-14ac-45d4-b164-0fcc0ec837d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d05cc4fddd2d81b43290163f83a1bc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c72a3082-f3b0-4ffb-b0d4-11bd6b737c92", + "x-ms-client-request-id": "7d05cc4fddd2d81b43290163f83a1bc0", + "x-ms-correlation-request-id": "4fbc482a-c316-43cb-8a62-07815c3c8ca9", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "985d6881-b6c4-4b17-9d7e-a7156968df9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065949Z:4fbc482a-c316-43cb-8a62-07815c3c8ca9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f3439dfc0d393858e8c670e55bfe35c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8306f56-6921-47b8-96b1-4d7e5a7bbb8c", + "x-ms-client-request-id": "8f3439dfc0d393858e8c670e55bfe35c", + "x-ms-correlation-request-id": "c584338b-eb27-4443-938b-6e1de576a444", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "259c40ca-10ec-4c90-b544-0c4e1ca97425", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065950Z:c584338b-eb27-4443-938b-6e1de576a444" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7f7c9b6f9b6ce01a3a81f8ac1e7103f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c88e1159-3f41-4603-8d8e-740a6c5435b9", + "x-ms-client-request-id": "c7f7c9b6f9b6ce01a3a81f8ac1e7103f", + "x-ms-correlation-request-id": "6160ca34-91d4-4092-b02a-beb56e2e5ca7", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "8ac15ae1-08ab-466e-be18-74a40f704f2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065951Z:6160ca34-91d4-4092-b02a-beb56e2e5ca7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddab4d4ccdb28fdc4772ef46760c8384", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83c9fa44-27ad-4fc0-83af-a279a911c834", + "x-ms-client-request-id": "ddab4d4ccdb28fdc4772ef46760c8384", + "x-ms-correlation-request-id": "4559c80f-1a39-4565-8dd9-161a6104f452", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "83aca425-ba02-4ae6-aac4-09bb2c4f12f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065953Z:4559c80f-1a39-4565-8dd9-161a6104f452" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2eaca5455442e6093766eb2ba0fad1a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23f37eae-8eeb-4689-b0b8-7412aceba895", + "x-ms-client-request-id": "2eaca5455442e6093766eb2ba0fad1a7", + "x-ms-correlation-request-id": "efa98e33-e4d2-44a5-bdeb-95218901e6d3", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "6d90a5fb-6180-445a-bc63-8f5b6dc34972", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065954Z:efa98e33-e4d2-44a5-bdeb-95218901e6d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07c2277b0614e9a9ec677f4409bb5896", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "068bcb2a-55ca-44f9-83e5-f278a1a63311", + "x-ms-client-request-id": "07c2277b0614e9a9ec677f4409bb5896", + "x-ms-correlation-request-id": "28c1d6e2-87e7-48bb-9266-4592dff8466a", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "fefd4958-d8b7-438a-b484-b193bb8d7fb0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065955Z:28c1d6e2-87e7-48bb-9266-4592dff8466a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c459b25e23af8fc44c4a64ce1b1ef4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2178dbb-5ff0-4ba5-b630-d949dc5c18f6", + "x-ms-client-request-id": "1c459b25e23af8fc44c4a64ce1b1ef4c", + "x-ms-correlation-request-id": "b8c43957-f231-48c6-9f7f-f12a8e3c841b", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "d2aec3cb-0029-4683-a2e6-d8196c7307cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065957Z:b8c43957-f231-48c6-9f7f-f12a8e3c841b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4eca47a07b4a3f6ffbc341dbd4c5dc7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "90635929-3a84-4124-8d72-ee2fdb85200d", + "x-ms-client-request-id": "4eca47a07b4a3f6ffbc341dbd4c5dc7b", + "x-ms-correlation-request-id": "cc02322b-1115-4c2c-939f-50be65a900b5", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "b5bb72a1-e646-4ef2-8472-e6637d93dc7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065958Z:cc02322b-1115-4c2c-939f-50be65a900b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0505550eb5b5996c2ac9c34f5f5d073a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 06:59:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6891d24b-5e72-46a0-99d3-d6636ebd5c7f", + "x-ms-client-request-id": "0505550eb5b5996c2ac9c34f5f5d073a", + "x-ms-correlation-request-id": "08e29cc8-b6e5-40b5-bb8f-bb86ec23f6ff", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "816cc946-b722-4ccd-8dfb-668349733a1b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T065959Z:08e29cc8-b6e5-40b5-bb8f-bb86ec23f6ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2a3337809f1a94b2b062177a021247f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98ad07fa-625b-47c4-bb95-8a77dc189821", + "x-ms-client-request-id": "c2a3337809f1a94b2b062177a021247f", + "x-ms-correlation-request-id": "d84e0db2-71ae-4759-b971-91477b19eee3", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "24190c4d-19e9-41b7-b79b-a31cc26847b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070000Z:d84e0db2-71ae-4759-b971-91477b19eee3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c3e2ae7e9aceb97da312381b820df9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a5dbca4-e0eb-4d1b-9a23-e34b1ffe79bb", + "x-ms-client-request-id": "8c3e2ae7e9aceb97da312381b820df9d", + "x-ms-correlation-request-id": "68a528db-dd2f-4e2d-9816-391e0ead5131", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "f5dcc67c-b19b-4ac8-a86b-15731c307b16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070002Z:68a528db-dd2f-4e2d-9816-391e0ead5131" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a16207bc1a21048a095bd9af94f5f808", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81a8977e-5007-4e93-8e39-f42ab77cc2dd", + "x-ms-client-request-id": "a16207bc1a21048a095bd9af94f5f808", + "x-ms-correlation-request-id": "0f024f51-bbe6-4306-9ea4-b1b69d82c6a2", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "eaebc57f-91a7-47cf-8e80-cfa69ba1ce80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070003Z:0f024f51-bbe6-4306-9ea4-b1b69d82c6a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "346743a57a1f8e8e9bb8e7bfe5caf10b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb1f77b4-48d8-4400-b950-0dad81058409", + "x-ms-client-request-id": "346743a57a1f8e8e9bb8e7bfe5caf10b", + "x-ms-correlation-request-id": "f44313e4-6710-4b0d-8531-f73bad38c3bb", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "aba4e6d9-c20b-4e97-a73e-14b2fb62f3cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070005Z:f44313e4-6710-4b0d-8531-f73bad38c3bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99ba832683bfcd5da039835010e857e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ebf852d-a4e3-4b39-89d4-bedd5c8c5d98", + "x-ms-client-request-id": "99ba832683bfcd5da039835010e857e5", + "x-ms-correlation-request-id": "7499536d-101d-440a-a9e3-58e94de02292", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "40cfd88f-4e52-45bf-841e-aadc0beb69c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070006Z:7499536d-101d-440a-a9e3-58e94de02292" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74db1a39aab8427e78d3056933ca1e3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25d90d75-eb28-4801-a3df-f1a04966a2d2", + "x-ms-client-request-id": "74db1a39aab8427e78d3056933ca1e3e", + "x-ms-correlation-request-id": "f189e900-5974-45f7-ac9f-e0e346a12a71", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "b975840a-54e9-4893-8d61-f82dfed8dadc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070008Z:f189e900-5974-45f7-ac9f-e0e346a12a71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1088ce6a5f3b2149e59a94e5f63d7eb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1a2f248c-4587-4dc5-9ca8-edf7ae9c8818", + "x-ms-client-request-id": "1088ce6a5f3b2149e59a94e5f63d7eb3", + "x-ms-correlation-request-id": "1e24b710-3d9e-4af4-aeb2-cf67f1590c2b", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "79a72671-c99e-4b20-ae2e-f789d98387f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070009Z:1e24b710-3d9e-4af4-aeb2-cf67f1590c2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca8601607cee7b52047820eb7df499d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ed7d556-434e-4e19-b9dd-7dbe5d001383", + "x-ms-client-request-id": "ca8601607cee7b52047820eb7df499d5", + "x-ms-correlation-request-id": "82079aaf-908f-401b-bd84-c56e1dc8f236", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "46de129e-e414-4606-b43c-9fec19c747d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070010Z:82079aaf-908f-401b-bd84-c56e1dc8f236" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/82818a34-5d3f-4184-be84-225ca4cf01ce?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41e5441a465fd9aad1b98e1e15984b3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bd87dcd-3306-4bfa-81fe-80020061d622", + "x-ms-client-request-id": "41e5441a465fd9aad1b98e1e15984b3a", + "x-ms-correlation-request-id": "5013fe73-5e6d-4164-940f-054980571a6e", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "d6c2103f-921c-46f2-98ad-67734cb730da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070012Z:5013fe73-5e6d-4164-940f-054980571a6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "310852545344ee507c0c0cc23e5da4f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2458", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05b6b42e-8db7-4401-b5c9-a6cc8081ee26", + "x-ms-client-request-id": "310852545344ee507c0c0cc23e5da4f1", + "x-ms-correlation-request-id": "e61703a7-b689-4f4f-8659-b709732af988", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "f80f5696-1e71-414d-9608-346839f57c8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070012Z:e61703a7-b689-4f4f-8659-b709732af988" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1046\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00227987584e-c5bf-4e7c-841c-92e21c9bbadf\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022,\r\n", + " \u0022tag2\u0022: \u0022value\u0022,\r\n", + " \u0022tag3\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00229e303b96-178c-4e37-bae4-87e467b85da9\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9024\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046/ipConfigurations/azsmnet9024\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00227987584e-c5bf-4e7c-841c-92e21c9bbadf\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/publicIPAddresses/azsmnet5147\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworks/azsmnet577/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Basic\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046/ipConfigurations/azsmnet9024\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.175.199.128\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg1094/providers/Microsoft.Network/virtualNetworkGateways/azsmnet1046?api-version=2021-02-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2cabe003d581a5357acf934ed34656c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 24 Aug 2021 07:00:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b0bbda8-deec-48ea-a030-97948a93cc96", + "x-ms-client-request-id": "b2cabe003d581a5357acf934ed34656c", + "x-ms-correlation-request-id": "409e06ce-6b81-45a2-afd2-fef07c86c457", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "ca80db94-dca6-4988-8a6a-3e5d163378e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070013Z:409e06ce-6b81-45a2-afd2-fef07c86c457" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "571d9d1599cd17e2feeed9975a1b0048", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e6755b7-af4b-45ca-b7d5-6fdead4b6ee7", + "x-ms-client-request-id": "571d9d1599cd17e2feeed9975a1b0048", + "x-ms-correlation-request-id": "ddb33c13-e28c-4e79-9ad7-3b1548623074", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "8b28c877-e408-4cb8-ae77-36c752fabf8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070013Z:ddb33c13-e28c-4e79-9ad7-3b1548623074" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59959fa678c698052d03bd607800df70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "beb2e54e-f370-445e-9e8e-484f350934b7", + "x-ms-client-request-id": "59959fa678c698052d03bd607800df70", + "x-ms-correlation-request-id": "f5fdfd2a-e7bc-4ccb-b1b0-959cf967235a", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "9b32d53a-4c12-4ab9-a080-87a9f5a1618b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070014Z:f5fdfd2a-e7bc-4ccb-b1b0-959cf967235a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f1e85110e16939e027f2dfd8efa6cd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba703fb8-b3be-4545-8a3e-7333d677f6a9", + "x-ms-client-request-id": "4f1e85110e16939e027f2dfd8efa6cd8", + "x-ms-correlation-request-id": "07c5d5fb-6905-4ac9-a8cd-0191ba97381f", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "d1b8c865-be1e-4706-9760-debd9fd8833a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070015Z:07c5d5fb-6905-4ac9-a8cd-0191ba97381f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9aac7cf641529dac988529c9db829efd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1117c625-a6dd-4ea0-9af8-65a98e94b171", + "x-ms-client-request-id": "9aac7cf641529dac988529c9db829efd", + "x-ms-correlation-request-id": "1df4cffe-d3fd-40c0-968f-31d18148bec8", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "d6019b88-94e8-4f3a-9d87-0c928951708d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070017Z:1df4cffe-d3fd-40c0-968f-31d18148bec8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d485690eb0fc9832000256464a070933", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9be4a5c-a716-42aa-812d-ffd79c754fbc", + "x-ms-client-request-id": "d485690eb0fc9832000256464a070933", + "x-ms-correlation-request-id": "aeff973e-de5c-451b-9d78-66bde263f454", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "324d30f5-02d3-4b98-9e56-cef9ce96ffc7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070019Z:aeff973e-de5c-451b-9d78-66bde263f454" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc6ae4974554cf1ed880b791e5d5b780", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d291bba-e91d-4f31-b5be-f4104ba16d3d", + "x-ms-client-request-id": "fc6ae4974554cf1ed880b791e5d5b780", + "x-ms-correlation-request-id": "633d4de6-6c4c-4307-961c-1537004f5cef", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "e26919f8-35c5-459d-8ac7-2e8d2a5c7ca8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070020Z:633d4de6-6c4c-4307-961c-1537004f5cef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24ee2fe1987445db4a14994feb665290", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a47bccf-deb7-4236-a85f-3e1611dddd85", + "x-ms-client-request-id": "24ee2fe1987445db4a14994feb665290", + "x-ms-correlation-request-id": "2f2b696d-4e2d-48ae-9eb1-603addd36f8a", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "4a9638e7-2b33-4e7c-a37a-9f4140d4bc03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070021Z:2f2b696d-4e2d-48ae-9eb1-603addd36f8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f632f67ba118c9a94bb5fb7bf9a0b22b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb36fedb-155b-4524-a3ab-0ffca95f3a5a", + "x-ms-client-request-id": "f632f67ba118c9a94bb5fb7bf9a0b22b", + "x-ms-correlation-request-id": "2e55409e-8966-444d-8915-e9cbccc490fd", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "703ceec0-e7ae-4dc9-a381-4d6b5d882ba6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070023Z:2e55409e-8966-444d-8915-e9cbccc490fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b65d64ae519febf0924b240abcee472", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b24bb9e-d27f-4a47-ab99-facd8243b966", + "x-ms-client-request-id": "1b65d64ae519febf0924b240abcee472", + "x-ms-correlation-request-id": "16863516-2f2b-4a45-b2fb-5fb2ddc2a981", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "49b4f73a-191b-4177-90a1-357a8209ceca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070024Z:16863516-2f2b-4a45-b2fb-5fb2ddc2a981" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee15272dc0a23f688625d9be9d5f4ca9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c64843ed-2c12-4c48-82ea-05da262d05fd", + "x-ms-client-request-id": "ee15272dc0a23f688625d9be9d5f4ca9", + "x-ms-correlation-request-id": "4388626e-2c33-4aa9-a5f0-d3e883a96fe8", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "da4b8de0-03e7-474a-a4dd-009763d18650", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070025Z:4388626e-2c33-4aa9-a5f0-d3e883a96fe8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15056d61370096773733edf3ee681d7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b3cc731-653f-4907-a90c-9a82961ce28f", + "x-ms-client-request-id": "15056d61370096773733edf3ee681d7d", + "x-ms-correlation-request-id": "9f52d708-7cf7-453d-9c42-4cf22186c02f", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "f5fdaefb-2dd2-4319-a1ef-37ca61fb053a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070027Z:9f52d708-7cf7-453d-9c42-4cf22186c02f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d24d88d1c48b8a896d2594f30c0061a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf7c34b9-3780-4615-98a2-e09ef4c693b6", + "x-ms-client-request-id": "d24d88d1c48b8a896d2594f30c0061a9", + "x-ms-correlation-request-id": "f1b5f904-c336-4bdd-8241-7cc25b1c7917", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "f337dfa9-f800-416b-a3aa-6fff81a0c17c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070028Z:f1b5f904-c336-4bdd-8241-7cc25b1c7917" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ddf09d7cfc8f671af7fb76ed274511d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d7565f8-3cb8-4ba1-a2ca-fb5ff1088d37", + "x-ms-client-request-id": "3ddf09d7cfc8f671af7fb76ed274511d", + "x-ms-correlation-request-id": "0dddd61d-e6ff-426d-87b2-ec9063061401", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "7a110b5a-cf92-4b8f-a1a1-cc7ac2837e28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070029Z:0dddd61d-e6ff-426d-87b2-ec9063061401" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14ec5b077a119c1ee47ba7dba2838a36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f763254-ebb4-42b6-93ea-99ba6c98ace1", + "x-ms-client-request-id": "14ec5b077a119c1ee47ba7dba2838a36", + "x-ms-correlation-request-id": "b9be308c-4063-4e84-a55b-ceea7df89859", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "67b04e2e-5d3c-4115-877c-e36f58eb152e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070030Z:b9be308c-4063-4e84-a55b-ceea7df89859" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e51c44d2df8901b41657220b0c1ab7f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "429dd6d5-f7f4-4781-8cf9-123e8c9e728f", + "x-ms-client-request-id": "e51c44d2df8901b41657220b0c1ab7f9", + "x-ms-correlation-request-id": "8b8aee58-194c-4591-8924-27c5c4f9b97c", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "c2fd2c14-69bf-4701-ac99-80267463cc01", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070032Z:8b8aee58-194c-4591-8924-27c5c4f9b97c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0eb76d44d135d97eb42594d2896532b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d3a569b-6992-44ce-ad12-4cbc92534b06", + "x-ms-client-request-id": "b0eb76d44d135d97eb42594d2896532b", + "x-ms-correlation-request-id": "52244130-753d-4ce0-8b5d-156a061155b8", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "c6a23186-7020-434c-856f-e332f9b2393a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070033Z:52244130-753d-4ce0-8b5d-156a061155b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d9c80f56b572794a7eafdba581290c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9a3b20e-7e90-4a85-9eb3-57d8b00dc64b", + "x-ms-client-request-id": "8d9c80f56b572794a7eafdba581290c9", + "x-ms-correlation-request-id": "3e1e2eb2-29e3-4447-b639-7c78994a494b", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "a4ee760e-7a18-420c-a344-d7b12a567c69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070034Z:3e1e2eb2-29e3-4447-b639-7c78994a494b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b07adc3d9988522adbffa468666d980", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66008fa8-e155-4835-a33f-3aa2ca49ee6f", + "x-ms-client-request-id": "2b07adc3d9988522adbffa468666d980", + "x-ms-correlation-request-id": "efcd3d6a-a8bf-4e9f-8c57-ea4da413b336", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "c29fb4e8-cea9-4573-87c7-1d5349cc67d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070036Z:efcd3d6a-a8bf-4e9f-8c57-ea4da413b336" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b15f604297e68a1e2c408284fdd04d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4d6d6b8-fa2d-4e18-9b27-30804b9a86eb", + "x-ms-client-request-id": "8b15f604297e68a1e2c408284fdd04d8", + "x-ms-correlation-request-id": "91b761aa-9f31-4b98-ba5d-d0b1d805360f", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "c2ab9b6f-0cf3-4e9a-b476-39950594ce85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070037Z:91b761aa-9f31-4b98-ba5d-d0b1d805360f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a898fb2278e1b935e17e098714da140", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8fc8834c-5296-4929-ab6f-9661094ca1cd", + "x-ms-client-request-id": "7a898fb2278e1b935e17e098714da140", + "x-ms-correlation-request-id": "33209a74-c188-4753-9966-ccbb170d7c4a", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "c61a1711-c54c-49e5-95f9-27ea53b86e5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070038Z:33209a74-c188-4753-9966-ccbb170d7c4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61b57d1104fc9a4b0b9e49d3d0f935d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "121c56aa-4fb2-4a00-933e-b34dcbf980db", + "x-ms-client-request-id": "61b57d1104fc9a4b0b9e49d3d0f935d0", + "x-ms-correlation-request-id": "dfed5583-4b38-43ac-afc7-6637b92f5a1f", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "3bb40fdb-c88a-451b-9aed-bbc4f5c7a3c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070039Z:dfed5583-4b38-43ac-afc7-6637b92f5a1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f79421ba5edddcf162fa2d664909f694", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c071d7e-6868-4e2c-b7b0-fea2fbd65529", + "x-ms-client-request-id": "f79421ba5edddcf162fa2d664909f694", + "x-ms-correlation-request-id": "41f644ca-af35-4030-ba19-8e76090ff049", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "a4377c7e-0a9c-47d2-a4cf-df36cb587f54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070041Z:41f644ca-af35-4030-ba19-8e76090ff049" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d117c822a227aedb43ef6fefddbf4a65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58b8ede8-9999-4003-8073-36505d6c1d13", + "x-ms-client-request-id": "d117c822a227aedb43ef6fefddbf4a65", + "x-ms-correlation-request-id": "079e5018-d9e1-401b-b60a-82d1232a25b6", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "08be123c-604b-4c8c-921c-67c20fc45529", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070042Z:079e5018-d9e1-401b-b60a-82d1232a25b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50de10e1aab9b2628bd8ff02d6e45102", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "737a3426-6669-439b-be3d-c7f476a124d7", + "x-ms-client-request-id": "50de10e1aab9b2628bd8ff02d6e45102", + "x-ms-correlation-request-id": "ced02eee-17a7-4849-95c0-de7dc1c132d7", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "38f242c4-36d9-4f95-a28c-0caaef764881", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070043Z:ced02eee-17a7-4849-95c0-de7dc1c132d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08b1b5a864e117a945e5b3eeef01ffa2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b0f4b8c-6b08-46f9-8186-f58173a9637f", + "x-ms-client-request-id": "08b1b5a864e117a945e5b3eeef01ffa2", + "x-ms-correlation-request-id": "b510718c-7a81-4789-afeb-f773c5300907", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "f04a7816-7069-4d4d-aa0a-3a613841543b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070044Z:b510718c-7a81-4789-afeb-f773c5300907" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3985c8afa62b78da6564454ea3d9d75f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "844c576a-f8d9-438a-998b-7ce02fec9440", + "x-ms-client-request-id": "3985c8afa62b78da6564454ea3d9d75f", + "x-ms-correlation-request-id": "e74f442e-293b-4d3e-a132-e6246af7b703", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "31272139-32db-4f40-924e-5a2b8a71ad6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070046Z:e74f442e-293b-4d3e-a132-e6246af7b703" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28476c9d420e7d8366c60bd3f774c38a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73bfdcb7-4f0d-45b3-9586-4331a0a534b1", + "x-ms-client-request-id": "28476c9d420e7d8366c60bd3f774c38a", + "x-ms-correlation-request-id": "89e3bca7-48b1-4142-87d9-2f402e67adf4", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "fdcfe242-2ef4-49a9-84f7-836ba4255f0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070047Z:89e3bca7-48b1-4142-87d9-2f402e67adf4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e535dd9185e01d7da38a27d1e5a746c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b783f897-efca-4646-b824-898930a20f58", + "x-ms-client-request-id": "0e535dd9185e01d7da38a27d1e5a746c", + "x-ms-correlation-request-id": "37dfa8c5-d376-4b4d-83f3-537b1b878e92", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "60646af0-7d76-4ee0-a382-9d431d14b6e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070049Z:37dfa8c5-d376-4b4d-83f3-537b1b878e92" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8250530ed6ba6c934508d2649b0681f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a31aab0f-0c18-4d7e-871a-5ff2f686dd1c", + "x-ms-client-request-id": "8250530ed6ba6c934508d2649b0681f0", + "x-ms-correlation-request-id": "3bf65257-e1cd-4ed8-9e80-28ad05046bc7", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "2697354d-135f-4118-979c-02712ae504c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070050Z:3bf65257-e1cd-4ed8-9e80-28ad05046bc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4674bba0c885850095454dd69f055e0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5219bdc-dc94-4561-ae81-29f9a2842656", + "x-ms-client-request-id": "4674bba0c885850095454dd69f055e0b", + "x-ms-correlation-request-id": "715e7bce-9b57-48a7-93e9-b2a858fdfe2b", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "b58ee17f-6c0c-4d19-8602-99607c683241", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070051Z:715e7bce-9b57-48a7-93e9-b2a858fdfe2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3c59f51412402cfc9e7c956467266d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d50344cb-1629-4a68-b43e-002762974b3e", + "x-ms-client-request-id": "a3c59f51412402cfc9e7c956467266d3", + "x-ms-correlation-request-id": "0aa639a2-394a-4fab-969e-9f4d85cf2d5e", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "1660386e-b4ac-4e4c-bc05-679665703838", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070052Z:0aa639a2-394a-4fab-969e-9f4d85cf2d5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62dcb1b62ee645e653caed7489bdcc3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cf1fd86-7495-4e19-8bc1-e1ce9156a321", + "x-ms-client-request-id": "62dcb1b62ee645e653caed7489bdcc3f", + "x-ms-correlation-request-id": "7076d65c-1142-4cbb-a638-acbbe175e61d", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "5e14649d-33cf-414a-af1f-0e37a8846032", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070054Z:7076d65c-1142-4cbb-a638-acbbe175e61d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb13c6a9de415fcceb717c9effaa3f22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54704d6e-b0a7-4acb-bda7-c5c6a4a1c827", + "x-ms-client-request-id": "fb13c6a9de415fcceb717c9effaa3f22", + "x-ms-correlation-request-id": "bca3068f-917d-44ef-adfc-5845086c63bb", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "461f8f38-b2f8-4468-a690-d8cea6762f39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070055Z:bca3068f-917d-44ef-adfc-5845086c63bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee1f79dffc282225b87f5059535b790c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5e6bca1-b5d7-44b2-b0eb-9db20d614545", + "x-ms-client-request-id": "ee1f79dffc282225b87f5059535b790c", + "x-ms-correlation-request-id": "99e563c9-e946-40d8-94c4-53f5c00893e5", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "239e4da2-b289-47b9-89a4-60d894a9b31d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070056Z:99e563c9-e946-40d8-94c4-53f5c00893e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fac891a6a5fd892e57d7674b14745a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c82453dc-b806-4270-8f6f-760d775bd919", + "x-ms-client-request-id": "7fac891a6a5fd892e57d7674b14745a8", + "x-ms-correlation-request-id": "8113db50-305e-4e9c-93a6-862470353bc6", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "18cc3f0d-dfd2-4dd0-9662-1831617c589f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070057Z:8113db50-305e-4e9c-93a6-862470353bc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f95cb8bde9dad16a0f043c28e720c90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ff1c016-d4f9-43d1-b704-f2cd220461f6", + "x-ms-client-request-id": "0f95cb8bde9dad16a0f043c28e720c90", + "x-ms-correlation-request-id": "8707d4af-44b6-46ca-b12c-26f3d5265d66", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "074de340-64a9-46b2-81fd-4b1c4105d762", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070059Z:8707d4af-44b6-46ca-b12c-26f3d5265d66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "768470f8bffe74c3e74709ab85b17070", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:00:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d21dbc98-de0c-413e-b82a-d2e50ce6b49b", + "x-ms-client-request-id": "768470f8bffe74c3e74709ab85b17070", + "x-ms-correlation-request-id": "8c6fa669-62e1-4de8-96c1-c403078d920f", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "ecb5b96b-3056-4545-8802-cdd094eb0dda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070100Z:8c6fa669-62e1-4de8-96c1-c403078d920f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88cea73969c63c6e72fedf6e27d04a72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f71db7e0-ffa7-4a78-ad9a-15c64354cece", + "x-ms-client-request-id": "88cea73969c63c6e72fedf6e27d04a72", + "x-ms-correlation-request-id": "6a8e6479-5f4b-4e55-9196-5b87eeabd3fd", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "bfb6568f-5d89-491f-a6d2-830b665b6f5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070101Z:6a8e6479-5f4b-4e55-9196-5b87eeabd3fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "417ce670cfc3cbaa08202856d56a28ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d7103ca6-5e6e-464d-b92e-d72a9b8ad958", + "x-ms-client-request-id": "417ce670cfc3cbaa08202856d56a28ef", + "x-ms-correlation-request-id": "36deb781-1e04-413e-9dd9-13e3736f5cfd", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "290f47cb-0836-48ff-a2e8-6d986a86ac2c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070103Z:36deb781-1e04-413e-9dd9-13e3736f5cfd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e688d27f83a48fc9024703ffe0544c17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2834333b-82f7-4cc3-8f21-34e054e9a9b0", + "x-ms-client-request-id": "e688d27f83a48fc9024703ffe0544c17", + "x-ms-correlation-request-id": "af8f750a-e1f6-42f1-88f5-726aa6b5acf6", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "8428ff55-5ffa-47f3-be7e-0724513175a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070104Z:af8f750a-e1f6-42f1-88f5-726aa6b5acf6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e3a96fc2f346aacfc0280a540176607", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6274d67-60f3-4087-a82a-d8c1935f6bed", + "x-ms-client-request-id": "9e3a96fc2f346aacfc0280a540176607", + "x-ms-correlation-request-id": "26cbe536-82c9-4621-aa62-596b4f82891d", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "fd65aea7-0987-429e-828b-5057f1ae8add", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070106Z:26cbe536-82c9-4621-aa62-596b4f82891d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55eeefd66347eccd1cec3e7bccabeab3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6529347d-dce2-45ea-9cb3-5c6e46b143e6", + "x-ms-client-request-id": "55eeefd66347eccd1cec3e7bccabeab3", + "x-ms-correlation-request-id": "a4143d9c-9951-4699-9d7d-3c05fcf7b867", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "aa23b459-4376-45fd-bd3d-5a64a84feb7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070107Z:a4143d9c-9951-4699-9d7d-3c05fcf7b867" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e5a11d4892f4fba251eeaa103244eeb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a0e90ee-6ed5-4254-bf74-a91da74b8439", + "x-ms-client-request-id": "3e5a11d4892f4fba251eeaa103244eeb", + "x-ms-correlation-request-id": "dd61de02-fb6e-4fb9-84ab-ab95f2b3639e", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "aea84239-3d5b-49cf-8738-460a664efcd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070109Z:dd61de02-fb6e-4fb9-84ab-ab95f2b3639e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f129fbe1f76599cfc84e8248f1309d51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6882300c-c5eb-4637-8cb4-507a017916a9", + "x-ms-client-request-id": "f129fbe1f76599cfc84e8248f1309d51", + "x-ms-correlation-request-id": "558500c4-6a86-4b87-8a9a-412be330372c", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "156e4896-9062-4ab4-8d5b-7c39fb3ae1fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070110Z:558500c4-6a86-4b87-8a9a-412be330372c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fd1cc1828bd4cd8349f2f29792ce8f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26a18d69-3ca3-4835-8f31-f9cb99e6e00e", + "x-ms-client-request-id": "2fd1cc1828bd4cd8349f2f29792ce8f8", + "x-ms-correlation-request-id": "7834c75d-57d7-44b6-86b3-77b77b04d53d", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "bae56030-6473-4b79-88d8-a807ea19eaf5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070111Z:7834c75d-57d7-44b6-86b3-77b77b04d53d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d09a539ef981dc4d41c176e107725ef4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "19b225c0-3449-448d-ba99-8fa04ecdb86c", + "x-ms-client-request-id": "d09a539ef981dc4d41c176e107725ef4", + "x-ms-correlation-request-id": "6c86cb18-090f-4f7f-8486-140a615954e1", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "41c232b0-2323-4be2-af9d-8b31b4485eff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070112Z:6c86cb18-090f-4f7f-8486-140a615954e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "378998801e52b92d23dcbcc6c8a61f9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df79177b-d694-4c5f-be20-ccaf90ba8e50", + "x-ms-client-request-id": "378998801e52b92d23dcbcc6c8a61f9c", + "x-ms-correlation-request-id": "aa4336a2-4b62-4516-a9f2-16a35b0e3524", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "fdaf2ff2-d9ed-4c8f-b3dc-a292184d80ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070114Z:aa4336a2-4b62-4516-a9f2-16a35b0e3524" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9da98965cd961ecf7ef4eefcb2f645c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78fbea8b-e2bc-4f4d-af3f-36c0fee0faa0", + "x-ms-client-request-id": "9da98965cd961ecf7ef4eefcb2f645c2", + "x-ms-correlation-request-id": "12116ed1-df71-4012-9570-565e9eb9c61f", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "e1202412-7db7-4fac-9dd0-d302be7ec7fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070115Z:12116ed1-df71-4012-9570-565e9eb9c61f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1a93a40b1a27fa525e1ada53d87149b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52610cf2-cd84-4530-b4e6-7f81646b7b5f", + "x-ms-client-request-id": "e1a93a40b1a27fa525e1ada53d87149b", + "x-ms-correlation-request-id": "5981016f-8d99-4420-9d20-da2bccffa6c6", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "d9fd60e2-92c2-48e3-8064-d1ced67f68d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070116Z:5981016f-8d99-4420-9d20-da2bccffa6c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e7cd9a1c1c9b35ec86bb95e3031072d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bc655f8-d4d4-4fb3-bd58-1c50ae5f4951", + "x-ms-client-request-id": "7e7cd9a1c1c9b35ec86bb95e3031072d", + "x-ms-correlation-request-id": "810df125-ee8b-4ee0-b0f2-99f519f643b0", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "64be3b6b-73ba-4619-8432-d4b2bd06dfcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070118Z:810df125-ee8b-4ee0-b0f2-99f519f643b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d86f9963efcb3f9e32977b41f2ae0f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd7a544d-29e0-45cc-8e48-83471b971d0f", + "x-ms-client-request-id": "8d86f9963efcb3f9e32977b41f2ae0f7", + "x-ms-correlation-request-id": "711eff18-84b5-424c-802f-b97dc6cc7a33", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "afce4b76-8948-4133-9e05-a909bfe67aaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070119Z:711eff18-84b5-424c-802f-b97dc6cc7a33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d85a52e0c7797ff9dbf61837f8474ff4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d39238bd-3dbb-4f69-a042-97ec68df052e", + "x-ms-client-request-id": "d85a52e0c7797ff9dbf61837f8474ff4", + "x-ms-correlation-request-id": "09c2b26d-cc2c-4706-8bae-679eb088c696", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "7a733329-9638-4bd7-8b18-25dbe6e3094f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070120Z:09c2b26d-cc2c-4706-8bae-679eb088c696" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "430e80da8601639ee0c89a9f49aa939e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52fd88d8-a48b-4f92-8eb7-82cea320198d", + "x-ms-client-request-id": "430e80da8601639ee0c89a9f49aa939e", + "x-ms-correlation-request-id": "6471cf8e-3865-49af-9f51-37bb6387b0cb", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "b22cae87-4103-4a3e-91a8-fca57c2b7cd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070121Z:6471cf8e-3865-49af-9f51-37bb6387b0cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd7dc18a2ed6cfb30006b20626c1bb9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1de64e91-5252-4039-9aa6-121eaef9d94b", + "x-ms-client-request-id": "dd7dc18a2ed6cfb30006b20626c1bb9b", + "x-ms-correlation-request-id": "e14a73a1-8a1c-413c-9850-0c4e17001ae2", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "c112d81a-f015-4349-8c27-e31651ba4b20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070123Z:e14a73a1-8a1c-413c-9850-0c4e17001ae2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ed982d99d1b5af5b3f7f8b02c593531", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b7ae6804-3697-421c-b085-7e3484e3e081", + "x-ms-client-request-id": "9ed982d99d1b5af5b3f7f8b02c593531", + "x-ms-correlation-request-id": "9660403d-f2db-4d7d-b663-728b8f88f7f2", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "3809233a-49ca-4256-8a05-cceccd95c15b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070124Z:9660403d-f2db-4d7d-b663-728b8f88f7f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36ad796271caab1ecd3f43fad3983d1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b35442c-4c41-4d3d-b455-9a0491e2c475", + "x-ms-client-request-id": "36ad796271caab1ecd3f43fad3983d1e", + "x-ms-correlation-request-id": "21ca9f75-a294-4484-b238-6d0fb68f959c", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "fb9c1b63-d631-4f65-a3a1-bad9205b335e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070125Z:21ca9f75-a294-4484-b238-6d0fb68f959c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6c5ff0df4d0ed83cc2229df3602a2a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7a84219-1d44-4eca-bdd3-e8f9207ce0e3", + "x-ms-client-request-id": "c6c5ff0df4d0ed83cc2229df3602a2a7", + "x-ms-correlation-request-id": "a52c2082-00da-4ccd-9d9d-1f9b9593a029", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "f265e821-5413-447c-82c2-5fbf9daae428", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070126Z:a52c2082-00da-4ccd-9d9d-1f9b9593a029" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ada381d1841468d0642dd1dc5afb861b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6df0efa5-40f8-43f4-9588-01b5bd1d733b", + "x-ms-client-request-id": "ada381d1841468d0642dd1dc5afb861b", + "x-ms-correlation-request-id": "d72859dc-bfcc-4172-8bbc-518d53231462", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "b156f950-3e27-4102-ae2f-92327ca14d99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070128Z:d72859dc-bfcc-4172-8bbc-518d53231462" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2da3daba6e936d60f5c06aa7483e75ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b81e164-653a-4ef7-8892-ab1ae7589d69", + "x-ms-client-request-id": "2da3daba6e936d60f5c06aa7483e75ca", + "x-ms-correlation-request-id": "97d11c76-7c68-4a25-81e4-739186879bc7", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "832990dc-d566-439f-babd-5dbbc962c6e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070129Z:97d11c76-7c68-4a25-81e4-739186879bc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52299b9c8ff588092e5d62a323a793d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa2ff4da-1938-48fc-8327-5901528d6f3f", + "x-ms-client-request-id": "52299b9c8ff588092e5d62a323a793d1", + "x-ms-correlation-request-id": "9f0feda4-3d6f-44d3-b160-07c711eb3f1b", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "fc22dd95-651c-4590-bf83-9222f508c160", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070130Z:9f0feda4-3d6f-44d3-b160-07c711eb3f1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c240e9c755f62132035b7541a282025", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e64b44b4-4904-4ded-a9cb-daa01681a853", + "x-ms-client-request-id": "5c240e9c755f62132035b7541a282025", + "x-ms-correlation-request-id": "2a8de08e-9f5c-4943-8166-0c85588a934e", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "233bbcaa-4d8f-4612-8fd6-f53be98b2de0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070132Z:2a8de08e-9f5c-4943-8166-0c85588a934e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be3f06b833d12a26d01afe360cbd4a4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b39f37e-3b09-4513-99f3-d92f63f2d374", + "x-ms-client-request-id": "be3f06b833d12a26d01afe360cbd4a4e", + "x-ms-correlation-request-id": "89e4b1c3-3686-4723-8089-f01115fc4bab", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "4a1885ba-d091-4221-97c1-a655d8bc4615", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070133Z:89e4b1c3-3686-4723-8089-f01115fc4bab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "390b982d191a276b88c732bfd8b56d05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d0ba3c4d-a278-41c6-b355-3ff1c3ce87f9", + "x-ms-client-request-id": "390b982d191a276b88c732bfd8b56d05", + "x-ms-correlation-request-id": "c2d9fe9a-c7c7-445f-9682-c45f14b39e6f", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "fd913c30-3a89-475c-865b-6bb8faa634f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070134Z:c2d9fe9a-c7c7-445f-9682-c45f14b39e6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cea3c3dd46768ffe8fa8b4476dd5563", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1bf56bf0-ee80-4273-91a9-b0e9fa24572c", + "x-ms-client-request-id": "1cea3c3dd46768ffe8fa8b4476dd5563", + "x-ms-correlation-request-id": "df46fd85-e12f-410f-ad66-11e1de495801", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "13b8d106-ded2-4531-b6b3-10b138465282", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070135Z:df46fd85-e12f-410f-ad66-11e1de495801" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "812668eae61d9e0b9b18350a0166511b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dfa1e0b4-2a85-46d4-845d-cc6a5d644783", + "x-ms-client-request-id": "812668eae61d9e0b9b18350a0166511b", + "x-ms-correlation-request-id": "340425f0-e057-421e-bca9-ff753d3e6a67", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "c1a0d9be-4319-458c-9387-c4d822fb53ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070137Z:340425f0-e057-421e-bca9-ff753d3e6a67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0f8f9ac2ed258e799a3501f8e27b0ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f92b4ed1-1872-45e9-a58b-cd6fc10fbcac", + "x-ms-client-request-id": "d0f8f9ac2ed258e799a3501f8e27b0ab", + "x-ms-correlation-request-id": "138ee810-a81f-4841-bacf-3a8d6f6717a5", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "16ee3b33-aa3e-4d09-9be4-85482b6f61c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070138Z:138ee810-a81f-4841-bacf-3a8d6f6717a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fd4ce71ec8e56e8304c804e9ef46682", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e1defce-1528-466e-b58d-a7474dc28d73", + "x-ms-client-request-id": "6fd4ce71ec8e56e8304c804e9ef46682", + "x-ms-correlation-request-id": "3e1dc4cd-de2c-4fd4-ad0a-f04aed8cf56f", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "ef6e558d-b37d-459f-ab38-9286670f588a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070139Z:3e1dc4cd-de2c-4fd4-ad0a-f04aed8cf56f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d9770a885e4bc9081cee87995eb1074", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fde7b71b-9725-43f7-ba5d-7d36f0516982", + "x-ms-client-request-id": "7d9770a885e4bc9081cee87995eb1074", + "x-ms-correlation-request-id": "fc016f14-74a0-4b6b-b24a-45dc48cc2174", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "7e0ba1aa-c134-406d-962f-a23792561743", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070140Z:fc016f14-74a0-4b6b-b24a-45dc48cc2174" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32998a68e191c08c11a29f86ad98b9a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e55e490a-0f33-4f4d-88ce-9693148d1bf1", + "x-ms-client-request-id": "32998a68e191c08c11a29f86ad98b9a4", + "x-ms-correlation-request-id": "7f497378-18d8-4e28-9e5a-b27c7013f4f1", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "5a107bcd-0957-4352-a42a-2a717e05b9af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070142Z:7f497378-18d8-4e28-9e5a-b27c7013f4f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d77ce3c338fecc63d18eec0036ec044", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "502e2d22-5cab-4579-9d39-3c729d2a4ff3", + "x-ms-client-request-id": "1d77ce3c338fecc63d18eec0036ec044", + "x-ms-correlation-request-id": "a770b038-474d-4bba-9899-37455431b76a", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "3309022f-a4cc-4b0a-bff0-f48a453cf592", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070143Z:a770b038-474d-4bba-9899-37455431b76a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14e60c3b335bc6f0e3d66c42e50a0ee8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67c8456b-fa2e-4bf4-806d-24d9daa7db3a", + "x-ms-client-request-id": "14e60c3b335bc6f0e3d66c42e50a0ee8", + "x-ms-correlation-request-id": "bf3696cd-8115-4372-bac1-afcf2ba088bd", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "01d370d1-c6a8-4647-b9b9-abaeb84cbd9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070144Z:bf3696cd-8115-4372-bac1-afcf2ba088bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c73d4314f27434e5c3acf578f3ccbca2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27cc674b-c3af-4f77-a3dc-9f85bb039f0f", + "x-ms-client-request-id": "c73d4314f27434e5c3acf578f3ccbca2", + "x-ms-correlation-request-id": "66749ccc-6711-4931-b453-eeaa9d7def68", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "62185b36-2eb7-4f9d-a236-f68d911da0e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070146Z:66749ccc-6711-4931-b453-eeaa9d7def68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a04a5be1a5b20949deb03ab8c7840733", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f1ad518-7649-44bd-b623-1d72f05fce3d", + "x-ms-client-request-id": "a04a5be1a5b20949deb03ab8c7840733", + "x-ms-correlation-request-id": "c3c4a5b6-a23b-428b-a7b5-274baf2d62b2", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "2bfa2de7-9f55-45de-aab1-6eaf5006b7c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070147Z:c3c4a5b6-a23b-428b-a7b5-274baf2d62b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0ab0609f93149cf27b150ae3e77d317", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c02ced7e-6400-4443-b4a1-d6b3ad0e2cdd", + "x-ms-client-request-id": "c0ab0609f93149cf27b150ae3e77d317", + "x-ms-correlation-request-id": "f1678ba2-a69e-4168-a0ca-c41241b6e457", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "1971ff23-caae-4c0b-bd3c-465861efb714", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070148Z:f1678ba2-a69e-4168-a0ca-c41241b6e457" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8961c91a6dc06e36f933e8c4b82c6d3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed062367-f072-4dbf-8c2a-334325c54773", + "x-ms-client-request-id": "8961c91a6dc06e36f933e8c4b82c6d3f", + "x-ms-correlation-request-id": "1502fc53-e79b-41ae-a70d-cb2a4df842f3", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "f455f811-18a0-4928-a2fb-b7b96c44cea1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070149Z:1502fc53-e79b-41ae-a70d-cb2a4df842f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec6ec1a5fc20e7718b007900559aca66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7dbff126-3883-4b86-9dac-350aa04fb90b", + "x-ms-client-request-id": "ec6ec1a5fc20e7718b007900559aca66", + "x-ms-correlation-request-id": "e48be66d-2994-4c05-abb9-ca56f138f235", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "7951ffe1-d5ae-46ad-aeaa-5794cb4c2c38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070151Z:e48be66d-2994-4c05-abb9-ca56f138f235" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd9e23dd7d239c72d03cc7fd100b90fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8af2fca9-79fc-4f34-9a24-95b6cfba96f5", + "x-ms-client-request-id": "fd9e23dd7d239c72d03cc7fd100b90fa", + "x-ms-correlation-request-id": "fde0fd75-34cc-4a77-b1f3-ad15d262b32c", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "9d8fc14e-7223-4d29-91bb-3b7c92153b36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070152Z:fde0fd75-34cc-4a77-b1f3-ad15d262b32c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c091144e6081df65779febff435195e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3bfc6f9d-7273-4907-bba4-931b03ac38d8", + "x-ms-client-request-id": "7c091144e6081df65779febff435195e", + "x-ms-correlation-request-id": "3d173b91-34bd-4d91-9661-7e68bab78425", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "fe91e6d9-9e67-44ae-8373-5066bee3dc5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070153Z:3d173b91-34bd-4d91-9661-7e68bab78425" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95e782686f8e281b4fd21ce33573d680", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3c95726-7db4-43f4-a68d-896f1364ced9", + "x-ms-client-request-id": "95e782686f8e281b4fd21ce33573d680", + "x-ms-correlation-request-id": "5d46de62-f42f-4e41-bc5d-e2c857ed8eab", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "272bb988-2c1d-4f3f-99a0-0ef4e3e7c14e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070155Z:5d46de62-f42f-4e41-bc5d-e2c857ed8eab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44bc7e6f4e91f65d2c80a5a97fb2a79a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb2f2266-9979-44ca-8758-16dde2966c28", + "x-ms-client-request-id": "44bc7e6f4e91f65d2c80a5a97fb2a79a", + "x-ms-correlation-request-id": "687b8e04-f658-4e10-9ba0-e1d13e6882a7", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "e1b16389-f1ef-4639-b611-13a1158b976e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070156Z:687b8e04-f658-4e10-9ba0-e1d13e6882a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e946823fb24d46cf5e02d35c912e8e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61568e30-c444-4fb1-8112-68a1cd330da9", + "x-ms-client-request-id": "8e946823fb24d46cf5e02d35c912e8e4", + "x-ms-correlation-request-id": "47e4bb69-50cd-48d2-99ac-9c08181b5097", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "ac5b28ca-3eed-4101-83c9-73187ca7d90c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070157Z:47e4bb69-50cd-48d2-99ac-9c08181b5097" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "764f7ea3d4781acd24f0680eca71a99c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eae91189-8295-418a-a9eb-ac750b76aad5", + "x-ms-client-request-id": "764f7ea3d4781acd24f0680eca71a99c", + "x-ms-correlation-request-id": "8a3b5d13-f9c3-4924-b930-3ed17b88df8c", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "2d303fad-f24a-4ab6-9b14-abb39b7b4461", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070158Z:8a3b5d13-f9c3-4924-b930-3ed17b88df8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccbf812b47de745b11e84fb021272c1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:01:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec02368a-dc82-4822-8226-7f29a41edaac", + "x-ms-client-request-id": "ccbf812b47de745b11e84fb021272c1a", + "x-ms-correlation-request-id": "3d38f1ae-1d3e-4b3c-9f39-fe899b35445b", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "9a171e9f-f237-487f-b624-39d3d72307f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070200Z:3d38f1ae-1d3e-4b3c-9f39-fe899b35445b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0006c19731624f229b7a6934935e0a83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17c574b2-8fde-441c-8545-d82ab45e3713", + "x-ms-client-request-id": "0006c19731624f229b7a6934935e0a83", + "x-ms-correlation-request-id": "fd99e004-4d23-4b17-8393-4ba87190e3fa", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "d82c72b2-a190-4341-ad21-132b4bce79c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070201Z:fd99e004-4d23-4b17-8393-4ba87190e3fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "480a90371b525b0522db6490851cf9fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f53a20c-5099-4a80-a1f5-5ca879d84d32", + "x-ms-client-request-id": "480a90371b525b0522db6490851cf9fd", + "x-ms-correlation-request-id": "be44f067-99e9-455a-b1f6-77cd9272ea13", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "c04b7e11-b2b2-417d-b447-b0b11fb4f805", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070202Z:be44f067-99e9-455a-b1f6-77cd9272ea13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08764dc3a86bfa395f703164de27e1b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0898457c-d334-4fed-9226-1464e345e5fe", + "x-ms-client-request-id": "08764dc3a86bfa395f703164de27e1b3", + "x-ms-correlation-request-id": "84f7db32-8ed7-461a-bd4b-27b93fa48027", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "d5dc9e8b-1651-4869-8d59-8bd4674726d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070203Z:84f7db32-8ed7-461a-bd4b-27b93fa48027" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9078cbdee41d7cc8bcaadd87cc91ca7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6ebbcdb-ffb3-48a0-b328-3cc52f38c0e9", + "x-ms-client-request-id": "9078cbdee41d7cc8bcaadd87cc91ca7e", + "x-ms-correlation-request-id": "5d3c748a-bf1c-49d2-a0e3-1c6ef256ce30", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "ae301775-8ef4-48a6-8ea3-bbfb8a4c783a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070205Z:5d3c748a-bf1c-49d2-a0e3-1c6ef256ce30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45706c8101e78f175710e9e2e9a07dfb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c3c05f2a-f2df-41ad-ac7a-5b1cf9b468e8", + "x-ms-client-request-id": "45706c8101e78f175710e9e2e9a07dfb", + "x-ms-correlation-request-id": "5e686417-4ef0-4a5a-9c69-2785c06dd2fd", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "b432157f-f94d-46f4-95f2-23e2cc24666d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070206Z:5e686417-4ef0-4a5a-9c69-2785c06dd2fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9b2b0fa69a3dfdf85fa4bc1cab12dcd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49cb10af-af43-4090-bde9-31df48f4a6ae", + "x-ms-client-request-id": "b9b2b0fa69a3dfdf85fa4bc1cab12dcd", + "x-ms-correlation-request-id": "959df4a3-7266-4007-b584-306ad33c6739", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "088d204a-b097-4ca8-82ea-ba89d82dce0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070207Z:959df4a3-7266-4007-b584-306ad33c6739" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72e3b2a69bb7dcccb3e9390cfbe5921b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb67672f-567a-4038-b1e7-10249afd1709", + "x-ms-client-request-id": "72e3b2a69bb7dcccb3e9390cfbe5921b", + "x-ms-correlation-request-id": "6696b74c-6dcd-4143-b2ac-a721e0303a6b", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "cb00e791-3d85-4562-b113-70cc5ee8a478", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070209Z:6696b74c-6dcd-4143-b2ac-a721e0303a6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c8de22d10df18db8c90bfedb656c5a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1ad1d94-26e6-4948-bb95-7ad04701119f", + "x-ms-client-request-id": "1c8de22d10df18db8c90bfedb656c5a5", + "x-ms-correlation-request-id": "07307f91-c958-44ed-80cb-bf39374aa05e", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "b6f64bbc-3d8c-4d0c-8b43-2e8aee7884dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070210Z:07307f91-c958-44ed-80cb-bf39374aa05e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "363c1be20bbd5e44e4d505b92fd2e49f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a461e37-ae7f-4e2f-ae7c-e187354b86b3", + "x-ms-client-request-id": "363c1be20bbd5e44e4d505b92fd2e49f", + "x-ms-correlation-request-id": "619f7f63-d54f-45b9-9a41-86c1fc61fabd", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "9892f64b-0bc4-4176-b03d-faaebe2da0ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070211Z:619f7f63-d54f-45b9-9a41-86c1fc61fabd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7932f68112495edd7cae526dbde265c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cebc47bc-7fcb-4bc6-8405-f3697383764a", + "x-ms-client-request-id": "e7932f68112495edd7cae526dbde265c", + "x-ms-correlation-request-id": "af5827f1-b52d-4a6b-bac3-00212d3d0b96", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "da0a5485-5c73-4bcb-b44f-31488657bf7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070213Z:af5827f1-b52d-4a6b-bac3-00212d3d0b96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df2a93245ba9225d9e2e370a0a21e8b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1325699-02f1-4528-adc4-ade218fcb462", + "x-ms-client-request-id": "df2a93245ba9225d9e2e370a0a21e8b9", + "x-ms-correlation-request-id": "f4938f02-fda5-460c-b444-ba78fadc4624", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "b0d07ec3-f1b2-4d3f-887d-2f2131dd89dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070216Z:f4938f02-fda5-460c-b444-ba78fadc4624" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86851facddc3d1802ea65ff2251d8205", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b24fc009-1c3e-47e4-9d2f-54dca967bcff", + "x-ms-client-request-id": "86851facddc3d1802ea65ff2251d8205", + "x-ms-correlation-request-id": "306a895a-1169-477b-a907-82f678fb1b1f", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "74cad4c3-8186-49b6-9a56-48e0910f5b82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070217Z:306a895a-1169-477b-a907-82f678fb1b1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c95a9af04a80cf6d17149f6d9e38ab5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "835060a3-8cc2-4804-89d0-875251282069", + "x-ms-client-request-id": "9c95a9af04a80cf6d17149f6d9e38ab5", + "x-ms-correlation-request-id": "85b117fa-51f3-44a3-a7f0-2af155215c26", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "37fae858-d0c2-4424-9387-a8cbe0f9f366", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070219Z:85b117fa-51f3-44a3-a7f0-2af155215c26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc792be29f5947991358b102fb6bfc80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9fa93f0-bd98-4ac1-95be-1b37d41bc259", + "x-ms-client-request-id": "bc792be29f5947991358b102fb6bfc80", + "x-ms-correlation-request-id": "23ef66b2-e9ad-4644-8e5e-719e67f0c2f1", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "31ba8be6-0ba6-4945-af1e-a4ab3ed4777b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070221Z:23ef66b2-e9ad-4644-8e5e-719e67f0c2f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "615a31ab4c8ca7102978b451938af74a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60c089b9-0ca6-42fa-8abd-937f7dc6f6cc", + "x-ms-client-request-id": "615a31ab4c8ca7102978b451938af74a", + "x-ms-correlation-request-id": "edbca5a2-d8ad-46e8-a6fe-f31f5573d1bb", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "8f3d89d0-b86c-46fe-8ea3-ec835ebf5442", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070222Z:edbca5a2-d8ad-46e8-a6fe-f31f5573d1bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f910a91cc6a410ac0f4e885053f31166", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a935da3-11cf-4eb5-91e6-f9ee3047ed95", + "x-ms-client-request-id": "f910a91cc6a410ac0f4e885053f31166", + "x-ms-correlation-request-id": "e406d450-c508-4fbb-afa0-ae9720e3fa61", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "59f2aae4-2a0c-40c4-a4be-b51a3f876182", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070224Z:e406d450-c508-4fbb-afa0-ae9720e3fa61" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a84ac974288996291ad192e0eb47b389", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0e1c40b-f3a3-4c7e-97bc-d4c9d3fbdc59", + "x-ms-client-request-id": "a84ac974288996291ad192e0eb47b389", + "x-ms-correlation-request-id": "527c6f1a-08e3-438d-b1ed-8d1262c784ff", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "9b12ac65-98de-4ab6-8d19-1d6493322632", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070225Z:527c6f1a-08e3-438d-b1ed-8d1262c784ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51e66761025ae4dc854a523dc3c05436", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aacb7085-ab58-45d4-b0ed-98c30b6086af", + "x-ms-client-request-id": "51e66761025ae4dc854a523dc3c05436", + "x-ms-correlation-request-id": "4fd73139-302e-4934-802e-78ef7bdb174b", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "6c0d1983-a06d-4aa2-a881-fd6f625a02e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070226Z:4fd73139-302e-4934-802e-78ef7bdb174b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cadd4d674f3ff3c18079dfd234cb24c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74e1612f-8140-41c6-9bcc-de868f91b8c4", + "x-ms-client-request-id": "cadd4d674f3ff3c18079dfd234cb24c7", + "x-ms-correlation-request-id": "3f99d54f-b398-45bb-b970-f10238db05c7", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "96f76493-029c-4695-8fb1-b899bf886211", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070227Z:3f99d54f-b398-45bb-b970-f10238db05c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eceeff9bbf0c710cec65223fd6ebd359", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38bef5dd-4673-4727-b101-177a0b60e71a", + "x-ms-client-request-id": "eceeff9bbf0c710cec65223fd6ebd359", + "x-ms-correlation-request-id": "8e9fffa7-a561-4317-90d0-641394bfedc6", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "71d8ac60-2ef9-4993-a804-a2bab9992459", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070229Z:8e9fffa7-a561-4317-90d0-641394bfedc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d795c7ce86a1249a5f3d1e12309b0b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08980a73-14d5-4322-9c0a-d829c97f26c6", + "x-ms-client-request-id": "9d795c7ce86a1249a5f3d1e12309b0b9", + "x-ms-correlation-request-id": "8bcd567c-6e38-4ea3-8583-34826f213318", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "52c1fe7a-ee9f-4442-a1e4-5013157d0969", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070230Z:8bcd567c-6e38-4ea3-8583-34826f213318" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3a28a2568d2a829416bddd92c811d95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce0290ec-fe6c-4d51-a886-4e17a39d4fd0", + "x-ms-client-request-id": "c3a28a2568d2a829416bddd92c811d95", + "x-ms-correlation-request-id": "1ac47424-8c17-4dc0-8c72-38ebb9472dec", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "ca8c2e83-fb34-4399-bd53-86d4b3585f7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070232Z:1ac47424-8c17-4dc0-8c72-38ebb9472dec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d75585a58751b25db6dc4619ee2a4de3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e369b648-c783-47ec-839b-876ca85ab335", + "x-ms-client-request-id": "d75585a58751b25db6dc4619ee2a4de3", + "x-ms-correlation-request-id": "d916854a-3b7e-46ce-8a9c-af4dadd727f5", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "e8e23b91-3a81-4cb0-ab48-92619bc22e15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070233Z:d916854a-3b7e-46ce-8a9c-af4dadd727f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b1a69b51048138732d15cfe0a6fe523", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ed62f8f-0e5a-4476-ac20-469ff6c654a3", + "x-ms-client-request-id": "4b1a69b51048138732d15cfe0a6fe523", + "x-ms-correlation-request-id": "83c0876e-4a4d-4df6-acdb-2f196a1f8ef0", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "0c7a3e63-5377-47c6-a51e-8255642a6924", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070234Z:83c0876e-4a4d-4df6-acdb-2f196a1f8ef0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e3b3cd6d8b39e672df00df52210ba16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e331830-3751-42b7-80e3-e86794eacd4f", + "x-ms-client-request-id": "9e3b3cd6d8b39e672df00df52210ba16", + "x-ms-correlation-request-id": "03b44413-3aec-42d7-bbc5-10e9ac870a93", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "abf4f9c8-b6b9-44fe-87f4-e18d17a3c467", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070235Z:03b44413-3aec-42d7-bbc5-10e9ac870a93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c324fa1dd167954cfd41a5802a5fa846", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d78b49a-0ffb-459f-a683-f7caf2d715c1", + "x-ms-client-request-id": "c324fa1dd167954cfd41a5802a5fa846", + "x-ms-correlation-request-id": "85838acb-2a7c-4acb-88c0-0d5e9e6ea371", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "d499eaa2-b3d5-446a-a48a-13c654caf225", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070237Z:85838acb-2a7c-4acb-88c0-0d5e9e6ea371" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b14222f7afefdc2f017c1e580392f121", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd1e2369-c90c-40ad-a2ab-9ca25ce4d29f", + "x-ms-client-request-id": "b14222f7afefdc2f017c1e580392f121", + "x-ms-correlation-request-id": "c98d02af-9cfe-4d8f-91d9-2524518881c2", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "ae413322-a260-490f-bf02-e17c431c5835", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070238Z:c98d02af-9cfe-4d8f-91d9-2524518881c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fe04517224b05bbefa5a17133e773cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ee236f4-b84e-4564-9dab-e711884a951a", + "x-ms-client-request-id": "0fe04517224b05bbefa5a17133e773cd", + "x-ms-correlation-request-id": "2114beec-39f3-4cd6-9e59-115c09ebc5fb", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "dd562858-070d-4861-9d91-7c62e033e516", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070239Z:2114beec-39f3-4cd6-9e59-115c09ebc5fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00fec64808cd6e27cb48c2ebb2f4926b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33ceacb2-fb69-4f3b-b261-ac3fe236fa7b", + "x-ms-client-request-id": "00fec64808cd6e27cb48c2ebb2f4926b", + "x-ms-correlation-request-id": "2ddc14bf-ffd4-42ae-9376-d8ef837193d5", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "0ad453a4-1e0e-41fc-a535-a6000b0741ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070241Z:2ddc14bf-ffd4-42ae-9376-d8ef837193d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5698350987ed5fb663dc1490ebda819", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ba4618f-7a9a-4954-b7b5-bdfa6c35793c", + "x-ms-client-request-id": "e5698350987ed5fb663dc1490ebda819", + "x-ms-correlation-request-id": "44316773-f51a-4801-b2ec-d2d6aaa2bd80", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "435f8ce3-924e-48d0-ab93-970f625fb06d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070242Z:44316773-f51a-4801-b2ec-d2d6aaa2bd80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c105008f1930e531e7144025fd052fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9ae76f1-d40c-4d99-a3a0-2bc0b7dbf4aa", + "x-ms-client-request-id": "3c105008f1930e531e7144025fd052fb", + "x-ms-correlation-request-id": "d89239ef-6451-468b-ad8f-2677c86a325d", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "de2656f3-cb10-4676-aa38-57a493611a04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070243Z:d89239ef-6451-468b-ad8f-2677c86a325d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af2135128e7eaf4fcb29999046dd600d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a49cb518-57bb-41f2-8c2e-7d62d9221ddb", + "x-ms-client-request-id": "af2135128e7eaf4fcb29999046dd600d", + "x-ms-correlation-request-id": "dd77c875-8c0f-4da7-aa42-f9654ab252c8", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "eb880b98-9c9c-49bf-b147-a74032704eea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070244Z:dd77c875-8c0f-4da7-aa42-f9654ab252c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61e3a89f56e45fd7305ac60c53f87596", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55e1eff2-ee17-4f34-88e1-831069838821", + "x-ms-client-request-id": "61e3a89f56e45fd7305ac60c53f87596", + "x-ms-correlation-request-id": "e8666f58-26f9-4664-9897-c1d6dfe1b3f6", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "e2a58253-a2de-4d58-8d1a-34cb9c2ddef7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070246Z:e8666f58-26f9-4664-9897-c1d6dfe1b3f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d836c6ebf99c7a9b0160716a57c3c840", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9995ecbf-5a0e-4250-896c-a3981d7e68ab", + "x-ms-client-request-id": "d836c6ebf99c7a9b0160716a57c3c840", + "x-ms-correlation-request-id": "c320d0e6-d4dd-4ffa-a207-dc6386f90c76", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "5fde78d7-80da-471f-b238-ee51b8c06a96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070247Z:c320d0e6-d4dd-4ffa-a207-dc6386f90c76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7623611f1ecbc175ec17f23c7425cd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b787947-04b4-4127-8837-00866437d823", + "x-ms-client-request-id": "b7623611f1ecbc175ec17f23c7425cd2", + "x-ms-correlation-request-id": "a71e9bbc-7714-496c-a484-2cbd442898f5", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "0d237f00-0266-43c7-af2c-df26b4c6bbb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070249Z:a71e9bbc-7714-496c-a484-2cbd442898f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80a403b488a6a6710c685f83e56c086c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4c50f05-a25f-409e-b3b7-238f8344f9f4", + "x-ms-client-request-id": "80a403b488a6a6710c685f83e56c086c", + "x-ms-correlation-request-id": "3d21deeb-5029-4bec-a108-b9f66fd698e2", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "792d37ec-865d-44a9-b18d-500ac47fa0e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070250Z:3d21deeb-5029-4bec-a108-b9f66fd698e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cfb8591bd95faa9ae7a79da7978b2bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "714424e5-2752-488b-925f-2ec30dd287c9", + "x-ms-client-request-id": "1cfb8591bd95faa9ae7a79da7978b2bf", + "x-ms-correlation-request-id": "ac47012f-fae8-4792-9c9f-3530b3d42947", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "4fba8ed6-cc20-42f7-aeba-9519b960b764", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070251Z:ac47012f-fae8-4792-9c9f-3530b3d42947" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53b69e04481f8999c5bcab849193d7f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a35dae57-7e92-41a7-94bb-97f1cbc4eda4", + "x-ms-client-request-id": "53b69e04481f8999c5bcab849193d7f1", + "x-ms-correlation-request-id": "4318acbb-fe01-43bb-bbdf-60917051e355", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "4396db9a-90be-4da9-bb7b-37e8b7304cb8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070253Z:4318acbb-fe01-43bb-bbdf-60917051e355" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "419112b93f46f63c5aaad12c0e962c94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c4d631d-2b7e-42c8-88e3-62b787139c96", + "x-ms-client-request-id": "419112b93f46f63c5aaad12c0e962c94", + "x-ms-correlation-request-id": "d26dae62-e9de-4213-a9c5-aa64a9e35cae", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "bdc98943-9dff-4bd3-ae28-427123eb362a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070254Z:d26dae62-e9de-4213-a9c5-aa64a9e35cae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "467fa0b5b4b6494deb7257d91225691a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e813d716-d7a8-4076-9d4f-ed5d8ed94198", + "x-ms-client-request-id": "467fa0b5b4b6494deb7257d91225691a", + "x-ms-correlation-request-id": "0554b050-ce1a-47f2-aa59-c41a9bd1307f", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "64e2c5f0-6214-4f7f-baef-88339aec9640", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070255Z:0554b050-ce1a-47f2-aa59-c41a9bd1307f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "662188a271e6c47861c0f974766d7a2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f67f2a9-efe9-4b67-9caa-30f40c377260", + "x-ms-client-request-id": "662188a271e6c47861c0f974766d7a2e", + "x-ms-correlation-request-id": "84ef90f2-2a49-4fe0-9bca-899de27611d7", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "a2a83142-f336-4ca6-9842-504f8ad87898", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070257Z:84ef90f2-2a49-4fe0-9bca-899de27611d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0ce168f9013043bc54755d4e863e335", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f57b6163-6ec9-4570-8801-b3055bfc5e86", + "x-ms-client-request-id": "f0ce168f9013043bc54755d4e863e335", + "x-ms-correlation-request-id": "91e07c95-93e4-44bb-9cad-ea46eb828581", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "a2f166b2-2448-4e5e-b755-12f2fda26d89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070258Z:91e07c95-93e4-44bb-9cad-ea46eb828581" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8689b641c57544ad27bbe5f6bad8d37e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:02:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c5b4027-a464-476e-9101-d830e6d3aece", + "x-ms-client-request-id": "8689b641c57544ad27bbe5f6bad8d37e", + "x-ms-correlation-request-id": "134b2565-24ea-43a5-83fe-bd68adecdba9", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "a859eff5-c420-4511-b483-f504db291e6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070259Z:134b2565-24ea-43a5-83fe-bd68adecdba9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb4928f8785612074c1ca19e1ba4dcfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc9f0da8-f9f4-44b8-98c5-c858e506e0e9", + "x-ms-client-request-id": "fb4928f8785612074c1ca19e1ba4dcfd", + "x-ms-correlation-request-id": "cfe34382-9eef-4301-986c-3f6f8cd7805d", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "f84297f5-6fcf-460e-ae6b-69cac59ce07e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070301Z:cfe34382-9eef-4301-986c-3f6f8cd7805d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf33c4dcf3e3cab9698ac858ab454aec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "badc8a71-2969-4f1a-868b-eda1cb3a827f", + "x-ms-client-request-id": "bf33c4dcf3e3cab9698ac858ab454aec", + "x-ms-correlation-request-id": "f2dee7fe-db38-4f08-a128-1b6c446343fc", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "65d793c1-e30a-44f2-9398-b76dc93f31fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070302Z:f2dee7fe-db38-4f08-a128-1b6c446343fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bfdcd674e81ac9deaf773959240f2883", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b8c4789-094c-44ca-b250-b731ad302769", + "x-ms-client-request-id": "bfdcd674e81ac9deaf773959240f2883", + "x-ms-correlation-request-id": "cd3fe94a-422d-4e17-b5bf-ed66722491f3", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "d05c4269-27a2-4d0c-9d4d-e3b14916d373", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070303Z:cd3fe94a-422d-4e17-b5bf-ed66722491f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f619e7de14a5049a6f7e92ccafae6707", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb30f42c-a72e-4293-b7a5-50d0f84eb563", + "x-ms-client-request-id": "f619e7de14a5049a6f7e92ccafae6707", + "x-ms-correlation-request-id": "c8168b2e-fb3b-437d-a61f-ba1af6ba1751", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "ea83a478-491f-428a-964a-02ba09dafe88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070305Z:c8168b2e-fb3b-437d-a61f-ba1af6ba1751" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "452ab4d21dc7f4e3e6690f6cba5fa659", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b019dbec-9282-4ab1-83e0-37f8976fda39", + "x-ms-client-request-id": "452ab4d21dc7f4e3e6690f6cba5fa659", + "x-ms-correlation-request-id": "695ae8c4-f406-4921-a4ad-1d4eabf1fe67", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "18bbd317-7c61-4b4d-a9d6-68d18a735082", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070306Z:695ae8c4-f406-4921-a4ad-1d4eabf1fe67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3794461542b60463cd84f9b55121900", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4277defd-4958-4b38-820d-62f35bf51f00", + "x-ms-client-request-id": "c3794461542b60463cd84f9b55121900", + "x-ms-correlation-request-id": "5e30c681-b58a-4ce9-b4f4-a308352b89a6", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "3de7468e-8d52-4908-8fe3-4e80e8e83819", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070307Z:5e30c681-b58a-4ce9-b4f4-a308352b89a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f873110e3e5c1bc03250f3b042e490f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b99e040-4cf4-4bfc-b768-7cfe7403b981", + "x-ms-client-request-id": "6f873110e3e5c1bc03250f3b042e490f", + "x-ms-correlation-request-id": "6ad7c386-9e2e-4267-9062-d62cfd9b5e88", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "48f395e4-8da4-4df2-b2fd-ec60f1366fa4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070308Z:6ad7c386-9e2e-4267-9062-d62cfd9b5e88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a6a38d8a3347edc6dca08efcd489ed3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10e7cbcb-b40d-4b68-872e-b4c4b8ecc774", + "x-ms-client-request-id": "6a6a38d8a3347edc6dca08efcd489ed3", + "x-ms-correlation-request-id": "57a701bd-8a57-46c3-9ae8-8f9dd4d58305", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "b60f9e25-1fa4-4717-9c31-c11633f62db5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070310Z:57a701bd-8a57-46c3-9ae8-8f9dd4d58305" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "885b0f5036d87e7488b8bf05440b5b0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35975b34-2426-4df7-98bb-28f8ee70a43f", + "x-ms-client-request-id": "885b0f5036d87e7488b8bf05440b5b0d", + "x-ms-correlation-request-id": "b44870d6-2a12-45b9-8568-4e49955877b2", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "72839ce4-1a99-4f2a-b857-18afc0b81823", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070311Z:b44870d6-2a12-45b9-8568-4e49955877b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1dc23f8eafa86dcc5409021bdaccf3bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1cbc87d-a89f-4ab0-a2fa-75fc39e448a5", + "x-ms-client-request-id": "1dc23f8eafa86dcc5409021bdaccf3bb", + "x-ms-correlation-request-id": "858907a1-c476-4eec-ae82-c7db81bf23c5", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "99484531-2fa2-4dd9-ab5a-cd1b31889b25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070312Z:858907a1-c476-4eec-ae82-c7db81bf23c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5eb3c87c0d3a237c3ebe17ce3d73962", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04dd99d5-7440-4a3f-ad7c-6a632cd2f157", + "x-ms-client-request-id": "f5eb3c87c0d3a237c3ebe17ce3d73962", + "x-ms-correlation-request-id": "dbd5c8ce-d021-4214-bb77-6e0dc7194f72", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "148d2aac-726e-4086-ae24-cb9e51307cc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070313Z:dbd5c8ce-d021-4214-bb77-6e0dc7194f72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d60fb6e8085a02b42ee34cf3459a4bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2c41856-ee83-451e-8fb8-1cd6073c7cb1", + "x-ms-client-request-id": "8d60fb6e8085a02b42ee34cf3459a4bc", + "x-ms-correlation-request-id": "d45d7e05-e152-497a-b252-56d069453631", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "4a740bc2-ef1f-44e0-8218-c0679536f3fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070315Z:d45d7e05-e152-497a-b252-56d069453631" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "087d04c4661fcd39082059bccd50897d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5eb6b6de-380d-42c9-94ee-aba2000031b1", + "x-ms-client-request-id": "087d04c4661fcd39082059bccd50897d", + "x-ms-correlation-request-id": "5c8d045b-da85-47a3-a459-47f0d321d91d", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "6f588e4c-2ce0-4394-b058-693ca7bdd9fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070316Z:5c8d045b-da85-47a3-a459-47f0d321d91d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "deac9fcf666c0636104bb2e58c686d6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73138e1f-7886-4dbd-9484-38a38142e86c", + "x-ms-client-request-id": "deac9fcf666c0636104bb2e58c686d6a", + "x-ms-correlation-request-id": "a2242b9a-cc47-460c-b632-fb526666c53f", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "29adeb63-d1cb-43d4-a5e0-c1a9c4de9f60", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070317Z:a2242b9a-cc47-460c-b632-fb526666c53f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfb7254731590743c2928565276fd2f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b574894a-e4ca-476b-acab-44b739763b24", + "x-ms-client-request-id": "dfb7254731590743c2928565276fd2f2", + "x-ms-correlation-request-id": "e86ac35b-04b3-4f2f-a7b6-a37b8955933a", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "1f7189bb-5581-4e30-b973-0c361a1c53d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070319Z:e86ac35b-04b3-4f2f-a7b6-a37b8955933a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94ffb664c5ac5e50ce77f7d4b454419f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15ff5972-abb4-4acb-8acc-cea7e972efde", + "x-ms-client-request-id": "94ffb664c5ac5e50ce77f7d4b454419f", + "x-ms-correlation-request-id": "22f385f4-3a63-410a-a55e-fd331a908ebd", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "77f66c9e-c1d2-4b49-bf59-ffb5774d940f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070320Z:22f385f4-3a63-410a-a55e-fd331a908ebd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a875efb2aa989d245ca41cd9e1d0dfa1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9beb0e79-4231-4947-a3ce-44b2dde6333a", + "x-ms-client-request-id": "a875efb2aa989d245ca41cd9e1d0dfa1", + "x-ms-correlation-request-id": "a276fda9-9347-4f36-b058-783144243e08", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "36fe871b-ff9b-4c1f-b050-2f47a7e382a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070321Z:a276fda9-9347-4f36-b058-783144243e08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d680bf78d96881bdd55911e13a6e536d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "112d260e-faec-4e3a-8bae-94727982ab18", + "x-ms-client-request-id": "d680bf78d96881bdd55911e13a6e536d", + "x-ms-correlation-request-id": "981d37e2-6b23-4144-957b-87ec996b97be", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "f4ce3fbd-d637-430d-9eb9-e9e9b1b7d850", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070322Z:981d37e2-6b23-4144-957b-87ec996b97be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37b2e5512afab95a91623707a9767dfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d6dbc28-8d10-475a-afc6-c60a001e6972", + "x-ms-client-request-id": "37b2e5512afab95a91623707a9767dfd", + "x-ms-correlation-request-id": "57a5fb8a-c208-45d4-854b-0b610f2a0139", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "d1d7e7bc-4dfa-4ba1-ad29-e48305a0f125", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070324Z:57a5fb8a-c208-45d4-854b-0b610f2a0139" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f45c56976ad3d83731f3d23f994263ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd665076-0777-42f1-ba52-917920fc8561", + "x-ms-client-request-id": "f45c56976ad3d83731f3d23f994263ee", + "x-ms-correlation-request-id": "de46ed9d-5365-4a9c-952a-4bfe0abcb8e1", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "5ef9da22-3936-4e0a-b784-74861b73cd71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070325Z:de46ed9d-5365-4a9c-952a-4bfe0abcb8e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb87af51a71d4da665c74406a1b5d75e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a08a9a55-4d68-4b76-8d9e-954946be882e", + "x-ms-client-request-id": "fb87af51a71d4da665c74406a1b5d75e", + "x-ms-correlation-request-id": "0b9eaa03-8897-4e50-ac85-38aaed0d9574", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "2cc696d2-f0a7-495c-8e0a-e0a680dc4075", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070326Z:0b9eaa03-8897-4e50-ac85-38aaed0d9574" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e34a13db5f12e699aeda0606571a204f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c361b385-73b6-41bd-b298-e77c96196fe0", + "x-ms-client-request-id": "e34a13db5f12e699aeda0606571a204f", + "x-ms-correlation-request-id": "cd709e82-6ab6-4082-ae10-23af7aa80424", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "91dcc548-5b34-41cb-a461-7b7fe93ad95a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070327Z:cd709e82-6ab6-4082-ae10-23af7aa80424" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fab649fe81eef0dfaf0e8f0c2630377c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0278c918-a9dd-4c71-bca7-4cd54e911fbc", + "x-ms-client-request-id": "fab649fe81eef0dfaf0e8f0c2630377c", + "x-ms-correlation-request-id": "0e49ad26-71d4-4aaf-9456-ccfb42697c17", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "4ae3668c-5311-4641-ba24-2d5c4d0b4b85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070329Z:0e49ad26-71d4-4aaf-9456-ccfb42697c17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8563741c7ff8f1db15a14d43a1a0f54a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40654c61-ce26-4e37-a117-e239f90c9157", + "x-ms-client-request-id": "8563741c7ff8f1db15a14d43a1a0f54a", + "x-ms-correlation-request-id": "907280ca-09e6-40f9-a442-2e83d7585df3", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "3b33cdd2-6cd8-41c6-9c45-0bd6c8dbf12b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070330Z:907280ca-09e6-40f9-a442-2e83d7585df3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5707f5a6ddfe5a6f33593303d08cc07d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bdee6a07-eaa0-4523-891e-9255609422da", + "x-ms-client-request-id": "5707f5a6ddfe5a6f33593303d08cc07d", + "x-ms-correlation-request-id": "a2aa0482-ba32-4592-889a-54e4998643ac", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "44f237ae-d783-4ba5-9aa3-069a7ba69a54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070331Z:a2aa0482-ba32-4592-889a-54e4998643ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3ea89a29ab67f576ec5e44d349b4e0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1387f13e-452c-4616-9dc7-8acb41c5a1a8", + "x-ms-client-request-id": "e3ea89a29ab67f576ec5e44d349b4e0e", + "x-ms-correlation-request-id": "cbd58d45-76b4-45b5-8c44-c83da83ea064", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "86c83b0f-20f5-4919-b32a-48643d1abd1d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070333Z:cbd58d45-76b4-45b5-8c44-c83da83ea064" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31654418df293e7d0409519e4bd72188", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa2f6b72-a346-4e20-af19-eea8ebef6e64", + "x-ms-client-request-id": "31654418df293e7d0409519e4bd72188", + "x-ms-correlation-request-id": "9508ca35-b553-4f7c-b2f4-2b519ff05ff4", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "afa3576f-09da-4859-aec5-987ead462258", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070334Z:9508ca35-b553-4f7c-b2f4-2b519ff05ff4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17a1cfe112b60c939e88e939f8222597", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3466f4a4-cb46-4556-83a7-b9038a04167b", + "x-ms-client-request-id": "17a1cfe112b60c939e88e939f8222597", + "x-ms-correlation-request-id": "966dddf0-1e61-4668-9749-5988f6699150", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "32b54f16-e8ea-4061-ba95-dc3cea8bb976", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070335Z:966dddf0-1e61-4668-9749-5988f6699150" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bea250b8f26c2540babdfad48b83396", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d3dc249-159e-4f23-a040-31f3804e7ec3", + "x-ms-client-request-id": "8bea250b8f26c2540babdfad48b83396", + "x-ms-correlation-request-id": "6e5ab07d-ad8b-4393-a6d3-690ac599ec0d", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "41e61245-b95b-471a-87a7-3803b1df62ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070336Z:6e5ab07d-ad8b-4393-a6d3-690ac599ec0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "656c5ca336fa0658b05992a1f64446e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "327d35ad-5ee0-45ef-b5c4-63f131fc438b", + "x-ms-client-request-id": "656c5ca336fa0658b05992a1f64446e1", + "x-ms-correlation-request-id": "4540f30d-10c2-4482-834b-958690e9fb96", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "4b4ecfc8-6fba-41a6-9538-e66a3f71f3b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070338Z:4540f30d-10c2-4482-834b-958690e9fb96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2693b9e496ed51617bde0c0b32e6c4e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c6b6524-f7e8-4a01-80a6-5091e52ec691", + "x-ms-client-request-id": "2693b9e496ed51617bde0c0b32e6c4e5", + "x-ms-correlation-request-id": "b3c0a1d9-de71-447c-b895-e3b47ff74075", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "10373100-2db3-4009-936d-4ac84791c857", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070339Z:b3c0a1d9-de71-447c-b895-e3b47ff74075" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c955354c0b5d49dcce3dacdfcb3ccc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0435190-d7de-4bcc-9b76-4f373f08c1ea", + "x-ms-client-request-id": "9c955354c0b5d49dcce3dacdfcb3ccc6", + "x-ms-correlation-request-id": "88011dde-d71b-4506-87ed-bbfeec3e223d", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "841674bb-46b5-4461-9884-68823e0a3e7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070340Z:88011dde-d71b-4506-87ed-bbfeec3e223d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ec8fe650c250da8fa1aea1c2a4dd4c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3609f32b-e0ef-45bc-81fd-4765b4962609", + "x-ms-client-request-id": "8ec8fe650c250da8fa1aea1c2a4dd4c9", + "x-ms-correlation-request-id": "a343fccb-4679-446a-b1c0-edea1010742a", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "51cbba9e-6295-487e-bd2e-65fd6032c316", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070342Z:a343fccb-4679-446a-b1c0-edea1010742a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a24cad94a9ae242b1cbe5909bb9355c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd630506-2ffb-418f-81c7-fab5a55b5919", + "x-ms-client-request-id": "a24cad94a9ae242b1cbe5909bb9355c7", + "x-ms-correlation-request-id": "e70b30e1-d164-4092-80b5-feceb08ac23e", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "6273f583-56ad-4f71-b335-ca13017aeefe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070343Z:e70b30e1-d164-4092-80b5-feceb08ac23e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34a54511351e48c0aa88a19bd680a97f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "467d5851-027b-46d7-8a83-5248665036c7", + "x-ms-client-request-id": "34a54511351e48c0aa88a19bd680a97f", + "x-ms-correlation-request-id": "a94e7a34-d242-4007-8629-28250b7ffde1", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "2d6d6dc2-0bfe-4543-b433-49f6afd8d307", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070344Z:a94e7a34-d242-4007-8629-28250b7ffde1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e38110f2966bb18d2a47166b29f5266", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be6a8d10-d432-44c4-b99f-17625275d67d", + "x-ms-client-request-id": "4e38110f2966bb18d2a47166b29f5266", + "x-ms-correlation-request-id": "a658f5a3-6e7d-445c-a9e5-88d4d872183d", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "d5f67eee-d963-4e14-9eb7-9b57ee78c6bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070345Z:a658f5a3-6e7d-445c-a9e5-88d4d872183d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e50a22c4a0a75fabed03f82608904d9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d46f062-2474-48f0-a418-6184dc24d289", + "x-ms-client-request-id": "e50a22c4a0a75fabed03f82608904d9c", + "x-ms-correlation-request-id": "4651a21a-0928-4b00-9bdb-30dd2add9a3b", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "0f692289-2ec4-43a4-b39c-feb68e7c3ab2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070347Z:4651a21a-0928-4b00-9bdb-30dd2add9a3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aaf9da14065be8602de96179c459950a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed4dfbab-0215-4820-9533-b67fda08305a", + "x-ms-client-request-id": "aaf9da14065be8602de96179c459950a", + "x-ms-correlation-request-id": "b0f2f693-91fc-452d-ab5d-5b3acde5b9dd", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "698b6fe7-1214-4f90-a053-76ef5a9fa0d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070348Z:b0f2f693-91fc-452d-ab5d-5b3acde5b9dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4d63a36c4766fd865d9616331f1b341", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93804f37-d6af-499c-91f5-dc529a558014", + "x-ms-client-request-id": "b4d63a36c4766fd865d9616331f1b341", + "x-ms-correlation-request-id": "5572128a-91a4-4ee7-bc86-1e7bbe9bb447", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "aaa00a7d-86ab-4a55-80b1-0c8f0a58108d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070349Z:5572128a-91a4-4ee7-bc86-1e7bbe9bb447" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d852d556a7a6be0bc122b8bd3e329b94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18792613-03cc-465a-b0f8-601fa237d7f5", + "x-ms-client-request-id": "d852d556a7a6be0bc122b8bd3e329b94", + "x-ms-correlation-request-id": "ba1239f0-3b50-4ff0-be07-c957f0c9752f", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "610f6fbd-64db-4a70-b51f-848e0c693cd5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070350Z:ba1239f0-3b50-4ff0-be07-c957f0c9752f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdefed6e99ba5025028a4481a5fdb63b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6de313c-dc3f-4f2f-8b2c-a42437ac1fa8", + "x-ms-client-request-id": "cdefed6e99ba5025028a4481a5fdb63b", + "x-ms-correlation-request-id": "a24d432d-9a4e-42d7-8ab4-96a3913cdfc5", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "60436841-fb6e-4c24-8178-4695fa275c30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070352Z:a24d432d-9a4e-42d7-8ab4-96a3913cdfc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee222036bd078e642f18f2530c1a3133", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ccf9f34-65e0-4ee6-a19a-94eebaf6a083", + "x-ms-client-request-id": "ee222036bd078e642f18f2530c1a3133", + "x-ms-correlation-request-id": "4775c44c-49ed-4955-9557-64b41595c8e5", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "0093f3a6-3964-4c5f-8382-678648e3157d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070353Z:4775c44c-49ed-4955-9557-64b41595c8e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43f4cd3ee502bc87af02d61b638918c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "162f578a-2f73-4ecf-b658-6bd0c9c538d9", + "x-ms-client-request-id": "43f4cd3ee502bc87af02d61b638918c3", + "x-ms-correlation-request-id": "c2c3a5e1-6e7a-48c6-b606-89b4f6b20530", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "a8891bec-a14a-48a6-9466-841f2ff9b58b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070354Z:c2c3a5e1-6e7a-48c6-b606-89b4f6b20530" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d877c6bac0fb08d88619ea1a6d243e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a0a29ac-24c7-4e21-8db8-7eb0b40fd800", + "x-ms-client-request-id": "1d877c6bac0fb08d88619ea1a6d243e7", + "x-ms-correlation-request-id": "3fa294f5-ab41-4ecb-ad6b-c903ce09194c", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "70c33eb3-c883-48c1-b169-f8826eadfd77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070356Z:3fa294f5-ab41-4ecb-ad6b-c903ce09194c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d74311597209503998653e04e7482ba5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0383d4f1-f2d5-4a80-8023-25867663a5db", + "x-ms-client-request-id": "d74311597209503998653e04e7482ba5", + "x-ms-correlation-request-id": "1c0dbe08-120f-48a1-b845-625903ade17b", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "c696e342-f398-4d2a-82b7-e50a09deb42e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070357Z:1c0dbe08-120f-48a1-b845-625903ade17b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fe72fff139391234044baa047e516dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3a99748-cdf2-4a2c-b8da-3bb6a97fe3a2", + "x-ms-client-request-id": "8fe72fff139391234044baa047e516dd", + "x-ms-correlation-request-id": "9001ba6b-2cb6-4ebc-bc99-a7e278a8a835", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "e3c8d684-f800-4889-8f76-74d4c6e2e371", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070358Z:9001ba6b-2cb6-4ebc-bc99-a7e278a8a835" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51c2eebe4046f8ba433685a96d88c940", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:03:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8fa14bc9-2bb9-42a4-8f73-116be0ece1fc", + "x-ms-client-request-id": "51c2eebe4046f8ba433685a96d88c940", + "x-ms-correlation-request-id": "a561bb93-208e-471f-b74f-7bf307a00505", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "1172a0fc-f699-4958-8eb9-b1ee1eff39b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070359Z:a561bb93-208e-471f-b74f-7bf307a00505" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77a2f835b3ea4654eeb197c4b89808b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d7cbd180-df09-402d-b16f-38888c9a8da8", + "x-ms-client-request-id": "77a2f835b3ea4654eeb197c4b89808b2", + "x-ms-correlation-request-id": "e45920ed-a789-4655-8b41-bd84c29ba06b", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "f22081e2-2151-410f-873b-ba750e8e2bca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070401Z:e45920ed-a789-4655-8b41-bd84c29ba06b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f846614fda86be5e75ef4c5c8d7924b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "711b9b67-f5ef-40c5-bef2-be666c599de9", + "x-ms-client-request-id": "f846614fda86be5e75ef4c5c8d7924b8", + "x-ms-correlation-request-id": "ae955119-d02e-4d9a-9aea-3289ce89b202", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "f48aa6fc-dcfd-49b8-beb9-e0066376a41f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070402Z:ae955119-d02e-4d9a-9aea-3289ce89b202" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f6a7a7a9e430af3997c6295a9f540ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a067f645-9b97-468c-bf46-bcd6dc360df4", + "x-ms-client-request-id": "4f6a7a7a9e430af3997c6295a9f540ab", + "x-ms-correlation-request-id": "48a2b9cd-69f1-47fb-92d3-bc7273c137e1", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "6147fa71-7b14-4cff-b7eb-928418c82dda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070403Z:48a2b9cd-69f1-47fb-92d3-bc7273c137e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c5ad22dd0415bb99ae302fb67f8b874", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a816e621-fda9-4f44-aff4-bc13298ccedd", + "x-ms-client-request-id": "0c5ad22dd0415bb99ae302fb67f8b874", + "x-ms-correlation-request-id": "53ae737a-9d40-45f4-908f-54d1d891d838", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "6bf3742b-ac36-467e-8e6d-5210e3a34ffa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070405Z:53ae737a-9d40-45f4-908f-54d1d891d838" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d4adf8db92db16f6e3b5f0a77c8157f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb47c274-8729-43c8-a511-f5b1a726219d", + "x-ms-client-request-id": "3d4adf8db92db16f6e3b5f0a77c8157f", + "x-ms-correlation-request-id": "3c64499c-3b16-4a4e-bf0e-15518200907b", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "d1e00a95-ffa9-412b-a689-a013954ee007", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070406Z:3c64499c-3b16-4a4e-bf0e-15518200907b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb2ea0ae171fa976c10fb5609cf7a3a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2bbb0386-4a74-4ddd-b431-406025067c37", + "x-ms-client-request-id": "bb2ea0ae171fa976c10fb5609cf7a3a1", + "x-ms-correlation-request-id": "626fee70-9aac-497a-960d-b13a8cfc900d", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "8f7e5a2e-f2b2-4c0d-aef2-be83ad30e410", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070407Z:626fee70-9aac-497a-960d-b13a8cfc900d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca08eec303ab737d62a99e0671aee4d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7d90144-497b-470b-8327-e2622ccb0a68", + "x-ms-client-request-id": "ca08eec303ab737d62a99e0671aee4d1", + "x-ms-correlation-request-id": "77d9fe9e-1567-49ef-ad77-c67953cc9d2c", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "73659801-9e32-4c86-b2ab-7a95eebc2fa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070408Z:77d9fe9e-1567-49ef-ad77-c67953cc9d2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c64c82cefdc9755568a07c1e040f1476", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef00c7b9-5e5a-4176-8ffd-5b4743a252ee", + "x-ms-client-request-id": "c64c82cefdc9755568a07c1e040f1476", + "x-ms-correlation-request-id": "8f20ae50-405f-4b87-add3-fdd5ef5ac2a3", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "722566ef-009d-4c4f-b317-4a3e7d64e70e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070410Z:8f20ae50-405f-4b87-add3-fdd5ef5ac2a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8947be974bc0abd423ba5876796f3812", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c083954-6423-43ce-b123-27a6de7b649a", + "x-ms-client-request-id": "8947be974bc0abd423ba5876796f3812", + "x-ms-correlation-request-id": "df95cb1e-1ad2-4447-b5c1-04bd7c3ce57f", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "220bab61-342a-489a-a929-cfe7eb2acdf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070411Z:df95cb1e-1ad2-4447-b5c1-04bd7c3ce57f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1991e32bdcaac6d79892610a875e6f53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18231af0-911a-48d6-bcea-30d915f8efc3", + "x-ms-client-request-id": "1991e32bdcaac6d79892610a875e6f53", + "x-ms-correlation-request-id": "ae66fe4b-f0ce-4d8d-ac54-0f5855c29e59", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "4517addb-e54f-4035-8ab8-94196d394f66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070412Z:ae66fe4b-f0ce-4d8d-ac54-0f5855c29e59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b36e27945a678210aea1a30ea4defcf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e89d3081-d53a-4637-a89b-3a89ec7fca07", + "x-ms-client-request-id": "b36e27945a678210aea1a30ea4defcf9", + "x-ms-correlation-request-id": "9bd77e71-297c-4390-be0e-31340a1be83a", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "a2663351-ae4c-4567-a7d4-2b80aea200a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070414Z:9bd77e71-297c-4390-be0e-31340a1be83a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20f36967fb7dbbcbe680f02de9ca23c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2680494-8340-4f5d-a701-8a52f66a4007", + "x-ms-client-request-id": "20f36967fb7dbbcbe680f02de9ca23c4", + "x-ms-correlation-request-id": "1cba5cf8-b0f0-40b7-9037-9e69596c8830", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "face5e23-097c-41e9-afe2-f85f07a39b6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070415Z:1cba5cf8-b0f0-40b7-9037-9e69596c8830" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51e2044b8500d0aad30f6b0939c821ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c60e91f9-99f5-4f9a-8dc8-63edf350d086", + "x-ms-client-request-id": "51e2044b8500d0aad30f6b0939c821ba", + "x-ms-correlation-request-id": "a6beb84c-787b-4484-bab5-0e64baaaecc2", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "ae428b8f-8196-489e-8f82-4839a2ba0858", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070416Z:a6beb84c-787b-4484-bab5-0e64baaaecc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1da267964e6b98d65bb3cce76ae398e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b48dbba2-8aee-4cfe-86d5-830d05db21b3", + "x-ms-client-request-id": "1da267964e6b98d65bb3cce76ae398e4", + "x-ms-correlation-request-id": "2396d041-359f-471f-a237-b140e5c09b22", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "5d3ad4e9-4bec-4564-9398-882ee623b21d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070418Z:2396d041-359f-471f-a237-b140e5c09b22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fc2de7dabfce1f8be234d6e90c2811d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8cfc0abd-0096-48f9-be48-14209466ac72", + "x-ms-client-request-id": "9fc2de7dabfce1f8be234d6e90c2811d", + "x-ms-correlation-request-id": "4dfdfdf2-628e-4bd1-b2ed-bd364ae40a1a", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "feae1507-5132-4b2e-9b42-77466f6e5827", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070419Z:4dfdfdf2-628e-4bd1-b2ed-bd364ae40a1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8297365e0627fd592e4af54cb9c365ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89b45665-72b8-4184-aec7-2582a668ea01", + "x-ms-client-request-id": "8297365e0627fd592e4af54cb9c365ef", + "x-ms-correlation-request-id": "738e6767-4787-4282-99cb-4dfc6612aa03", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "c9ac8af0-bc73-421d-969f-44eb2bb295db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070420Z:738e6767-4787-4282-99cb-4dfc6612aa03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b8b86768205eabd6ec15e4800670799", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22e4239c-1f33-43c2-951c-2a771c0f072c", + "x-ms-client-request-id": "5b8b86768205eabd6ec15e4800670799", + "x-ms-correlation-request-id": "8f408eef-b644-4781-bfd0-d23ca9ac6151", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "42c1cb7c-4265-47cf-8cd0-b47f1e652c87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070421Z:8f408eef-b644-4781-bfd0-d23ca9ac6151" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3388ae32164b77bd85c571b2b6ab28fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95527d59-635e-4ae5-97e5-fc2e43684150", + "x-ms-client-request-id": "3388ae32164b77bd85c571b2b6ab28fb", + "x-ms-correlation-request-id": "44e42046-2abc-42d7-9c16-9abdc8d540a2", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "2d8fd084-910e-4f6b-ba16-6e20ff22edef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070423Z:44e42046-2abc-42d7-9c16-9abdc8d540a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09f85ebd2637dc1778ac1365a710fcc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c6fbbfa-8b39-4b8d-a1c8-17d20e90c530", + "x-ms-client-request-id": "09f85ebd2637dc1778ac1365a710fcc6", + "x-ms-correlation-request-id": "c454b269-3017-4e52-9a81-a0a43ffd01f2", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "ee8ae700-39d3-4cac-8574-e9e4de216391", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070424Z:c454b269-3017-4e52-9a81-a0a43ffd01f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a1a5c42313a5fa3c913d540100b34c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bc3528b-1c7b-4521-b373-ccb9c46969d3", + "x-ms-client-request-id": "0a1a5c42313a5fa3c913d540100b34c2", + "x-ms-correlation-request-id": "7c7456b0-4634-43e1-869c-ec4bf7ec03ec", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "7eab9f9d-6c9c-4ce9-8765-88957cb72f96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070425Z:7c7456b0-4634-43e1-869c-ec4bf7ec03ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a28b6398fe6f0b6197abbb9f0357d074", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50545352-31b4-4fe3-8c45-47b6123fb069", + "x-ms-client-request-id": "a28b6398fe6f0b6197abbb9f0357d074", + "x-ms-correlation-request-id": "8791b292-9526-44c1-b7b8-b0a80c19622a", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "33c4159b-33c7-40a9-955d-774ddf34a0ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070426Z:8791b292-9526-44c1-b7b8-b0a80c19622a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5970aac81e918bc0ba983f2450d7cb6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e3115b7-4d34-4dd5-b0ea-5ab37719e8b6", + "x-ms-client-request-id": "5970aac81e918bc0ba983f2450d7cb6d", + "x-ms-correlation-request-id": "0282d07d-263a-4afe-b700-ae4d039fff58", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "c2e92fed-e217-49a4-9c89-51c8618ab2c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070428Z:0282d07d-263a-4afe-b700-ae4d039fff58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43cd50775a854456fa0f728f76045c72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "caaedbf1-cc0d-485e-afba-5f24f113c309", + "x-ms-client-request-id": "43cd50775a854456fa0f728f76045c72", + "x-ms-correlation-request-id": "a1de557b-887d-483b-b376-3d2277691c10", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "0b74edba-5b46-4910-ad9c-c7fd6533d6d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070429Z:a1de557b-887d-483b-b376-3d2277691c10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66776142da9b7a31a3ffe8d7be3dbbc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eed42392-3760-4acb-925e-bfd7d8935f4b", + "x-ms-client-request-id": "66776142da9b7a31a3ffe8d7be3dbbc0", + "x-ms-correlation-request-id": "573044ff-562f-4a44-9fa9-7bac6353f22a", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "5313fd58-24e4-416f-a4f6-cab873f611b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070430Z:573044ff-562f-4a44-9fa9-7bac6353f22a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3274ddf8c896eef532b5f81ab3114b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14e6a180-8e96-4f80-9ec1-a0785554405d", + "x-ms-client-request-id": "b3274ddf8c896eef532b5f81ab3114b5", + "x-ms-correlation-request-id": "c45afcf0-aa3a-45f9-9ac2-f989cfbfab99", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "8407e078-f216-4f22-97dc-2701d8c2e7d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070432Z:c45afcf0-aa3a-45f9-9ac2-f989cfbfab99" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efe1cd3c655f9dd11e53a086727f85bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f6f9b2f-013a-4ae4-9c6d-d418a21419e8", + "x-ms-client-request-id": "efe1cd3c655f9dd11e53a086727f85bd", + "x-ms-correlation-request-id": "b3a3b064-ab79-4f50-991f-49bf79c16f29", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "676ac693-b5dd-42f8-9c76-a2e9bb8fb5df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070433Z:b3a3b064-ab79-4f50-991f-49bf79c16f29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28afb254a9ddb6e87109126f7bb0ce71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87b2b733-0eb2-4b09-9e1f-37e7e12ee115", + "x-ms-client-request-id": "28afb254a9ddb6e87109126f7bb0ce71", + "x-ms-correlation-request-id": "065c7d5f-ed03-429d-8363-b46653f744aa", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "be30b225-32f6-4537-bbc3-8de27610af28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070434Z:065c7d5f-ed03-429d-8363-b46653f744aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f09a32eacb5c7a617b899436eb68fcd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4755caa-817b-412d-b6bd-d45000439ca5", + "x-ms-client-request-id": "f09a32eacb5c7a617b899436eb68fcd3", + "x-ms-correlation-request-id": "02aa92be-d13c-401f-8258-6468c7451bb5", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "42b6b97c-5cc4-4d8d-a07e-fbb7d446b7da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070435Z:02aa92be-d13c-401f-8258-6468c7451bb5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f92da2a6eb8293d8e42a7d555362226e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7661e791-d380-4271-ad20-fd4c13487089", + "x-ms-client-request-id": "f92da2a6eb8293d8e42a7d555362226e", + "x-ms-correlation-request-id": "b8e40de4-9740-4447-89f6-7580c2d40205", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "dae0d061-c9b9-4ffb-a7bd-5e856cfb7135", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070437Z:b8e40de4-9740-4447-89f6-7580c2d40205" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f9b2f8495e588615134ad5314b1ca08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef074d7a-e248-4429-bef2-e74717f1de7e", + "x-ms-client-request-id": "3f9b2f8495e588615134ad5314b1ca08", + "x-ms-correlation-request-id": "82668445-363b-4805-abcf-3e97af17382f", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "c85da48d-411d-4cb0-8602-918d89f3ebb1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070438Z:82668445-363b-4805-abcf-3e97af17382f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8c93e0dd582ffef5a060b314d0b2719", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5dae41f5-a779-4612-a6a2-2852d6629ace", + "x-ms-client-request-id": "d8c93e0dd582ffef5a060b314d0b2719", + "x-ms-correlation-request-id": "3abffd5a-7c13-4c1d-8a79-58f869acd3c7", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "8803fb9f-0193-430b-8edc-a328c8b10f7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070439Z:3abffd5a-7c13-4c1d-8a79-58f869acd3c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcb22667bccd10ee41a5a84d3e847f33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6680468c-4666-44e3-8434-abcfde72af89", + "x-ms-client-request-id": "bcb22667bccd10ee41a5a84d3e847f33", + "x-ms-correlation-request-id": "f766e083-7a22-4503-a01b-bf40a5b0f246", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "15572de7-0dda-4e1b-b6df-daceb2fef2c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070440Z:f766e083-7a22-4503-a01b-bf40a5b0f246" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1447745f4999afec3f9ce4de892f3a45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb720184-a105-4ea8-a64c-496f0f57b76e", + "x-ms-client-request-id": "1447745f4999afec3f9ce4de892f3a45", + "x-ms-correlation-request-id": "7ca2076c-e6f5-40c2-bfdc-4b09e71f3b9c", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "896fd016-649a-4e56-b768-cba8cfec4247", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070442Z:7ca2076c-e6f5-40c2-bfdc-4b09e71f3b9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eeeb930d0eff503b50b897dc2da2c0d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f773336-0df9-45fb-8279-273b8d0304e8", + "x-ms-client-request-id": "eeeb930d0eff503b50b897dc2da2c0d6", + "x-ms-correlation-request-id": "78623d6a-4815-438a-8732-a75e7cf7c762", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "4d661573-d658-42b9-a0a8-757598890e2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070443Z:78623d6a-4815-438a-8732-a75e7cf7c762" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9d1d88712c41e8039027c31d80f8711", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3fc3bf7-1607-46a0-810e-c7d103089f93", + "x-ms-client-request-id": "d9d1d88712c41e8039027c31d80f8711", + "x-ms-correlation-request-id": "3e835a65-02a0-4358-8cfe-398e39953130", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "8a11e09e-6b0e-4fb5-8e46-3bdce3087c9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070445Z:3e835a65-02a0-4358-8cfe-398e39953130" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa40626a9098513339f6c4e0b10f819d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1fc886bc-b6fc-49f2-8e4d-7847310dfdb8", + "x-ms-client-request-id": "aa40626a9098513339f6c4e0b10f819d", + "x-ms-correlation-request-id": "77a78c37-4d9d-47ba-9d53-25c29843e247", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "a7ec4d21-b1e4-4fcf-ad6e-4467610db029", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070446Z:77a78c37-4d9d-47ba-9d53-25c29843e247" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0570edb615efa8113cdb4fc91097840", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8abe1e0-3eaf-4b50-8ff5-0e5c52c32ba2", + "x-ms-client-request-id": "b0570edb615efa8113cdb4fc91097840", + "x-ms-correlation-request-id": "69ec0fa1-c310-4992-b647-dde7dfa8d537", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "2b8168ef-54f2-444f-ac69-42809947a91c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070447Z:69ec0fa1-c310-4992-b647-dde7dfa8d537" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca7286311561f63da57f9fcd4e9f6d2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a96e5ad6-77b4-461a-afc5-1ca1674b762c", + "x-ms-client-request-id": "ca7286311561f63da57f9fcd4e9f6d2a", + "x-ms-correlation-request-id": "7c2c5fa6-95cd-4d99-bddb-73819edf2808", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "124de85a-2547-40f0-be38-e9dfb25d4a13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070448Z:7c2c5fa6-95cd-4d99-bddb-73819edf2808" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c955df81d6b809b2e14597cbdc36c02f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4daf1877-8651-4ab3-800b-ee8258ac591c", + "x-ms-client-request-id": "c955df81d6b809b2e14597cbdc36c02f", + "x-ms-correlation-request-id": "c6336ac1-82e2-4c80-8586-f896d31e6166", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "18284405-c455-4198-a668-06a356969515", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070450Z:c6336ac1-82e2-4c80-8586-f896d31e6166" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bae847eb79dc63bd1600bdec1b3ac73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e0a3e7b-2da4-4861-94ad-68eb73db335e", + "x-ms-client-request-id": "2bae847eb79dc63bd1600bdec1b3ac73", + "x-ms-correlation-request-id": "38b4de41-caa7-47b9-81f7-8958dc1ead7b", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "7b56b9b5-1856-4730-ad4b-2cff40b57a00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070451Z:38b4de41-caa7-47b9-81f7-8958dc1ead7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b27b895faeb45b87d368e91c7e711a6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "90412617-0e9d-4d0b-985d-717b52b1acf9", + "x-ms-client-request-id": "b27b895faeb45b87d368e91c7e711a6e", + "x-ms-correlation-request-id": "fbf2320e-76a7-442a-be8b-8d16bc17013a", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "47e60a0a-a077-47b3-bccf-7169f74af221", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070452Z:fbf2320e-76a7-442a-be8b-8d16bc17013a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c94f70bf41f1c98da38ff857cad3472d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "315d29aa-71d8-4307-8fbe-ec49a2577432", + "x-ms-client-request-id": "c94f70bf41f1c98da38ff857cad3472d", + "x-ms-correlation-request-id": "27309b01-532d-4383-8ef0-5bb3a723455c", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "e006169f-4690-42f0-b610-6b0431777ce0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070454Z:27309b01-532d-4383-8ef0-5bb3a723455c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "526b23990dbacf7bfc535734cd1f4860", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "41654bbb-53e2-4934-a0dc-45a3a8ddb069", + "x-ms-client-request-id": "526b23990dbacf7bfc535734cd1f4860", + "x-ms-correlation-request-id": "ba07f194-768f-4fe9-8e3e-44d2d02e76e6", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "d739cefe-b65c-403f-a69b-b11b605cb97f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070455Z:ba07f194-768f-4fe9-8e3e-44d2d02e76e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "511f9d46e2641e82fcb10e25b62f90ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae007155-7493-43a8-8430-ed9693a05253", + "x-ms-client-request-id": "511f9d46e2641e82fcb10e25b62f90ff", + "x-ms-correlation-request-id": "af969193-27af-4936-8587-f8ddcfc03902", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "f309a131-8e90-4a42-bb99-d927f2f12d8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070456Z:af969193-27af-4936-8587-f8ddcfc03902" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a83bb21c705b1b3f57fcd9dea58fb84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f213e69-32e5-42fc-87e6-ca772af59e17", + "x-ms-client-request-id": "5a83bb21c705b1b3f57fcd9dea58fb84", + "x-ms-correlation-request-id": "363dded3-a902-4a04-9724-86a9aeeabcc0", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "57a73ced-1010-4016-af8b-af0bfc208a38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070458Z:363dded3-a902-4a04-9724-86a9aeeabcc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c119847f6b4b6c8a14d5609ff5519cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:04:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6415c13-dc00-4bd2-a6de-763fcf35271c", + "x-ms-client-request-id": "2c119847f6b4b6c8a14d5609ff5519cc", + "x-ms-correlation-request-id": "74c0e772-462e-410c-89a6-e8b8db00a0d7", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "4b7cdda7-131a-4912-bdb9-faef9175d012", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070459Z:74c0e772-462e-410c-89a6-e8b8db00a0d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "121358c2ed9b7f5ae96e5be514e433a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de83f9bc-335e-429c-9308-c373a1953727", + "x-ms-client-request-id": "121358c2ed9b7f5ae96e5be514e433a3", + "x-ms-correlation-request-id": "bfb2330e-df10-46b8-81b1-255498d1d78d", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "f3326446-920a-449f-939b-48633f89a902", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070500Z:bfb2330e-df10-46b8-81b1-255498d1d78d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ddd8ab5631e2a4bf3ccb8b771aab29f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4b8664de-78b5-476c-b753-5a2e252b871f", + "x-ms-client-request-id": "1ddd8ab5631e2a4bf3ccb8b771aab29f", + "x-ms-correlation-request-id": "8bc6cb08-ced6-4010-a02c-ad73166ae723", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "4b02749b-79ff-46d5-bdee-51d3417ebd97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070502Z:8bc6cb08-ced6-4010-a02c-ad73166ae723" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92da0166e94559e83d9242469ae3a1bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6f40a55-74eb-49a2-a446-fa05d2c55923", + "x-ms-client-request-id": "92da0166e94559e83d9242469ae3a1bc", + "x-ms-correlation-request-id": "5b622747-7d28-4521-a16d-06690e5fa01f", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "a496dd30-d44c-42fc-9ec8-7599cdf5af8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070503Z:5b622747-7d28-4521-a16d-06690e5fa01f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7553b21afb785ead0de81fcf35a30d3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6eacb39-966c-4792-a4bc-96f6103ca25d", + "x-ms-client-request-id": "7553b21afb785ead0de81fcf35a30d3f", + "x-ms-correlation-request-id": "2ec80bf7-1dad-458e-bafa-9aca22c18f2b", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "ca232dfb-b228-4a07-a322-660b67e67d07", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070504Z:2ec80bf7-1dad-458e-bafa-9aca22c18f2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "137fbcbca10acc5ea184e08c21048f0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40a3d151-d891-4725-be9e-ba6a4d416975", + "x-ms-client-request-id": "137fbcbca10acc5ea184e08c21048f0f", + "x-ms-correlation-request-id": "5282042f-7085-4b88-b122-a9f4141c00c5", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "f3801f34-e216-46a8-b31d-45e00115bab6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070506Z:5282042f-7085-4b88-b122-a9f4141c00c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf9dfb2a3c566a27537b855cca192499", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64c8390b-f624-49d2-b2e0-42721c90ba04", + "x-ms-client-request-id": "bf9dfb2a3c566a27537b855cca192499", + "x-ms-correlation-request-id": "27193260-bc37-4b0c-ab2d-add97a09f84e", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "9f8d358e-a7bf-473b-aa1a-f0e1153742c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070507Z:27193260-bc37-4b0c-ab2d-add97a09f84e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de8a03848d6478b25387d4f41a213d08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d69c5cda-1919-4060-8d0b-d915b381177b", + "x-ms-client-request-id": "de8a03848d6478b25387d4f41a213d08", + "x-ms-correlation-request-id": "8a115641-7807-4707-a035-db1e2fcb22f9", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "63c31076-687f-4e95-9360-a4ce75d98f76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070508Z:8a115641-7807-4707-a035-db1e2fcb22f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39a40f584e067fe99514c08e1c010187", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7db3e9e2-42ff-4e36-83fa-f7561f5f1a00", + "x-ms-client-request-id": "39a40f584e067fe99514c08e1c010187", + "x-ms-correlation-request-id": "3e139888-fcd3-4029-bdf3-e58fe028aa31", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "0b3e369e-e660-4742-9da6-a2e2b1e19c8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070509Z:3e139888-fcd3-4029-bdf3-e58fe028aa31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d07465fb17a9dab49246bcf68334f31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5d8c64f-3ad9-4aa9-994e-0050bf98b33d", + "x-ms-client-request-id": "1d07465fb17a9dab49246bcf68334f31", + "x-ms-correlation-request-id": "4aca3028-c04b-4484-a069-0f9cac9a10cc", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "d6d8857a-7cc2-4eb3-977d-b87a353d0a14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070511Z:4aca3028-c04b-4484-a069-0f9cac9a10cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba047c3deb7535931a0a494fcd235b51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb1f0521-52ba-48a9-9199-5500146f40f3", + "x-ms-client-request-id": "ba047c3deb7535931a0a494fcd235b51", + "x-ms-correlation-request-id": "b2d31203-6ac5-4cf6-b773-d97033992254", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "f725e52f-c754-44d5-ae04-97691f008c50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070512Z:b2d31203-6ac5-4cf6-b773-d97033992254" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4944c851f19a78e6307efe1e2191661", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f701a97-c71d-4c2f-b475-6d185a313418", + "x-ms-client-request-id": "d4944c851f19a78e6307efe1e2191661", + "x-ms-correlation-request-id": "5c4e2370-5044-456c-bd5d-de9be3096f80", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "9d9f93ef-e77f-42f8-80f8-765dee7a9fa2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070513Z:5c4e2370-5044-456c-bd5d-de9be3096f80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0508ec446fd7411b3d1036f675ccf25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd8656dc-a169-49f2-9ca5-1eb1b3799e15", + "x-ms-client-request-id": "a0508ec446fd7411b3d1036f675ccf25", + "x-ms-correlation-request-id": "8e8d92b2-ecda-4438-96f5-767d4354dda1", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "504114b4-60b1-42e4-b474-de465a5af5dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070514Z:8e8d92b2-ecda-4438-96f5-767d4354dda1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c491ac97b9e1e18ee5c576efbb15300", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "741cbe87-9955-46d5-863f-ed236ec762c3", + "x-ms-client-request-id": "1c491ac97b9e1e18ee5c576efbb15300", + "x-ms-correlation-request-id": "57bcca5f-843f-48f8-b1b8-03fd4c5175db", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "f3e16664-0bc6-4db6-80bd-75d9373aede0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070516Z:57bcca5f-843f-48f8-b1b8-03fd4c5175db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e8be7f4bbd33e543a1f20471c1e3f07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fa4dcfe-9538-4b93-9362-cff372a7cb9f", + "x-ms-client-request-id": "3e8be7f4bbd33e543a1f20471c1e3f07", + "x-ms-correlation-request-id": "66461d40-a5ff-4279-99f1-807d22333d41", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "85218bae-27d9-4ae9-8067-35ac4ed99dc2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070517Z:66461d40-a5ff-4279-99f1-807d22333d41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c818c937fad048c27632b1a1efa37801", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5c2bebe-db09-41aa-a231-1d3df3896558", + "x-ms-client-request-id": "c818c937fad048c27632b1a1efa37801", + "x-ms-correlation-request-id": "7d9b4776-f13d-4b7f-8e7a-bdd6478d15ae", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "6830c453-9003-4148-ae6f-d92e102a2f86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070518Z:7d9b4776-f13d-4b7f-8e7a-bdd6478d15ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f7b037e90d00d52c50ae17e5bd001cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f11f9b64-9ee9-4aca-a356-1560f33a6437", + "x-ms-client-request-id": "7f7b037e90d00d52c50ae17e5bd001cf", + "x-ms-correlation-request-id": "945084ce-6560-469b-9759-23d54df1ac6c", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "aa9743ed-6b83-4746-9c84-49ef60035c67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070520Z:945084ce-6560-469b-9759-23d54df1ac6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32374f1c8a98f9302442c8a00ab24e97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3197476d-56fc-4230-87c7-8da6e379e003", + "x-ms-client-request-id": "32374f1c8a98f9302442c8a00ab24e97", + "x-ms-correlation-request-id": "04e4b7a7-aacd-4678-8a0e-59fbfb7bb365", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "ee23726d-9304-4da7-9279-9c4bd1ebe9ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070521Z:04e4b7a7-aacd-4678-8a0e-59fbfb7bb365" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18c91ea7bfa3a637770b02c51944eda6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee9cabe5-5789-4ed9-9f8b-81f63c0c7b7d", + "x-ms-client-request-id": "18c91ea7bfa3a637770b02c51944eda6", + "x-ms-correlation-request-id": "49064a99-7ff7-48c8-bff3-a74dccabe4da", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "3a77b3fc-9730-4481-950d-60486641fc4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070522Z:49064a99-7ff7-48c8-bff3-a74dccabe4da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a084e130466cf468d3815b8dc8b10313", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f67739c7-e056-4883-b8e5-b92f41e82f02", + "x-ms-client-request-id": "a084e130466cf468d3815b8dc8b10313", + "x-ms-correlation-request-id": "2bd0d240-a0af-4a07-b447-88aff63d68fc", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "ed0f541b-0703-4f26-b548-12b10dcf0f79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070523Z:2bd0d240-a0af-4a07-b447-88aff63d68fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cd74abbe8075c2c1890ba8d876adfe0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "442362c0-9c78-457f-8197-534b4a3b2e2d", + "x-ms-client-request-id": "3cd74abbe8075c2c1890ba8d876adfe0", + "x-ms-correlation-request-id": "bc5b9f96-660c-4667-b607-3da736216b0d", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "e9a6b198-1e79-4b22-b882-3bd3237474eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070525Z:bc5b9f96-660c-4667-b607-3da736216b0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "286f2155ae2e602bb5d5452164a9dec5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2f35119-d8a6-46dd-bf38-bb5d532dd327", + "x-ms-client-request-id": "286f2155ae2e602bb5d5452164a9dec5", + "x-ms-correlation-request-id": "5bdab4dc-40e9-4321-970c-01202ede8ca0", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "6be23f83-5093-4dc4-ad67-b8121f868885", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070526Z:5bdab4dc-40e9-4321-970c-01202ede8ca0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf09ef08b16c479fb52788db8bdb6c68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d4e1b5e-ebff-468a-9b4e-f4babad2fdee", + "x-ms-client-request-id": "cf09ef08b16c479fb52788db8bdb6c68", + "x-ms-correlation-request-id": "5bfa6273-9b5c-495e-83f6-d5fc345f674c", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "0eb41e72-d541-4d53-8a20-ddc6aceadf86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070527Z:5bfa6273-9b5c-495e-83f6-d5fc345f674c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6387aa1da410de41e768632a30bf76e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "428cb330-2a5b-4cba-b8df-a6606bc28b06", + "x-ms-client-request-id": "a6387aa1da410de41e768632a30bf76e", + "x-ms-correlation-request-id": "0535125d-a823-465a-8809-2c84933ea911", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "a1ebdc8b-204b-47fe-b9b8-36f7ebf2bba4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070528Z:0535125d-a823-465a-8809-2c84933ea911" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9885f5b21060a37482287306254fd5da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "07161574-7661-4610-a22c-6793f6e4b905", + "x-ms-client-request-id": "9885f5b21060a37482287306254fd5da", + "x-ms-correlation-request-id": "32299472-f4cf-45c9-be31-f6ede2cad951", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "ca5314fa-6158-4758-8a8c-c7b4c96dbdff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070530Z:32299472-f4cf-45c9-be31-f6ede2cad951" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea7fdd6837702d830afcb0f52a6da4a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0429d732-531c-47ff-a8d3-7870f19670d2", + "x-ms-client-request-id": "ea7fdd6837702d830afcb0f52a6da4a9", + "x-ms-correlation-request-id": "4e6fb4d8-335f-4a6a-a409-d51ee9bbc4ef", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "3c40a793-8b14-4762-8d94-6aaa9bfe00a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070531Z:4e6fb4d8-335f-4a6a-a409-d51ee9bbc4ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95291930d35591070694241966dee7ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb2d4fb5-f707-4897-a6e7-809d204480d7", + "x-ms-client-request-id": "95291930d35591070694241966dee7ce", + "x-ms-correlation-request-id": "3ee42663-e7b9-4586-8f71-87d042580388", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "16811ead-22dd-4b9e-8a42-9f0da31b111b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070532Z:3ee42663-e7b9-4586-8f71-87d042580388" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5c9aba10d8b7bfe72588d645f7e7815", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10378780-1357-4d69-bef9-fd07b1bada8f", + "x-ms-client-request-id": "c5c9aba10d8b7bfe72588d645f7e7815", + "x-ms-correlation-request-id": "c6df10e0-e29c-403b-8f1c-c11eaa1bd7c5", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "99d941ed-a6d9-42e5-a24e-1d798cedebc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070534Z:c6df10e0-e29c-403b-8f1c-c11eaa1bd7c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0cd6c9833f269484d5eee4db1269c62c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23ea9bd0-2096-45f3-a482-805b943883f7", + "x-ms-client-request-id": "0cd6c9833f269484d5eee4db1269c62c", + "x-ms-correlation-request-id": "451ce1e1-8161-4050-ab7f-8e792c94fe1a", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "d62d7c11-d3b1-47e0-a4d6-47a35fe0989b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070535Z:451ce1e1-8161-4050-ab7f-8e792c94fe1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f54e114dea3221e1bae23fd46a23187", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88d8b7cd-361b-485a-aa6d-b36fbe6145ea", + "x-ms-client-request-id": "7f54e114dea3221e1bae23fd46a23187", + "x-ms-correlation-request-id": "4b8b99c4-12e4-4dd7-b6c3-f53e760e38b7", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "d0cef583-7843-499a-a62c-23c4cd2ef4b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070536Z:4b8b99c4-12e4-4dd7-b6c3-f53e760e38b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d960e1cdb0862a82734ef9d29236808", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d54313ca-8a78-4ba7-8d73-19f82eac182b", + "x-ms-client-request-id": "9d960e1cdb0862a82734ef9d29236808", + "x-ms-correlation-request-id": "ad783d9e-c3a9-4b96-9aa3-eac42f6fc99a", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "6c6fb1d2-b2b8-4812-80f8-a018f3fc4e40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070537Z:ad783d9e-c3a9-4b96-9aa3-eac42f6fc99a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e4f6191f92aa471abb3f1781b864e33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bd547e1-11f5-4a68-b80b-038f5b9eaeae", + "x-ms-client-request-id": "7e4f6191f92aa471abb3f1781b864e33", + "x-ms-correlation-request-id": "2d503dcc-91e5-4cbc-bab4-f313daa2441c", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "0c41e3f3-7ec4-4d49-8051-0c61d6e74190", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070539Z:2d503dcc-91e5-4cbc-bab4-f313daa2441c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04bf5cbc29d3392339f2576fef80f9f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed8d04b4-bd93-485e-b432-1d038dc11cdb", + "x-ms-client-request-id": "04bf5cbc29d3392339f2576fef80f9f7", + "x-ms-correlation-request-id": "ec62e730-a7c3-4f95-aae3-93b998ad5d6a", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "17bc9401-a3be-42e6-8d3d-d2fafe3630c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070540Z:ec62e730-a7c3-4f95-aae3-93b998ad5d6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e56c1a45b353225d9df1f155ea2f46a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a20efe4c-be8a-4e68-813c-0cfcd05dc7ea", + "x-ms-client-request-id": "e56c1a45b353225d9df1f155ea2f46a0", + "x-ms-correlation-request-id": "3579032d-8a99-413f-9555-0db65994dd3f", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "170da6a4-bc0d-4a1b-95ef-3c559c6a557e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070541Z:3579032d-8a99-413f-9555-0db65994dd3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cce0bce6646368353d164437a202b52a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "24cd3ad1-5d8b-44ee-87fc-529a79a42d42", + "x-ms-client-request-id": "cce0bce6646368353d164437a202b52a", + "x-ms-correlation-request-id": "682c50fe-4599-4ee9-ac24-1393b7b494d6", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "109f78bb-d09e-469f-bd72-45ae09463ec6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070543Z:682c50fe-4599-4ee9-ac24-1393b7b494d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0032f9b9691a09dffe9c66e137ce4f09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc20446d-e331-43de-8b48-d8b7e856f6b7", + "x-ms-client-request-id": "0032f9b9691a09dffe9c66e137ce4f09", + "x-ms-correlation-request-id": "1d3c5feb-980e-4e22-b446-df0b1644e6a6", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "9d2646a2-ed94-41c6-a7d3-f23e35c16a7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070544Z:1d3c5feb-980e-4e22-b446-df0b1644e6a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3288b6ab2c9fe194e404a73d6e26809a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df7bb26a-5920-4c86-bd7c-1b94793fb775", + "x-ms-client-request-id": "3288b6ab2c9fe194e404a73d6e26809a", + "x-ms-correlation-request-id": "3d69b1d9-9e0f-45b1-b1a7-bcb5a27ff747", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "28455064-f6ec-4ad5-a3a9-33eca3481aea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070545Z:3d69b1d9-9e0f-45b1-b1a7-bcb5a27ff747" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f19bc73c45fd7d86ddd7cdc7fd54306e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3cc4a9f-c3de-40ea-aab3-336fca0857f0", + "x-ms-client-request-id": "f19bc73c45fd7d86ddd7cdc7fd54306e", + "x-ms-correlation-request-id": "d1ba2b21-25ba-462f-a83a-7226c0f4b9e0", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "54b40c46-1c88-4ab8-a872-d3241af11265", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070546Z:d1ba2b21-25ba-462f-a83a-7226c0f4b9e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb8b3ac7827a8c8b65501b16c1a29ad8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1a7fb683-8d7a-4586-8f2e-01a758d84413", + "x-ms-client-request-id": "eb8b3ac7827a8c8b65501b16c1a29ad8", + "x-ms-correlation-request-id": "1515c727-aaed-4ace-be54-97294135aab0", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "a2116f35-5dfc-4e52-a4f1-86e1620e39c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070548Z:1515c727-aaed-4ace-be54-97294135aab0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70a4cc1c5d33660c300b55c85ecce490", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7b98c64-dd68-44a1-824b-6b3e46950614", + "x-ms-client-request-id": "70a4cc1c5d33660c300b55c85ecce490", + "x-ms-correlation-request-id": "b761c5a6-c438-48fc-b78f-e017412cb71a", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "bdc49faf-6416-4bc4-a935-40b373af5ba2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070549Z:b761c5a6-c438-48fc-b78f-e017412cb71a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "347538d3959ab9203b0e8cac2970bb3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bedefcee-f715-4949-9faf-dc1d7c8660c7", + "x-ms-client-request-id": "347538d3959ab9203b0e8cac2970bb3a", + "x-ms-correlation-request-id": "27b98ed9-dd4d-4753-867e-aa7074f4c695", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "35e254dc-ea92-4765-ba3d-a28039367483", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070550Z:27b98ed9-dd4d-4753-867e-aa7074f4c695" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30aaf53dc0af693b2e25ba6e2dc32d98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85c2ecb7-8406-46c5-8cfe-18e3872a3def", + "x-ms-client-request-id": "30aaf53dc0af693b2e25ba6e2dc32d98", + "x-ms-correlation-request-id": "22214e43-0d15-49c8-a2c3-5876b767cb86", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "c53b06a5-57e2-42af-b33b-75d178769fa3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070551Z:22214e43-0d15-49c8-a2c3-5876b767cb86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88428b6c662c873eabea3424d15f3cbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94019fbf-a480-472a-a298-19e9ddec276f", + "x-ms-client-request-id": "88428b6c662c873eabea3424d15f3cbf", + "x-ms-correlation-request-id": "fd8e21be-e3d3-4646-9d86-dcf473d83f59", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "3995c026-4201-4799-9f07-270e8f4920c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070553Z:fd8e21be-e3d3-4646-9d86-dcf473d83f59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "698a1b4fb32212e0fd0c0575dab18c78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29fd82c6-f508-4807-b3b6-04013ed0f1c7", + "x-ms-client-request-id": "698a1b4fb32212e0fd0c0575dab18c78", + "x-ms-correlation-request-id": "1a13c7d5-1bfb-444a-9d6b-b2c0fcf2e2c4", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "04223a07-1069-4b9c-afbf-c4d589fa2264", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070554Z:1a13c7d5-1bfb-444a-9d6b-b2c0fcf2e2c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e40f4e0332dd70db62385c58c1697cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c41d41e5-2ece-4cd6-917b-5c3f0a150851", + "x-ms-client-request-id": "9e40f4e0332dd70db62385c58c1697cf", + "x-ms-correlation-request-id": "83211e81-57d3-403c-9fad-428bdfd921c9", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "88f5dad3-e247-4871-8e9d-44b5fc0f565f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070555Z:83211e81-57d3-403c-9fad-428bdfd921c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "121efbe8c438b875ab308b1f60c9adf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10490ba3-8c54-46a3-806c-5de1d29036a1", + "x-ms-client-request-id": "121efbe8c438b875ab308b1f60c9adf9", + "x-ms-correlation-request-id": "0a55d15e-fd31-46d9-bea0-c8ab0f2c4a7e", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "fac66796-95b1-44bd-ae3a-12f6e611acf7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070557Z:0a55d15e-fd31-46d9-bea0-c8ab0f2c4a7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd44bb5e9e1e1c920db3b2fe2e1b86e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45c26007-38b0-49b2-8b55-5904ae6e7845", + "x-ms-client-request-id": "dd44bb5e9e1e1c920db3b2fe2e1b86e7", + "x-ms-correlation-request-id": "ebf76157-1bd7-4acd-bafe-bb84efa7fc97", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "8732abe9-1f4a-4437-9747-315f3ce5eb59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070558Z:ebf76157-1bd7-4acd-bafe-bb84efa7fc97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de8c36757a931c407e87f3fda8ee76ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:05:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f63a34d-adb0-4830-ad1b-bab942a684d3", + "x-ms-client-request-id": "de8c36757a931c407e87f3fda8ee76ed", + "x-ms-correlation-request-id": "a3712706-0ee7-48e9-90c3-5683a1e5722c", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "b541b8da-c7f8-4111-b3b0-c04db0848d38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070559Z:a3712706-0ee7-48e9-90c3-5683a1e5722c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0668b76bad249b06801048511778a8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "060a9cfe-4e7d-4c0d-a10e-8a742706c046", + "x-ms-client-request-id": "d0668b76bad249b06801048511778a8f", + "x-ms-correlation-request-id": "ed58b7c0-4627-4009-b0df-a094af002ae6", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "d1f6125b-a1aa-4f15-8241-6441916bc658", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070600Z:ed58b7c0-4627-4009-b0df-a094af002ae6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2aaaa3aace3ce3667a275f96ab95741f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc56e31f-ff4f-4e47-bc88-b60d87ea1c61", + "x-ms-client-request-id": "2aaaa3aace3ce3667a275f96ab95741f", + "x-ms-correlation-request-id": "62c1b8cc-89ce-4413-a955-b166ec7ea37d", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "985a2867-7e39-4bcd-9aeb-16922fab6602", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070602Z:62c1b8cc-89ce-4413-a955-b166ec7ea37d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a388c43cb5b4bb158543769175bb0a06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a2e2192-31f3-4a1b-b9cb-d3dd82fcbf06", + "x-ms-client-request-id": "a388c43cb5b4bb158543769175bb0a06", + "x-ms-correlation-request-id": "ebf043a6-3e44-48d8-9563-befab141843f", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "aa6624b2-b2ef-4cdb-8c97-a1f6d0ccbd99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070603Z:ebf043a6-3e44-48d8-9563-befab141843f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "045263fd4b43a8b1248356aa5a199dd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "077e03f4-7cdf-48fe-baf6-25fddfe27ab3", + "x-ms-client-request-id": "045263fd4b43a8b1248356aa5a199dd3", + "x-ms-correlation-request-id": "09c98b96-4e8a-4510-b9ef-31437d6ab032", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "e4bdca35-8578-4f34-9210-7eb4e941a834", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070604Z:09c98b96-4e8a-4510-b9ef-31437d6ab032" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c48e58de6eef4db8eefa5f858d56ebf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "caadd480-0786-483c-b0af-5ffed34c29d2", + "x-ms-client-request-id": "4c48e58de6eef4db8eefa5f858d56ebf", + "x-ms-correlation-request-id": "9f4d9dfa-2e63-44a8-b666-688184375dbb", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "592d4b9f-c9d5-4393-a708-085ffc0e62fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070605Z:9f4d9dfa-2e63-44a8-b666-688184375dbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4898581d7042f0db13e07f315f6b606b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f26539d-a6ae-4c6f-95cc-531c4bd20805", + "x-ms-client-request-id": "4898581d7042f0db13e07f315f6b606b", + "x-ms-correlation-request-id": "04dffd11-4ba5-44d9-9e20-4e93b75646fc", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "192a10a6-e507-4988-8e86-4c0b80f043e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070607Z:04dffd11-4ba5-44d9-9e20-4e93b75646fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f03a2a5be721718885e7553a6b84f4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc1457a1-6329-47ab-8f9f-db211c7a33c0", + "x-ms-client-request-id": "8f03a2a5be721718885e7553a6b84f4e", + "x-ms-correlation-request-id": "5c6bfceb-d829-4baf-a162-688e62531dcc", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "91619482-5543-446f-be36-ca6cba0b1be6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070608Z:5c6bfceb-d829-4baf-a162-688e62531dcc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "028c961455801c910a57390e67a99523", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2a7e706-8c15-4f0c-971f-44410f14da37", + "x-ms-client-request-id": "028c961455801c910a57390e67a99523", + "x-ms-correlation-request-id": "8f80af7d-a2e4-41eb-8e69-68494178b7af", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "fff4d080-5c20-49a5-afe4-858823a9dc85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070610Z:8f80af7d-a2e4-41eb-8e69-68494178b7af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b553398fded15f4c4081bfe4fa884a5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9516b168-8ed4-4316-99dd-99d67c02e1e5", + "x-ms-client-request-id": "b553398fded15f4c4081bfe4fa884a5a", + "x-ms-correlation-request-id": "ab0f24fc-d1d5-40b4-aab5-643970400372", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "2e5af150-9c6f-4a5b-a0ad-f10549d7b990", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070611Z:ab0f24fc-d1d5-40b4-aab5-643970400372" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c81c30905ede4fea11e7851b8409b0de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02925693-8f7e-4260-b8c5-f655973baf20", + "x-ms-client-request-id": "c81c30905ede4fea11e7851b8409b0de", + "x-ms-correlation-request-id": "9e600334-233b-4b14-8afc-e527ff8e413c", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "5f2db1a9-6f87-4f8b-9644-9df0bea8e0cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070612Z:9e600334-233b-4b14-8afc-e527ff8e413c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cc452c99a65367c492dc1ff95ac2281", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2332126c-e2f4-411c-b1a1-617f820cc5d1", + "x-ms-client-request-id": "6cc452c99a65367c492dc1ff95ac2281", + "x-ms-correlation-request-id": "0ccbd4fc-528a-44a8-98d9-8f12c1dc3331", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "a9ad72dc-594e-4c9f-ba3a-516d5301fcbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070613Z:0ccbd4fc-528a-44a8-98d9-8f12c1dc3331" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "367edf0dcc8d30444f03a4ea5931da36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8852f2d8-161e-494d-9480-14c803eaf114", + "x-ms-client-request-id": "367edf0dcc8d30444f03a4ea5931da36", + "x-ms-correlation-request-id": "43482139-0a70-479a-acca-1b648b6de169", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "d821e27b-a24c-4f28-b0a7-83b41a730551", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070615Z:43482139-0a70-479a-acca-1b648b6de169" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a71be1d1ddc4f6f5b3e67fb09cebba64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c411383-c4e3-4d13-97bf-c1d65d473f32", + "x-ms-client-request-id": "a71be1d1ddc4f6f5b3e67fb09cebba64", + "x-ms-correlation-request-id": "fc9b01fc-f8ce-4d64-b1e9-362f75914065", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "c0049996-03b9-40e5-9ab3-e291411abed3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070616Z:fc9b01fc-f8ce-4d64-b1e9-362f75914065" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a40e03c4798bfc510d931d61f692dd18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c3062df1-29f8-4281-afb2-f02e1da6ea4e", + "x-ms-client-request-id": "a40e03c4798bfc510d931d61f692dd18", + "x-ms-correlation-request-id": "eda8c3ae-dc3c-408c-8b7d-ed62ae569e03", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "749008ca-dbc8-45da-a979-31e57a95e02d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070617Z:eda8c3ae-dc3c-408c-8b7d-ed62ae569e03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b42e8a537a912fbdea8782a64d949364", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0508ee5a-73eb-4352-a507-46ebb792247b", + "x-ms-client-request-id": "b42e8a537a912fbdea8782a64d949364", + "x-ms-correlation-request-id": "33ed4784-6e4b-48e0-9ff2-c9f647dc8a70", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "eb61f75f-55d3-41b3-8546-af1d6f186ad2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070619Z:33ed4784-6e4b-48e0-9ff2-c9f647dc8a70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55253f49352357ab8f1e9930c0940021", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57b89aea-e3c8-4e1e-85c2-769bea10f32a", + "x-ms-client-request-id": "55253f49352357ab8f1e9930c0940021", + "x-ms-correlation-request-id": "f9623ced-e682-415d-bed5-95a584476200", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "7c6a6f04-425e-4a4a-9b9a-ee56f6267dfa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070620Z:f9623ced-e682-415d-bed5-95a584476200" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "125d660905bd4ad246deba03f7abaf79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8747295-5708-4701-af66-17cec123b923", + "x-ms-client-request-id": "125d660905bd4ad246deba03f7abaf79", + "x-ms-correlation-request-id": "61e14e64-ebc7-41c8-b11f-610f469a9c66", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "ff0b2a4e-191d-4ca3-884a-c1c9a4a2b58b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070621Z:61e14e64-ebc7-41c8-b11f-610f469a9c66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b617b9ff876c1df5dfd62573e08d6f56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fbbbd697-4eb2-40ed-b3be-402761c3532b", + "x-ms-client-request-id": "b617b9ff876c1df5dfd62573e08d6f56", + "x-ms-correlation-request-id": "b54e10f9-551e-4c52-bf71-665edae4e70b", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "e116f05c-1f28-4fe7-a844-99d7549d5c88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070622Z:b54e10f9-551e-4c52-bf71-665edae4e70b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e69d6087813744a66cdb0f447ba760e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ef71df6-c16e-4ac5-8a35-b5e033caad6b", + "x-ms-client-request-id": "e69d6087813744a66cdb0f447ba760e4", + "x-ms-correlation-request-id": "8d2ceccc-dfcb-41b1-aa14-c1494ae518a3", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "0135ceb2-3aa5-4d25-8ac1-03f05242c29e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070624Z:8d2ceccc-dfcb-41b1-aa14-c1494ae518a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0630206e497c81b5713f33e6e05f6ab8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0fb1dea4-39f2-49aa-962c-18a2d708696a", + "x-ms-client-request-id": "0630206e497c81b5713f33e6e05f6ab8", + "x-ms-correlation-request-id": "e4dfcde5-e858-4a04-ada7-66553ef0f1a9", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "54ce2310-ed8b-44ba-8e6b-f9193705c6ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070625Z:e4dfcde5-e858-4a04-ada7-66553ef0f1a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "967b646fc80d7e4112d2499178b0a237", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48c14071-a58a-49b1-8a8a-776804f0ac50", + "x-ms-client-request-id": "967b646fc80d7e4112d2499178b0a237", + "x-ms-correlation-request-id": "31086c52-c7fa-47ea-8ede-7bf0519e0267", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "dcfca2f3-10a2-499e-b7fe-ca901dc35810", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070626Z:31086c52-c7fa-47ea-8ede-7bf0519e0267" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf044075695c3ed9ab1b75f74ec0640d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1a3f0f45-a352-423c-b659-e078350d648d", + "x-ms-client-request-id": "bf044075695c3ed9ab1b75f74ec0640d", + "x-ms-correlation-request-id": "4d9d34bb-9ff6-4714-9979-18e9a055c194", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "8538d9e0-77bf-4b25-9b57-5ba4a43126db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070628Z:4d9d34bb-9ff6-4714-9979-18e9a055c194" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16d55670c92ba6d6deb2f3a9002308c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e1c88050-e978-4c40-bda7-e09255e15449", + "x-ms-client-request-id": "16d55670c92ba6d6deb2f3a9002308c0", + "x-ms-correlation-request-id": "3c460a45-def5-4ea1-a8a5-448917df030a", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "f6e3ebb3-98b9-44b1-874a-a64def59749c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070629Z:3c460a45-def5-4ea1-a8a5-448917df030a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f70fb9daa5a065c8a3deaf1524a3052", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4edffc37-886a-48e8-be96-26775bf46ab1", + "x-ms-client-request-id": "9f70fb9daa5a065c8a3deaf1524a3052", + "x-ms-correlation-request-id": "e7b62942-afbe-4594-bf3c-98511cc3f602", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "253dd3a0-ec78-4bdb-9534-474d2f11510e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070630Z:e7b62942-afbe-4594-bf3c-98511cc3f602" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22203b6e8bdbac0b695ee1a9752f3d88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5508046c-c042-447a-ad12-533f5da74b52", + "x-ms-client-request-id": "22203b6e8bdbac0b695ee1a9752f3d88", + "x-ms-correlation-request-id": "883e129e-8769-4a00-9128-7d38460a170b", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "bd9fa284-f61d-4304-825f-3529776a74c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070631Z:883e129e-8769-4a00-9128-7d38460a170b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5259b513c44fc6b3f9cf8ceddfe55394", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "44fafb5b-d215-4da0-beda-c69610ede7b9", + "x-ms-client-request-id": "5259b513c44fc6b3f9cf8ceddfe55394", + "x-ms-correlation-request-id": "d3ad7169-2fba-42b5-ad4e-04f38edd0d40", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "4a1dda6e-80fc-4d4a-9f54-5af3351d9ae0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070633Z:d3ad7169-2fba-42b5-ad4e-04f38edd0d40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c43ba182e60212e4efc435fbc8b2915b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4899da3b-b007-4fe6-916a-ed17041b385f", + "x-ms-client-request-id": "c43ba182e60212e4efc435fbc8b2915b", + "x-ms-correlation-request-id": "78d32271-d7dc-41f9-ba8c-50f41aa69655", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "b7423fc3-29a9-4ca2-acb4-4e6397f4f0d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070634Z:78d32271-d7dc-41f9-ba8c-50f41aa69655" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dde6200ddf0aa028859290cfe1ecc84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a31da54f-12c5-4afb-af4d-0967fb8e0916", + "x-ms-client-request-id": "9dde6200ddf0aa028859290cfe1ecc84", + "x-ms-correlation-request-id": "9fd369bb-8960-4d95-8f26-b6ec38b12b95", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "159ba162-9df9-4b06-b33c-2e7b0a2113a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070635Z:9fd369bb-8960-4d95-8f26-b6ec38b12b95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3274d0b79f42d85d146628b8eb7fe46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4cff17d3-1ec2-4a72-bca1-fe26686ce39a", + "x-ms-client-request-id": "d3274d0b79f42d85d146628b8eb7fe46", + "x-ms-correlation-request-id": "2005582d-e206-46fc-846e-6cbc96508f88", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "6a9cdee6-08e7-4e71-857c-b362cd622350", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070636Z:2005582d-e206-46fc-846e-6cbc96508f88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ced303db506a4a39f903ca8bdd713d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4f08e17-2369-46cc-a285-7e5eb016173a", + "x-ms-client-request-id": "7ced303db506a4a39f903ca8bdd713d1", + "x-ms-correlation-request-id": "e4128a2a-5707-42b3-a052-ddac2c3e8e32", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "f599fc03-6a0e-42ed-910b-ea7298c01930", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070638Z:e4128a2a-5707-42b3-a052-ddac2c3e8e32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bf0b1f7bd8b8666dcb1cca97b771cd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fd284a3-3f33-474f-8a3d-e6c9452fbdb4", + "x-ms-client-request-id": "7bf0b1f7bd8b8666dcb1cca97b771cd0", + "x-ms-correlation-request-id": "114968fe-911c-4bb1-afab-f7a8d3b0acae", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "62cda1b8-b79d-4d40-968a-0d33ace31fd0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070639Z:114968fe-911c-4bb1-afab-f7a8d3b0acae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdcee25b5030557da98234633ddc70f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f2e6a2c-a4e7-464c-ad22-ff796bab4d22", + "x-ms-client-request-id": "cdcee25b5030557da98234633ddc70f9", + "x-ms-correlation-request-id": "6e208c19-4bcd-4c26-bec6-b6acb7164f76", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "273b5e3c-ae5c-4ae8-836d-7c7c3f23a9f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070640Z:6e208c19-4bcd-4c26-bec6-b6acb7164f76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc93903282c780baca669f55e9f92927", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a77b761e-41f7-456f-a88f-16a7cfb59d4f", + "x-ms-client-request-id": "dc93903282c780baca669f55e9f92927", + "x-ms-correlation-request-id": "8b366644-51cf-4f47-8254-788df9fa6431", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "d1cc4bfd-3915-4b45-b0ce-140b03a55f17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070642Z:8b366644-51cf-4f47-8254-788df9fa6431" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da4d6b744509a7a1339ad10988034900", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ebb290dd-a6bd-4b64-9a87-dfe9ddd1cbd9", + "x-ms-client-request-id": "da4d6b744509a7a1339ad10988034900", + "x-ms-correlation-request-id": "00e597d7-1dfb-4907-b4c0-332248db2962", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "f584ad59-962b-499a-97b8-4c25186a6eb6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070643Z:00e597d7-1dfb-4907-b4c0-332248db2962" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea77d3413fe3d908274e03c9b0286cb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a7537d1-cb5d-43fe-8f13-e166a8150d18", + "x-ms-client-request-id": "ea77d3413fe3d908274e03c9b0286cb0", + "x-ms-correlation-request-id": "a39d3b72-747a-4907-939b-9cff56671280", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "803de776-708f-4301-bc51-850667e9b345", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070644Z:a39d3b72-747a-4907-939b-9cff56671280" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1ee0c58958fedefefeba92db0b1f7c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5645a602-0257-4c10-841b-742b34fee3eb", + "x-ms-client-request-id": "d1ee0c58958fedefefeba92db0b1f7c6", + "x-ms-correlation-request-id": "f2fb8a60-8ff3-475e-9449-93312bdd8e80", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "cffd3f2c-7995-4f00-9dd0-90f32e5facaf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070645Z:f2fb8a60-8ff3-475e-9449-93312bdd8e80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16149f1d3f8235436274b2bb42d7f70b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "319745e9-4b86-4d8d-80c5-3c01e44e867d", + "x-ms-client-request-id": "16149f1d3f8235436274b2bb42d7f70b", + "x-ms-correlation-request-id": "098a3700-8569-45e3-bd0f-be161861f2db", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "697ef971-394c-4ec5-a644-b98a72bbc5fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070647Z:098a3700-8569-45e3-bd0f-be161861f2db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7cb0212d7714ab70e389fbf895db2876", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e3a13b8-5fb9-4330-8936-8a7ba3e247f0", + "x-ms-client-request-id": "7cb0212d7714ab70e389fbf895db2876", + "x-ms-correlation-request-id": "239a9359-6848-4821-a754-98a3cd9b4116", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "4da4163f-6999-427b-8df2-08e63e913bf8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070648Z:239a9359-6848-4821-a754-98a3cd9b4116" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10ac3c565613192ec8b96f1be234aa17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a2254cc6-5ebc-458a-b47a-ace30db705aa", + "x-ms-client-request-id": "10ac3c565613192ec8b96f1be234aa17", + "x-ms-correlation-request-id": "23e9e6b0-bf4f-4b76-8829-57861111003f", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "3bf77e0e-5425-48c2-9e5f-e8c0e9ab1577", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070649Z:23e9e6b0-bf4f-4b76-8829-57861111003f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fff9ef47b00a5b22f6832f8444b9f87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab41efb0-3069-469f-a408-e0e9d41207e5", + "x-ms-client-request-id": "8fff9ef47b00a5b22f6832f8444b9f87", + "x-ms-correlation-request-id": "d0f68bd3-3241-4b86-acc7-1000f18d3ad1", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "9a489b11-950d-4c9c-9773-3be9ea06be22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070650Z:d0f68bd3-3241-4b86-acc7-1000f18d3ad1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05653c4be72ad7f7f297b35a0855c9af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc2a2303-2e75-44d9-ab9d-1c4fc63ca346", + "x-ms-client-request-id": "05653c4be72ad7f7f297b35a0855c9af", + "x-ms-correlation-request-id": "cae52676-f902-415f-8b9e-bb2728df95a8", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "a8aa9ccd-48e9-4123-b38e-71c42fa3f055", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070652Z:cae52676-f902-415f-8b9e-bb2728df95a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/ca80db94-dca6-4988-8a6a-3e5d163378e4?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f704e3de98dbda758a07e0ab2335d47d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d34f805d-02ee-4112-8452-fabdc27173cb", + "x-ms-client-request-id": "f704e3de98dbda758a07e0ab2335d47d", + "x-ms-correlation-request-id": "f3e54b78-92e3-48d6-95d2-0b6b7b12f08d", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "42fd45b5-2095-436d-957d-81842951b13b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070653Z:f3e54b78-92e3-48d6-95d2-0b6b7b12f08d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "977487140", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionSiteToSiteTestAsync.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionSiteToSiteTestAsync.json new file mode 100644 index 000000000000..e1817894cdc4 --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionSiteToSiteTestAsync.json @@ -0,0 +1,39521 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b77b6003985d2cdf171055c8ca79cde9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:06:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5b2f1591-f80c-4b4e-b16f-dd04249cc9e1", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "5b2f1591-f80c-4b4e-b16f-dd04249cc9e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070658Z:5b2f1591-f80c-4b4e-b16f-dd04249cc9e1" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/csmrg688?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "22", + "Content-Type": "application/json", + "traceparent": "00-f84c44b425eac04c97b0182cbb34c2be-a51584cee1b7ff42-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec2831c73bfb607420fa7fd24347c4dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2" + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "214", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bbb08dd0-1acf-44c7-a843-cc625bfbe03e", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "bbb08dd0-1acf-44c7-a843-cc625bfbe03e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070700Z:bbb08dd0-1acf-44c7-a843-cc625bfbe03e" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688", + "name": "csmrg688", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "243", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a45b8149d44dc94b6e82959226f6b1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.0.0.0/16" + ] + }, + "dhcpOptions": { + "dnsServers": [ + "10.1.1.1", + "10.1.2.4" + ] + }, + "subnets": [ + { + "name": "GatewaySubnet", + "id": null, + "properties": { + "addressPrefix": "10.0.0.0/24" + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/b241edc6-b25e-4ed7-8ea4-6ad49568adcf?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1334", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "3", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef125ebb-4e25-40df-9049-eaec8a876f29", + "x-ms-client-request-id": "4a45b8149d44dc94b6e82959226f6b1f", + "x-ms-correlation-request-id": "65f9e8fb-bf60-4160-b47d-ffcf82552672", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "b241edc6-b25e-4ed7-8ea4-6ad49568adcf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070705Z:65f9e8fb-bf60-4160-b47d-ffcf82552672" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet2603\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002217e86e6d-cc66-4bfa-abf4-c78b1c8453e2\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00220e06a868-d281-4e0d-8be1-d5dd5707e5a2\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002217e86e6d-cc66-4bfa-abf4-c78b1c8453e2\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/b241edc6-b25e-4ed7-8ea4-6ad49568adcf?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14655deaf8a49483941045524a06fd8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "812229d2-b1f1-471a-a807-298ec0a64275", + "x-ms-client-request-id": "14655deaf8a49483941045524a06fd8a", + "x-ms-correlation-request-id": "4f8a3a61-510a-467d-b725-f02c68206ec5", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "87288a16-5939-4a7c-a857-2e56e4fd8101", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070705Z:4f8a3a61-510a-467d-b725-f02c68206ec5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/b241edc6-b25e-4ed7-8ea4-6ad49568adcf?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f2cb31338d30b83933ef307ff3482e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5498489d-549d-4ad8-a510-42b21e16044e", + "x-ms-client-request-id": "7f2cb31338d30b83933ef307ff3482e2", + "x-ms-correlation-request-id": "c7193ddc-d916-4887-8397-d279d0d2fa52", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "5a832218-748f-4c09-9fa3-3548b25e0ea5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070707Z:c7193ddc-d916-4887-8397-d279d0d2fa52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c46e971f560a1e7a455c10d8c3d2bb4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1336", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:07 GMT", + "ETag": "W/\u002297fd8c30-d6fe-432f-9a88-8e9fd29d7567\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4474c3e-e0a8-4349-9ce6-ad878a9916b7", + "x-ms-client-request-id": "c46e971f560a1e7a455c10d8c3d2bb4f", + "x-ms-correlation-request-id": "925b47f7-f59e-417b-95f2-155e04451518", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "783244b1-0a52-4011-bbbb-3b3ba009acfb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070707Z:925b47f7-f59e-417b-95f2-155e04451518" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet2603\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002297fd8c30-d6fe-432f-9a88-8e9fd29d7567\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00220e06a868-d281-4e0d-8be1-d5dd5707e5a2\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002297fd8c30-d6fe-432f-9a88-8e9fd29d7567\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a64c134049a7b2beda598065047b955f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1336", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:07 GMT", + "ETag": "W/\u002297fd8c30-d6fe-432f-9a88-8e9fd29d7567\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2ac73ce-5f93-4a43-ba8b-9caffaee306d", + "x-ms-client-request-id": "a64c134049a7b2beda598065047b955f", + "x-ms-correlation-request-id": "dfbc03e3-8281-43c1-8631-92bf6a6e70ad", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "39f9c9bb-1de2-4344-92c6-42675666dbdf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070707Z:dfbc03e3-8281-43c1-8631-92bf6a6e70ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet2603\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002297fd8c30-d6fe-432f-9a88-8e9fd29d7567\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00220e06a868-d281-4e0d-8be1-d5dd5707e5a2\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002297fd8c30-d6fe-432f-9a88-8e9fd29d7567\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b333628d3897bc80380e397627ab48c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1336", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:07 GMT", + "ETag": "W/\u002297fd8c30-d6fe-432f-9a88-8e9fd29d7567\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13c9b91e-0c42-4159-ba54-4bde1dd0e8a5", + "x-ms-client-request-id": "b333628d3897bc80380e397627ab48c1", + "x-ms-correlation-request-id": "ca18717a-76a5-428a-b4ad-f5e37fc61630", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "76cf71c7-2b5f-4a1c-bf5a-87afff146d75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070707Z:ca18717a-76a5-428a-b4ad-f5e37fc61630" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet2603\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002297fd8c30-d6fe-432f-9a88-8e9fd29d7567\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00220e06a868-d281-4e0d-8be1-d5dd5707e5a2\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.0.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022dhcpOptions\u0022: {\r\n", + " \u0022dnsServers\u0022: [\r\n", + " \u002210.1.1.1\u0022,\r\n", + " \u002210.1.2.4\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002297fd8c30-d6fe-432f-9a88-8e9fd29d7567\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecc6a382dce7d63bd9bceab1d61519c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "537", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:08 GMT", + "ETag": "W/\u002297fd8c30-d6fe-432f-9a88-8e9fd29d7567\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "383cfbaf-764c-4914-b8c5-3bdff1715a5a", + "x-ms-client-request-id": "ecc6a382dce7d63bd9bceab1d61519c9", + "x-ms-correlation-request-id": "e360dd35-ba3f-41fe-a0b1-2e59e50b192f", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "bb2efec5-5661-407a-b1e2-865bc5ad2254", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070708Z:e360dd35-ba3f-41fe-a0b1-2e59e50b192f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002297fd8c30-d6fe-432f-9a88-8e9fd29d7567\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.0.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "170", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f604bb1b80892078f6d980f478a2e10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "test": "value" + }, + "id": null, + "properties": { + "localNetworkAddressSpace": { + "addressPrefixes": [ + "192.168.0.0/16" + ] + }, + "gatewayIpAddress": "192.168.3.4" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/8cbae7d9-125a-4c60-9a0d-6d4dfbc878b8?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "623", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ae4ef38-8f8c-460c-a334-5a010754888c", + "x-ms-client-request-id": "9f604bb1b80892078f6d980f478a2e10", + "x-ms-correlation-request-id": "473e71d5-035a-4ce7-af77-6bf6441cc7bd", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "8cbae7d9-125a-4c60-9a0d-6d4dfbc878b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070711Z:473e71d5-035a-4ce7-af77-6bf6441cc7bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet4257\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022983d4982-b359-4440-a89a-da78e69991ad\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/localNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022test\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022bac9d5ed-94db-48ca-843a-15b9487a0052\u0022,\r\n", + " \u0022localNetworkAddressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u0022192.168.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayIpAddress\u0022: \u0022192.168.3.4\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/8cbae7d9-125a-4c60-9a0d-6d4dfbc878b8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6076af7022e8eb7abf59576ea2c69231", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45e0bfc9-0a11-4f7a-bade-a191136bde4e", + "x-ms-client-request-id": "6076af7022e8eb7abf59576ea2c69231", + "x-ms-correlation-request-id": "3820da92-adb4-4378-8902-613b6570e32c", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "63cb566a-246a-46cd-8385-8280209e2daa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070711Z:3820da92-adb4-4378-8902-613b6570e32c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/8cbae7d9-125a-4c60-9a0d-6d4dfbc878b8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3116a0bc14b8381e9a38422edcb9c3a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec1e8c06-8ec4-4405-bbb1-d87801ba318b", + "x-ms-client-request-id": "3116a0bc14b8381e9a38422edcb9c3a9", + "x-ms-correlation-request-id": "648d8f7f-7479-4ffa-a437-0250adea855d", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "5ba34844-755b-4d85-b009-9a6b72e1e906", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070712Z:648d8f7f-7479-4ffa-a437-0250adea855d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/8cbae7d9-125a-4c60-9a0d-6d4dfbc878b8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "979fa34ace149d286975f54f20428596", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "796e79bb-663d-4891-acb3-d3ee6443cf3f", + "x-ms-client-request-id": "979fa34ace149d286975f54f20428596", + "x-ms-correlation-request-id": "7188c27f-2d51-48e5-8466-7cd397395150", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "36a191ac-4d88-4eef-ab46-dc6536136154", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070714Z:7188c27f-2d51-48e5-8466-7cd397395150" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/8cbae7d9-125a-4c60-9a0d-6d4dfbc878b8?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e91a947f1d05b3c903dc6b0e04b0f05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87818e3e-217e-4706-bca4-f68fb74afccd", + "x-ms-client-request-id": "2e91a947f1d05b3c903dc6b0e04b0f05", + "x-ms-correlation-request-id": "233cd885-0244-4b42-a755-d8a442d95ef9", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "af14f5ba-ddcb-4e0d-b9ce-7b4d64ba2bcc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070715Z:233cd885-0244-4b42-a755-d8a442d95ef9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe23ae95fa26ee1d7778c8431ecf1857", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "624", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:15 GMT", + "ETag": "W/\u00227b0cce41-3089-480c-92f0-d6d5d89e1bc4\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fdcad59-f080-4da2-a347-7c904f365598", + "x-ms-client-request-id": "fe23ae95fa26ee1d7778c8431ecf1857", + "x-ms-correlation-request-id": "9af4e9d2-601f-49ba-988f-162b8895a626", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "b9dcc52e-dd38-4c86-9727-c406ea22928d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070715Z:9af4e9d2-601f-49ba-988f-162b8895a626" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet4257\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00227b0cce41-3089-480c-92f0-d6d5d89e1bc4\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/localNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022test\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022bac9d5ed-94db-48ca-843a-15b9487a0052\u0022,\r\n", + " \u0022localNetworkAddressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u0022192.168.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayIpAddress\u0022: \u0022192.168.3.4\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33e7abb2942858d8674306d60777bd1d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "624", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:15 GMT", + "ETag": "W/\u00227b0cce41-3089-480c-92f0-d6d5d89e1bc4\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d608b9d8-f535-4f68-9736-035d5a66278f", + "x-ms-client-request-id": "33e7abb2942858d8674306d60777bd1d", + "x-ms-correlation-request-id": "578c4851-2604-4120-9615-e83dc0d208bf", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "8d3c957d-9db4-4f88-853c-36b3b00aebca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070715Z:578c4851-2604-4120-9615-e83dc0d208bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet4257\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00227b0cce41-3089-480c-92f0-d6d5d89e1bc4\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/localNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022test\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022bac9d5ed-94db-48ca-843a-15b9487a0052\u0022,\r\n", + " \u0022localNetworkAddressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u0022192.168.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayIpAddress\u0022: \u0022192.168.3.4\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "155", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "861e72b94c70a38bb75729f93cc1256e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "publicIPAllocationMethod": "Dynamic", + "dnsSettings": { + "domainNameLabel": "azsmnet6159" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/0573b1b7-cfd9-46b8-ab4f-2425b6b3e957?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "795", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "1", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68fef80a-3522-49e7-b731-69c7d683073c", + "x-ms-client-request-id": "861e72b94c70a38bb75729f93cc1256e", + "x-ms-correlation-request-id": "418b1f37-0706-44c2-9429-056cc650ead8", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "0573b1b7-cfd9-46b8-ab4f-2425b6b3e957", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070719Z:418b1f37-0706-44c2-9429-056cc650ead8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1247\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00220a70f9af-3b13-4ebc-accd-ea50eb8a1523\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022dd4e43d3-7770-43a3-8b96-2b7768dc752b\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet6159\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet6159.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/0573b1b7-cfd9-46b8-ab4f-2425b6b3e957?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6152fdc2c389a3aa784dd812f6d0644", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84e059ee-12c9-43af-bb0f-156d2b02965b", + "x-ms-client-request-id": "a6152fdc2c389a3aa784dd812f6d0644", + "x-ms-correlation-request-id": "78810967-8341-425d-af87-a50f764a2ef7", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "87af922e-6392-47b8-9997-bdf7d40f99e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070719Z:78810967-8341-425d-af87-a50f764a2ef7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "887a98b08ab9b8119c53ee8d5844bdb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "796", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:20 GMT", + "ETag": "W/\u0022191190f2-4dbe-494d-9f0f-d93f0084d9d1\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "320834a5-46be-445d-8dfe-2b20a7b9a6a0", + "x-ms-client-request-id": "887a98b08ab9b8119c53ee8d5844bdb7", + "x-ms-correlation-request-id": "49b6dc69-9a97-4515-ad73-f5a3fced856d", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "361f3da1-9a68-4318-843b-0a8dac3dc038", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070720Z:49b6dc69-9a97-4515-ad73-f5a3fced856d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1247\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022191190f2-4dbe-494d-9f0f-d93f0084d9d1\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022dd4e43d3-7770-43a3-8b96-2b7768dc752b\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet6159\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet6159.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d1c7e9b7facd136f9c9345923539b2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "796", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:20 GMT", + "ETag": "W/\u0022191190f2-4dbe-494d-9f0f-d93f0084d9d1\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0a3a7a8-f9e5-491a-a507-7b444fd7721c", + "x-ms-client-request-id": "0d1c7e9b7facd136f9c9345923539b2a", + "x-ms-correlation-request-id": "ebc234bb-2c13-43e7-bd79-0535da7f27df", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "2389502a-f104-4897-97d8-899732188047", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070720Z:ebc234bb-2c13-43e7-bd79-0535da7f27df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1247\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022191190f2-4dbe-494d-9f0f-d93f0084d9d1\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022dd4e43d3-7770-43a3-8b96-2b7768dc752b\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet6159\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet6159.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "738", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32854d9652f05c1d09e43dad4162c726", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet2809", + "id": null, + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "enableBgp": false, + "gatewayDefaultSite": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2719", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c91b09d9-02e1-4209-90e7-ddbacf846668", + "x-ms-client-request-id": "32854d9652f05c1d09e43dad4162c726", + "x-ms-correlation-request-id": "46a0d9c3-ed20-42e3-8a0e-ba1f26a49941", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "e919965e-6ee2-4f76-8b06-ad30056d2f46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070723Z:46a0d9c3-ed20-42e3-8a0e-ba1f26a49941" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9777\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002250faf351-4a20-4e67-8130-45d6887c6835\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002274cc11e4-358e-4eb4-8f3f-eeeee8da5004\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet2809\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002250faf351-4a20-4e67-8130-45d6887c6835\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022SSTP\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 0,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [],\r\n", + " \u0022customBgpIpAddresses\u0022: []\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayDefaultSite\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fada9b16831c98df04f7551934c88d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8557d86a-83d7-4ae9-8f28-b446d5d97e41", + "x-ms-client-request-id": "6fada9b16831c98df04f7551934c88d1", + "x-ms-correlation-request-id": "81c63f8d-a831-4333-b902-58d6a1bc7f9e", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "2d6753df-15ce-4b93-ae4b-c4916e10118d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070723Z:81c63f8d-a831-4333-b902-58d6a1bc7f9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e96dfc91e2d96416ebdca400fd65c7c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8bc408dc-6f6f-4545-85a5-e78e51eabd22", + "x-ms-client-request-id": "e96dfc91e2d96416ebdca400fd65c7c0", + "x-ms-correlation-request-id": "2b6c814f-d695-447c-a662-c59cb6b6c940", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "270096cc-e28a-4add-8da5-880de866ac80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070725Z:2b6c814f-d695-447c-a662-c59cb6b6c940" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97fc782b58b47df523860848bb101542", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16e79964-d9d3-4ed4-b357-e37e0790df1d", + "x-ms-client-request-id": "97fc782b58b47df523860848bb101542", + "x-ms-correlation-request-id": "15175201-59df-4d95-9bc9-c256396e919f", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "eee51c0e-a0e4-4c22-af69-558fa1181324", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070726Z:15175201-59df-4d95-9bc9-c256396e919f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98268368cedbceeb92498455c48dcc8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb8feda1-d763-49c8-914b-345ec990fcbd", + "x-ms-client-request-id": "98268368cedbceeb92498455c48dcc8b", + "x-ms-correlation-request-id": "d58fb42d-8a65-4f4e-94bd-93de63a5bdf4", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "fcd7a7e2-55b4-43ba-93bc-ac892305c43a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070727Z:d58fb42d-8a65-4f4e-94bd-93de63a5bdf4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a25b587f050391c07f0c652d9cea9da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5b39861-8ee6-432c-903a-3ce99235d2cb", + "x-ms-client-request-id": "1a25b587f050391c07f0c652d9cea9da", + "x-ms-correlation-request-id": "de0f122d-aa0b-4545-bfab-f1db9e9f7795", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "3bf9bf3c-6ca8-4fca-a4bf-1a1373933a17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070730Z:de0f122d-aa0b-4545-bfab-f1db9e9f7795" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a9861c62f3e5de48d2d056bd39fb896", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5e31bc5-161f-49d6-92e7-9818d8ccfbd7", + "x-ms-client-request-id": "7a9861c62f3e5de48d2d056bd39fb896", + "x-ms-correlation-request-id": "7b088dc6-86e3-4fa4-a6d8-f428031dc72f", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "933f8d53-0e1f-4f80-af99-a4d7d570700c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070731Z:7b088dc6-86e3-4fa4-a6d8-f428031dc72f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05c07dbafaeb77f266ed90ea0898f4c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94207195-aeae-4cf5-b8e2-528f41c2b099", + "x-ms-client-request-id": "05c07dbafaeb77f266ed90ea0898f4c4", + "x-ms-correlation-request-id": "ced715a7-b079-410b-bd3c-8f5fff329877", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "5432ffad-c1ab-4ad5-b856-27d1dbf1bcc7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070732Z:ced715a7-b079-410b-bd3c-8f5fff329877" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "628faaa051f4584cd1c88d22eab16668", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a936ce90-31a9-448a-ba5b-490823909771", + "x-ms-client-request-id": "628faaa051f4584cd1c88d22eab16668", + "x-ms-correlation-request-id": "066f65b1-9fe6-4cb6-8759-83dbbf803b41", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "e02acaac-4e10-4f0c-ad42-a50c59a73e39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070734Z:066f65b1-9fe6-4cb6-8759-83dbbf803b41" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b972f38a30dcbef6f2013519efa54f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c194fc11-84f1-4b37-9d43-26c3097ca846", + "x-ms-client-request-id": "5b972f38a30dcbef6f2013519efa54f5", + "x-ms-correlation-request-id": "cc02ab71-bb75-4d3e-9573-5f23a3968b64", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "e3456357-d24d-4ad8-b356-488a7e04d7ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070736Z:cc02ab71-bb75-4d3e-9573-5f23a3968b64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29cb4038551068a1306734226dcf8cb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5db9f806-82d8-4bae-96bb-bdf170a5306e", + "x-ms-client-request-id": "29cb4038551068a1306734226dcf8cb5", + "x-ms-correlation-request-id": "ba576800-5d05-49f0-af18-19b78c8fb940", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "7c1235a0-cdf5-4de9-9445-dffd70dbab9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070737Z:ba576800-5d05-49f0-af18-19b78c8fb940" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9b228869800fcb6bbc3f3d43efbbad7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f19f4941-e694-4225-93a3-a64464e1d3a5", + "x-ms-client-request-id": "d9b228869800fcb6bbc3f3d43efbbad7", + "x-ms-correlation-request-id": "d4c34076-8627-4c61-8b60-cbea9bcae5e5", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "ad28b7a6-a627-45ea-aaf9-ba0c986d72d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070739Z:d4c34076-8627-4c61-8b60-cbea9bcae5e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9e998743de5e2578d2f2ba56ecc5e9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20b52ca6-8743-4d5e-8748-044ad616651b", + "x-ms-client-request-id": "a9e998743de5e2578d2f2ba56ecc5e9f", + "x-ms-correlation-request-id": "9062cafc-a286-433a-be62-28ed8a2b6ba3", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "78e22a99-d70b-4f44-b2de-27cbe167d218", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070741Z:9062cafc-a286-433a-be62-28ed8a2b6ba3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75ca5e937a47a0f489ce6e4d62cd2a35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cfafd6f-04bf-4315-8389-40fcf64eab02", + "x-ms-client-request-id": "75ca5e937a47a0f489ce6e4d62cd2a35", + "x-ms-correlation-request-id": "1891d44e-b414-4834-b48c-6172dd0d7928", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "4021df05-9536-4a55-ada0-2f18234bf188", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070742Z:1891d44e-b414-4834-b48c-6172dd0d7928" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5ad5dade3e649d0d1cf4bd16d118eee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4230d42f-56cf-45c6-9c36-4d4c81333ea9", + "x-ms-client-request-id": "d5ad5dade3e649d0d1cf4bd16d118eee", + "x-ms-correlation-request-id": "f6454053-4679-4bfb-a64f-5a9cb5d56e23", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "d09e72cb-a62b-49d9-82f5-4e41899b1228", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070743Z:f6454053-4679-4bfb-a64f-5a9cb5d56e23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e04053654531f98fa3491f16ce0a80c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ade4b0cb-f6ac-4476-9881-8563f9b8a234", + "x-ms-client-request-id": "e04053654531f98fa3491f16ce0a80c0", + "x-ms-correlation-request-id": "6277fc1e-8c80-47bd-b59f-2711d50e2478", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "ffe8a398-e0bb-4ff5-a4c6-9ae4f8161ac4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070744Z:6277fc1e-8c80-47bd-b59f-2711d50e2478" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10f8f504881fb0b98e80a4782f233278", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bdd938d9-7be5-45cd-a0f0-5cc0d0803cfc", + "x-ms-client-request-id": "10f8f504881fb0b98e80a4782f233278", + "x-ms-correlation-request-id": "26289343-855e-4837-9f79-014a0a56bc47", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "bcd969d2-9dce-4869-a3d9-1d80d493c8df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070746Z:26289343-855e-4837-9f79-014a0a56bc47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ee77f404a8d6803ceb4329cc3b97bc6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b794c152-4071-4959-8022-f2e899047a4a", + "x-ms-client-request-id": "0ee77f404a8d6803ceb4329cc3b97bc6", + "x-ms-correlation-request-id": "1fd25334-3429-4d1b-953f-f6c305b8fd4e", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "bf01549e-0616-40b4-bf9e-c790fdd154e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070747Z:1fd25334-3429-4d1b-953f-f6c305b8fd4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77cc8b4f7d19dccf9a8f51b1a017ca80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "125cfee0-7a67-44d4-a045-df5a57b8b7c3", + "x-ms-client-request-id": "77cc8b4f7d19dccf9a8f51b1a017ca80", + "x-ms-correlation-request-id": "b7bfc3e2-824d-46ba-ab00-873bdde67b80", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "dde4c42e-46b7-4935-82dc-f48b3214b025", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070748Z:b7bfc3e2-824d-46ba-ab00-873bdde67b80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4fd6a7167222ba33f290426a561cedd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c797159-9149-4db8-885c-8166120046da", + "x-ms-client-request-id": "4fd6a7167222ba33f290426a561cedd4", + "x-ms-correlation-request-id": "af87b20c-e016-4750-aeb9-6c4faa8b300b", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "80a59720-a451-415c-adb0-9bb356371a63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070749Z:af87b20c-e016-4750-aeb9-6c4faa8b300b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a429dd05ba56c25fb00b73fdf851c7b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2af47bb8-4629-46dd-a8d8-dbfb92347382", + "x-ms-client-request-id": "a429dd05ba56c25fb00b73fdf851c7b7", + "x-ms-correlation-request-id": "f9a42fc5-a354-48bd-87cf-4795760edb62", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "f4c46c23-b4f0-4fe1-87fc-24ccd370b955", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070751Z:f9a42fc5-a354-48bd-87cf-4795760edb62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b86b1e92be2dca4571285893b64857e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2dd068f-d638-4b94-9932-6b802b403957", + "x-ms-client-request-id": "1b86b1e92be2dca4571285893b64857e", + "x-ms-correlation-request-id": "9db2ef80-fa28-462f-8fc0-27e25a94e168", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "31b82592-ea50-46e5-90f1-462b137ab7cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070752Z:9db2ef80-fa28-462f-8fc0-27e25a94e168" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3ac7da226ee5c2947139e17fe35c1a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b7f27c92-bf36-429a-ba84-d6abb8f8c2b8", + "x-ms-client-request-id": "c3ac7da226ee5c2947139e17fe35c1a0", + "x-ms-correlation-request-id": "5e040cc4-7751-4977-b3b8-7e17c1285c83", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "0222ecfd-7b60-4273-b7e3-d64d9ae5a4ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070753Z:5e040cc4-7751-4977-b3b8-7e17c1285c83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4818bc8d196d9f1394c4c4335d6874c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39f60d9b-129b-4605-9884-2c2807705d71", + "x-ms-client-request-id": "a4818bc8d196d9f1394c4c4335d6874c", + "x-ms-correlation-request-id": "579b07ea-5df8-450e-a40c-962829945c6f", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "5a63d606-2fc3-4bae-92ef-cbce1245a175", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070755Z:579b07ea-5df8-450e-a40c-962829945c6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b5bf48503a5c3c98829d3cf8d8cde22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "975e3c36-261d-4313-9f21-89f69d9eab4b", + "x-ms-client-request-id": "7b5bf48503a5c3c98829d3cf8d8cde22", + "x-ms-correlation-request-id": "879b2fd7-9974-4b58-89ce-dd933d963e33", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "6286256d-6c13-4ad5-b90b-851a8c1b28c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070756Z:879b2fd7-9974-4b58-89ce-dd933d963e33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afc0e451e1e3d0e88bd38aa2d9e62771", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98286dcc-d970-46c7-b564-cbbe7edb796e", + "x-ms-client-request-id": "afc0e451e1e3d0e88bd38aa2d9e62771", + "x-ms-correlation-request-id": "29cb6a9e-0ddf-499d-ad30-e5c78d2d9927", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "82922a46-b749-4c2c-acb8-d1e06006c2cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070757Z:29cb6a9e-0ddf-499d-ad30-e5c78d2d9927" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0992518c45dac5fac2bd1c6cfe224bac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:07:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b0675f1-1bbc-4f80-9cd6-056f7b99dfd3", + "x-ms-client-request-id": "0992518c45dac5fac2bd1c6cfe224bac", + "x-ms-correlation-request-id": "dba95cb6-b88d-4ab6-af4e-f11ad9f15af1", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "590f630e-4ca2-4673-8782-48cede453af6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070758Z:dba95cb6-b88d-4ab6-af4e-f11ad9f15af1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50f22a6dd715a4690c8bf0d27927e9a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1dd485ad-b062-450e-8832-0ca7ccf6041a", + "x-ms-client-request-id": "50f22a6dd715a4690c8bf0d27927e9a1", + "x-ms-correlation-request-id": "addea23e-e5c1-4ee2-9fff-d7d7cf45d6f2", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "eb915ed6-6e6f-4d97-9d74-4a14084aa7ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070800Z:addea23e-e5c1-4ee2-9fff-d7d7cf45d6f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b426202d4fa0b47e9fbed25c47cd168", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "138e29ee-7470-4317-9ea6-e9bd63a68d3b", + "x-ms-client-request-id": "3b426202d4fa0b47e9fbed25c47cd168", + "x-ms-correlation-request-id": "9889f31e-c620-4820-ace6-19693bf355df", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "ee1c386d-56d9-4f78-bce7-2159241ec03f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070801Z:9889f31e-c620-4820-ace6-19693bf355df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af34dd87d6f4b45be8edfd4e55284b9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a69016d0-856c-4610-b16a-72ed8c369db8", + "x-ms-client-request-id": "af34dd87d6f4b45be8edfd4e55284b9a", + "x-ms-correlation-request-id": "67ea5a87-0ee6-4819-93dd-c1cb9ba1955d", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "69244a9f-9e42-4e2b-9e93-07802abadfba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070802Z:67ea5a87-0ee6-4819-93dd-c1cb9ba1955d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c697bd30fdf99b2e2e6661ae943e090", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "777dfbc2-a61c-46c5-aae6-46001c77aaa2", + "x-ms-client-request-id": "9c697bd30fdf99b2e2e6661ae943e090", + "x-ms-correlation-request-id": "a0f7e66e-1640-4691-b13e-acb76b8a9d4e", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "6d2c10da-a4d8-45b4-b241-27c20b4611c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070804Z:a0f7e66e-1640-4691-b13e-acb76b8a9d4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c4a88b93af22bad068e520cd6f8b5c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9170c2c2-3d5d-456a-880d-28eb445a4714", + "x-ms-client-request-id": "9c4a88b93af22bad068e520cd6f8b5c1", + "x-ms-correlation-request-id": "f143f7e2-562e-46de-a97a-04d6d0c3bbdc", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "3452af46-ea39-4a14-960d-7eeda20086fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070805Z:f143f7e2-562e-46de-a97a-04d6d0c3bbdc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "495252af351277882b9acd0d7041caa5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18016054-26ea-4d81-aba3-22451bd8bd67", + "x-ms-client-request-id": "495252af351277882b9acd0d7041caa5", + "x-ms-correlation-request-id": "0ec3a1f9-1096-4d26-8665-ed410ad5d5e0", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "84903f9a-5687-4f66-a1f1-9512f7b3b7c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070806Z:0ec3a1f9-1096-4d26-8665-ed410ad5d5e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd956d0dafdd99a7cd3d9551bda5c2e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93d1d702-4b5b-4875-aa74-8f1e756be505", + "x-ms-client-request-id": "cd956d0dafdd99a7cd3d9551bda5c2e9", + "x-ms-correlation-request-id": "38a51ba8-57bb-4549-8e14-4f98198912cc", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "27f683c1-3c29-4704-8c78-cd2ca8acc780", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070807Z:38a51ba8-57bb-4549-8e14-4f98198912cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "966aa53096f1837dffd370586da0bbc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00cc236f-80f6-4a44-ade0-5a4f669f3e28", + "x-ms-client-request-id": "966aa53096f1837dffd370586da0bbc5", + "x-ms-correlation-request-id": "fa58614d-18a7-4649-815b-7a0d1f2432bc", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "a0163185-3f54-4e49-bbcf-8db129ba5413", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070809Z:fa58614d-18a7-4649-815b-7a0d1f2432bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69ffadc3e86300e3abb87bd4a036ba85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c726011-bee5-421e-a8e3-d2647d10d851", + "x-ms-client-request-id": "69ffadc3e86300e3abb87bd4a036ba85", + "x-ms-correlation-request-id": "142fa944-7f79-489d-b6d7-7c3fbafeefbb", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "1ab92150-eeae-49ba-9eb4-253e2b604def", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070810Z:142fa944-7f79-489d-b6d7-7c3fbafeefbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbdce3d833d676b4ef11cd0a3e4f2c2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3462c15-7955-4724-9914-b86af4a1a080", + "x-ms-client-request-id": "cbdce3d833d676b4ef11cd0a3e4f2c2d", + "x-ms-correlation-request-id": "04a52149-32e5-4ac7-9fb5-8abc9f2b57db", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "030a621f-81fa-49aa-b09b-6cee9ab9f4e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070811Z:04a52149-32e5-4ac7-9fb5-8abc9f2b57db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f8dd08259a64886c16aeb381ba9e3c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e973c67-8ffc-4f1c-a389-50cd58d83e6b", + "x-ms-client-request-id": "0f8dd08259a64886c16aeb381ba9e3c9", + "x-ms-correlation-request-id": "a5857321-4eb4-4dda-be6e-28d2053d5107", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "7802f686-7ed9-4d87-b6e1-112331467f29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070812Z:a5857321-4eb4-4dda-be6e-28d2053d5107" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8980eb18f0c38feef88879511bd8c15b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "afc6e22a-68da-45f0-af9b-0f9316880c35", + "x-ms-client-request-id": "8980eb18f0c38feef88879511bd8c15b", + "x-ms-correlation-request-id": "abf7e8cb-d41e-4e79-b5eb-c431b33ba79c", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "2b1c95d3-763d-41e5-848c-df05c24e101c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070814Z:abf7e8cb-d41e-4e79-b5eb-c431b33ba79c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf524d8caaa87edf5d94096b487c5b46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "24360423-c0c2-4139-8aa6-7ab876796cdb", + "x-ms-client-request-id": "cf524d8caaa87edf5d94096b487c5b46", + "x-ms-correlation-request-id": "1a487137-b0da-4e7a-aa67-d54cf1c9aa0c", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "ccba2c75-15ca-4d7c-b685-3bad2d478546", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070815Z:1a487137-b0da-4e7a-aa67-d54cf1c9aa0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53f2042ea2cf9169e1fe161edf352ce8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf36b560-88c5-4b75-bdb4-bda20c2dddd5", + "x-ms-client-request-id": "53f2042ea2cf9169e1fe161edf352ce8", + "x-ms-correlation-request-id": "b04549a8-b477-45ae-befb-05304b61338c", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "9f5f6ba9-c713-4ea4-a299-b2d74d132671", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070816Z:b04549a8-b477-45ae-befb-05304b61338c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdab90a914576d200c012c2fe683477c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21680067-1a48-4f69-81e2-a1bc89383a18", + "x-ms-client-request-id": "cdab90a914576d200c012c2fe683477c", + "x-ms-correlation-request-id": "b4caf0ae-e8ab-4374-88fa-568644f13136", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "6406cfce-9dab-4ab7-8bfe-45507457e26c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070818Z:b4caf0ae-e8ab-4374-88fa-568644f13136" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1723332c6ee6ea8be3c0edaa94c09f27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a806b91-836b-4841-9fd5-a33f08fc2274", + "x-ms-client-request-id": "1723332c6ee6ea8be3c0edaa94c09f27", + "x-ms-correlation-request-id": "23e32d66-4ee9-4418-a55d-64d31b411ec2", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "08782075-a9bf-4b4b-8686-ea7841734627", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070819Z:23e32d66-4ee9-4418-a55d-64d31b411ec2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7c220678dd019efe38446ce763aab5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79619ac5-68a6-45dc-9055-41f6e4f63ee3", + "x-ms-client-request-id": "b7c220678dd019efe38446ce763aab5e", + "x-ms-correlation-request-id": "2d159c56-0d16-4f95-a72d-36920105538c", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "a523d06c-2003-49e6-9038-12ea346ae6b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070820Z:2d159c56-0d16-4f95-a72d-36920105538c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "abf19ab615113a0204c1e9962675d94b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8fdeb65-e015-4072-a2a8-72810979b788", + "x-ms-client-request-id": "abf19ab615113a0204c1e9962675d94b", + "x-ms-correlation-request-id": "67318a6c-1db5-4fd7-be18-3681686b9e07", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "6d609095-ca06-4106-97a1-ad476a630748", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070821Z:67318a6c-1db5-4fd7-be18-3681686b9e07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5c8046190c09fab4409336127bd73a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "057ca619-9a4c-45a7-bafd-af9b9811be9a", + "x-ms-client-request-id": "c5c8046190c09fab4409336127bd73a9", + "x-ms-correlation-request-id": "b5158957-e5d0-472c-b607-846ddbe6df30", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "f087451c-5f1e-4fcc-a74d-4c3617c5f4ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070823Z:b5158957-e5d0-472c-b607-846ddbe6df30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "faf48e14f3cf51161e87b20fa358f26e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a129d5c-486b-4fd0-b04d-1a693dad753a", + "x-ms-client-request-id": "faf48e14f3cf51161e87b20fa358f26e", + "x-ms-correlation-request-id": "4002feae-c018-4b6a-a729-54574feb5870", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "7247c06e-3ff7-4ba1-a4bb-7393e78e3f3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070824Z:4002feae-c018-4b6a-a729-54574feb5870" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "716cfbabe572269dee526708e2a01347", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e064cb21-54ed-4543-ac2c-4e4616220025", + "x-ms-client-request-id": "716cfbabe572269dee526708e2a01347", + "x-ms-correlation-request-id": "811487c0-ecc5-43d3-a6e2-19460637723f", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "8da57c42-4242-47a4-bd05-391d514755d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070825Z:811487c0-ecc5-43d3-a6e2-19460637723f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9882404dde816e7cee76a739dd9cfbec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "690961f6-14a8-43ad-8fdc-24fdfc8351cf", + "x-ms-client-request-id": "9882404dde816e7cee76a739dd9cfbec", + "x-ms-correlation-request-id": "cfdb36f2-9bfe-43aa-998f-a8624f6a068e", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "f968dd13-2106-415c-ba9f-200959ba4ae0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070827Z:cfdb36f2-9bfe-43aa-998f-a8624f6a068e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bb5c51602502f37f0cd0b7c8c0d6f7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "151c179e-db1d-45fc-86fc-fb791ca57f7f", + "x-ms-client-request-id": "2bb5c51602502f37f0cd0b7c8c0d6f7d", + "x-ms-correlation-request-id": "fcd57236-97db-4d96-ab67-5663a8b48f51", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "21db53b3-854f-497e-9265-1966ac664074", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070828Z:fcd57236-97db-4d96-ab67-5663a8b48f51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63c26b745ad6ccec7ffe82fb3e644951", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "564439cd-2807-4e62-b805-d8a27cfaa1bf", + "x-ms-client-request-id": "63c26b745ad6ccec7ffe82fb3e644951", + "x-ms-correlation-request-id": "b3661243-2e0c-4372-bfcb-bd8c977cb12e", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "bf413cbe-9b06-4064-840a-34506aa7bd8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070829Z:b3661243-2e0c-4372-bfcb-bd8c977cb12e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1df27b57e7eb4af60853a7b3d2ffe1e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c44d76e7-e18c-4ccf-9e7a-9bc1d9884a3f", + "x-ms-client-request-id": "1df27b57e7eb4af60853a7b3d2ffe1e0", + "x-ms-correlation-request-id": "2f901a8f-8a49-4874-b09e-7eea78120fd0", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "a39b7aac-6822-4628-b935-0adcd74ea9a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070830Z:2f901a8f-8a49-4874-b09e-7eea78120fd0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71c5290697dabb16d8e8ac527f3cf08c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e85e0583-4d0d-4bcd-81f2-fe34d8420871", + "x-ms-client-request-id": "71c5290697dabb16d8e8ac527f3cf08c", + "x-ms-correlation-request-id": "acc28b8e-0364-4197-b04f-4c3ccaadd2e0", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "588f30f6-d300-4f88-b1e3-ea0144743d03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070832Z:acc28b8e-0364-4197-b04f-4c3ccaadd2e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1125b984521b8c9274775b82b339f97f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94461576-265e-474b-8207-32654785781d", + "x-ms-client-request-id": "1125b984521b8c9274775b82b339f97f", + "x-ms-correlation-request-id": "8ad9fc5f-32b1-46de-942c-e7ea0a5cbab3", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "415d7dcf-47e6-47d5-86d6-d0614f222333", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070833Z:8ad9fc5f-32b1-46de-942c-e7ea0a5cbab3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15f4a11cd79fbf77643644023aa3cbcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4119376d-d251-4e98-bc4f-83ad2fc96b91", + "x-ms-client-request-id": "15f4a11cd79fbf77643644023aa3cbcc", + "x-ms-correlation-request-id": "b382116f-0d4a-4fc1-bf01-0f5bd6c7241a", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "e530ed07-c612-47e9-a6f3-4141323b24e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070834Z:b382116f-0d4a-4fc1-bf01-0f5bd6c7241a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "182e1a62d0d9b4c59738fd633c93089f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c88eafb1-1eed-47f1-8bbf-6efa3daf4ab1", + "x-ms-client-request-id": "182e1a62d0d9b4c59738fd633c93089f", + "x-ms-correlation-request-id": "5e76a18b-2461-404a-ac8a-4822deccf708", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "de6bb035-4734-4a8f-916f-9880c244409e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070836Z:5e76a18b-2461-404a-ac8a-4822deccf708" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd362deedb47aded4266ace40d8f52d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae85f97e-e457-4be5-89c2-4533060c6464", + "x-ms-client-request-id": "dd362deedb47aded4266ace40d8f52d0", + "x-ms-correlation-request-id": "acfaf0fe-3d80-4995-b320-4f9c215dc345", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "dc8ce287-455a-4536-967c-657eaa5541f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070837Z:acfaf0fe-3d80-4995-b320-4f9c215dc345" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98208eace10a4ba6dc407d66d91483d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e1c98e27-dbdf-40d8-8155-f94235136241", + "x-ms-client-request-id": "98208eace10a4ba6dc407d66d91483d1", + "x-ms-correlation-request-id": "62725fff-957a-4d59-8ea3-d7b118810fc2", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "34010e0c-5bc4-4c7c-980e-2c7477cfd1dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070838Z:62725fff-957a-4d59-8ea3-d7b118810fc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d13a52eed6d87852d81d67324e0a607", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d29da571-fde7-4e4d-b371-a1439454a13b", + "x-ms-client-request-id": "0d13a52eed6d87852d81d67324e0a607", + "x-ms-correlation-request-id": "c1c83ff2-fe61-4e30-96ee-53b215d5121a", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "9d3bd5f5-167e-406c-964c-f0e58b5c4916", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070839Z:c1c83ff2-fe61-4e30-96ee-53b215d5121a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "adb62ce66f730d9486ea01075d86d32d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ffa9b51-dafc-47f6-91c5-835069829047", + "x-ms-client-request-id": "adb62ce66f730d9486ea01075d86d32d", + "x-ms-correlation-request-id": "8e6bac96-2f0f-47b4-a8e4-cd3c4349168c", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "282512a6-113f-4af3-9972-a41a00ddded3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070841Z:8e6bac96-2f0f-47b4-a8e4-cd3c4349168c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67b6dae2447cbe6309986b880a3227fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ba263b6-0a4d-46bf-868c-aaf5238d0a78", + "x-ms-client-request-id": "67b6dae2447cbe6309986b880a3227fb", + "x-ms-correlation-request-id": "93153731-792c-4ac0-891f-7b7c97cf5df6", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "99ac712c-3aa6-4967-8028-683201e134c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070842Z:93153731-792c-4ac0-891f-7b7c97cf5df6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad807699d55dbf5e11058683eb7e29a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5c7e8d8-02f5-48f3-bd7f-a1f8df88dd6b", + "x-ms-client-request-id": "ad807699d55dbf5e11058683eb7e29a7", + "x-ms-correlation-request-id": "11f42f0c-b699-495c-a644-d5d1bb4a35da", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "7a1832ac-592d-401c-8b2f-555d1d724d21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070843Z:11f42f0c-b699-495c-a644-d5d1bb4a35da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4990a9ad3f2aa18bc8f7a4da040c0353", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f704f40-5a45-47a0-bb35-d18e0dac1423", + "x-ms-client-request-id": "4990a9ad3f2aa18bc8f7a4da040c0353", + "x-ms-correlation-request-id": "6d16bd3a-9c99-4de3-9366-2dc63926c550", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "4382fb99-e0fe-40af-9022-7fc4a8289148", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070845Z:6d16bd3a-9c99-4de3-9366-2dc63926c550" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e66d05c326050dcf7cf65676bde0d38a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8b1b7cd-c6aa-475e-b59c-729a3a1078e0", + "x-ms-client-request-id": "e66d05c326050dcf7cf65676bde0d38a", + "x-ms-correlation-request-id": "4446468e-73e6-42e0-8f58-5f1e8c45cd44", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "82c835db-3016-4bbe-ad75-e2f7058eb747", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070846Z:4446468e-73e6-42e0-8f58-5f1e8c45cd44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61dbc36fdda25ad1ebdee4653084bb04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a027af5-44d2-4a9f-b371-c9f54b4ecfc3", + "x-ms-client-request-id": "61dbc36fdda25ad1ebdee4653084bb04", + "x-ms-correlation-request-id": "65142518-57ab-4b4c-878c-20cc4425ea54", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "71f0012b-004f-4a51-8436-6fabdbeadb3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070847Z:65142518-57ab-4b4c-878c-20cc4425ea54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6bf3202431087a1d983cd33e814e4e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8e5a79a-18ef-49ea-a11f-0c8e39a999d7", + "x-ms-client-request-id": "e6bf3202431087a1d983cd33e814e4e8", + "x-ms-correlation-request-id": "7c4e116b-c43b-458e-8efb-fbdbdcd9d3aa", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "e53beb1e-3685-4926-9722-e40cc31c9608", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070848Z:7c4e116b-c43b-458e-8efb-fbdbdcd9d3aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "406a1a24a230e5b13413fb27416addf8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13c92b29-fb6c-49d0-8f27-265c898a7ad4", + "x-ms-client-request-id": "406a1a24a230e5b13413fb27416addf8", + "x-ms-correlation-request-id": "b4d8e141-f248-4b7c-a1d2-22a21650344b", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "4eafdccb-d102-4c11-8ba5-e8998a64ce47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070850Z:b4d8e141-f248-4b7c-a1d2-22a21650344b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b73513bed202c7a2254881f109d71d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e29a30ba-8c4a-44cc-8412-a5cbec5a17e1", + "x-ms-client-request-id": "8b73513bed202c7a2254881f109d71d6", + "x-ms-correlation-request-id": "129f932b-46f1-4b98-a585-db3bbf2c637b", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "f9b89e0e-08bb-4cff-a20f-4fb981b31374", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070851Z:129f932b-46f1-4b98-a585-db3bbf2c637b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1641fbfa7b1960d481d9b1fd4779466f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe84a975-3584-4050-adc8-da3c654e35c5", + "x-ms-client-request-id": "1641fbfa7b1960d481d9b1fd4779466f", + "x-ms-correlation-request-id": "6ae371ef-dbd4-4bae-a431-95b6d941d227", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "d2e14971-f01b-41a3-b340-d13cedcc8139", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070852Z:6ae371ef-dbd4-4bae-a431-95b6d941d227" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97f7d4a559a037c89f3e1ddc1a92d596", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06deeb53-02e1-4cca-ba1f-014228fb1025", + "x-ms-client-request-id": "97f7d4a559a037c89f3e1ddc1a92d596", + "x-ms-correlation-request-id": "90b3fd29-c39d-4444-913f-7bc6dac1ad0d", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "9f101ba5-e1f6-46d2-b72e-8b10ece3127f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070854Z:90b3fd29-c39d-4444-913f-7bc6dac1ad0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "452d24a2c628c0de7d1309463b7de4a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6ceffb2-75e1-4769-ad23-0487fe2ea32a", + "x-ms-client-request-id": "452d24a2c628c0de7d1309463b7de4a8", + "x-ms-correlation-request-id": "90972c0b-e2d0-49d6-9f3a-ec9578a3ca74", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "d3fde41e-fa30-4bbd-99b5-8fa9d032f768", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070855Z:90972c0b-e2d0-49d6-9f3a-ec9578a3ca74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b79180dd9a6a135330976da5df746ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc423af4-d339-4091-a79d-36058cf94a1b", + "x-ms-client-request-id": "3b79180dd9a6a135330976da5df746ef", + "x-ms-correlation-request-id": "1dbe39eb-9b32-471a-b554-7d363ab8edec", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "89e5ccc1-3872-4bd5-a8aa-595132f57fbe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070856Z:1dbe39eb-9b32-471a-b554-7d363ab8edec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "235a1b04004cdf46f6371a8d4f81fc22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf2b144e-f25e-4c3b-b305-21518d713ca4", + "x-ms-client-request-id": "235a1b04004cdf46f6371a8d4f81fc22", + "x-ms-correlation-request-id": "b4214bad-6d3d-4f9e-b9ea-4d5deb27ddaa", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "ddde8d75-0695-44b3-b8fb-ea52ff88dbb0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070858Z:b4214bad-6d3d-4f9e-b9ea-4d5deb27ddaa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01ce755a9a18c8f0ee8b121f50046385", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:08:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81367a5f-a9f7-4f42-8b47-92b3e28c9945", + "x-ms-client-request-id": "01ce755a9a18c8f0ee8b121f50046385", + "x-ms-correlation-request-id": "ebe1a2d4-6013-4b1b-acf0-0fe910624876", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "306b51e4-f2f1-444f-aea1-60313cfb7b0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070859Z:ebe1a2d4-6013-4b1b-acf0-0fe910624876" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f421acdc1220d5bd29a456ebfa852b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22cacd70-ecea-4064-8206-0157b57acbcb", + "x-ms-client-request-id": "1f421acdc1220d5bd29a456ebfa852b1", + "x-ms-correlation-request-id": "19b8582d-05c0-41aa-bc89-067133607a32", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "eece64a7-2896-4f62-9a4f-ca6dd3a3cc92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070900Z:19b8582d-05c0-41aa-bc89-067133607a32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e780530d45296ad62b9234c0ee268ff2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4ddbac4-28d7-4332-b1e7-b12a1e2fd7a8", + "x-ms-client-request-id": "e780530d45296ad62b9234c0ee268ff2", + "x-ms-correlation-request-id": "00521558-3ec6-4648-ae53-1218e9cf63a3", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "22f18395-7051-449e-881a-239b8f1b2952", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070901Z:00521558-3ec6-4648-ae53-1218e9cf63a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34c094d4dc3f990019c12e7e54810845", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "007397dd-b7b7-4b8d-bb11-e91672aaf794", + "x-ms-client-request-id": "34c094d4dc3f990019c12e7e54810845", + "x-ms-correlation-request-id": "8d3a8601-898e-4049-9b99-2805b0bf1f18", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "eb0a1187-249d-452c-b3c7-2864363fa2ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070903Z:8d3a8601-898e-4049-9b99-2805b0bf1f18" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc1260397b84885c44d8f3908c9a1eab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76a2530a-f90e-4fd0-a60a-572411b4d7c2", + "x-ms-client-request-id": "fc1260397b84885c44d8f3908c9a1eab", + "x-ms-correlation-request-id": "d6f0663e-6010-4150-a60c-026f197c6ace", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "2f65a3ec-f3f8-4da2-9da0-ef1bf7939f79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070904Z:d6f0663e-6010-4150-a60c-026f197c6ace" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a9a520b1de8307253e6cd68165715aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df26306c-ad77-4d1d-b94c-f0224164ed1a", + "x-ms-client-request-id": "2a9a520b1de8307253e6cd68165715aa", + "x-ms-correlation-request-id": "49293093-f9fe-4793-b843-be55fc9da8bf", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "fd36cb40-099b-4211-a35a-ca68e878f9e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070905Z:49293093-f9fe-4793-b843-be55fc9da8bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d86ee899214586e3837f066e9700c7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f3192b8-dc12-42c9-930a-00bd3543e5e7", + "x-ms-client-request-id": "8d86ee899214586e3837f066e9700c7f", + "x-ms-correlation-request-id": "c7ea91c5-9913-4527-91f5-7dc46be2eff0", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "2f3859ec-ada9-4734-acad-5d6aedaad182", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070906Z:c7ea91c5-9913-4527-91f5-7dc46be2eff0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "027382a2dde61c5deee2a99daef471ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0bc45975-eace-4fc8-be40-2fadd295fd1e", + "x-ms-client-request-id": "027382a2dde61c5deee2a99daef471ed", + "x-ms-correlation-request-id": "dd05aab2-9044-4ffc-a5cb-1652256bad9e", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "2d1a60e0-bb1b-4a97-9b7e-36f896d6db80", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070908Z:dd05aab2-9044-4ffc-a5cb-1652256bad9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d0649c391147896e442f2b02d0b47e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95d76a57-ade3-40f8-aa7a-484eb5d6c670", + "x-ms-client-request-id": "9d0649c391147896e442f2b02d0b47e2", + "x-ms-correlation-request-id": "4a2c827a-ec31-4d6c-97fa-56547e161ee9", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "728f208e-210c-435f-85ff-b73ce885623f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070909Z:4a2c827a-ec31-4d6c-97fa-56547e161ee9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93c54eda13e3abc3916a9e32e8d0aa44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "70e0dad5-9748-4ab9-951a-a76394b60ea4", + "x-ms-client-request-id": "93c54eda13e3abc3916a9e32e8d0aa44", + "x-ms-correlation-request-id": "fb29d9c7-bed9-4367-87b1-75ddd64d3256", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "4b3d466c-5576-473d-a117-dbc55e33dd34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070910Z:fb29d9c7-bed9-4367-87b1-75ddd64d3256" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fa303c66e69106becfb1da4ebacefe3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "077fa66a-b6a2-4e43-a48a-d5677318ab94", + "x-ms-client-request-id": "9fa303c66e69106becfb1da4ebacefe3", + "x-ms-correlation-request-id": "ba5253c5-d74a-4bf2-8cb0-2aa555859f3a", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "dc60e754-b274-42f3-af1c-a916ca3aff0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070912Z:ba5253c5-d74a-4bf2-8cb0-2aa555859f3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fc3c69bdd2eb009865b0ca9f2648f13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f33f342-f8e4-4c00-a93e-cd874ee9d729", + "x-ms-client-request-id": "5fc3c69bdd2eb009865b0ca9f2648f13", + "x-ms-correlation-request-id": "5d216f02-633d-4ff2-98f2-3d11d2fb1aaf", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "8c1f0763-4dd7-41fd-b0f9-39046b67a137", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070913Z:5d216f02-633d-4ff2-98f2-3d11d2fb1aaf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2aeaad97a7676b79e3b4a7e8f51fbfe4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff633c0c-cbb4-46c3-9a4c-2ed2eddc2493", + "x-ms-client-request-id": "2aeaad97a7676b79e3b4a7e8f51fbfe4", + "x-ms-correlation-request-id": "fb3f0257-a1bb-4027-b614-1b723572849f", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "8e924043-89f6-4b05-95ec-0911ceb068de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070914Z:fb3f0257-a1bb-4027-b614-1b723572849f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2297ba7b4a0de816f9f3190d62c11e87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83df3358-3d42-4414-8eca-f3970f026abd", + "x-ms-client-request-id": "2297ba7b4a0de816f9f3190d62c11e87", + "x-ms-correlation-request-id": "eb7664f0-f808-4986-9ccb-0bb129999311", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "5caf79f7-0aab-49ef-84b1-3d1dde08588e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070916Z:eb7664f0-f808-4986-9ccb-0bb129999311" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d0c096bc4c2f37b4c577b793621ba66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c9d97bc-ab01-468b-a33d-aa10b7c684c5", + "x-ms-client-request-id": "3d0c096bc4c2f37b4c577b793621ba66", + "x-ms-correlation-request-id": "34cbea45-c777-4102-a86b-8c5baca07fb2", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "47595ce7-0d27-492f-9928-84f850a376be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070917Z:34cbea45-c777-4102-a86b-8c5baca07fb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "372e279b6dcc4d06970130748e6c0822", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4f5b969-9ab8-41b6-9829-77ca9bd07f48", + "x-ms-client-request-id": "372e279b6dcc4d06970130748e6c0822", + "x-ms-correlation-request-id": "033461ac-d643-427f-8665-4ea3fa709812", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "f838781e-6d01-4654-9e28-27a7945ab944", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070918Z:033461ac-d643-427f-8665-4ea3fa709812" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec7c1f968113b6223fa4d5b5ce9cb2d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b320f146-4a01-450b-9abf-0de1768f43a6", + "x-ms-client-request-id": "ec7c1f968113b6223fa4d5b5ce9cb2d8", + "x-ms-correlation-request-id": "3c736b1a-6434-409a-9c05-4bd5ca9000a6", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "4b2871f3-46b6-4652-9d5f-840d40a2f6fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070919Z:3c736b1a-6434-409a-9c05-4bd5ca9000a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a72b238e693febb02bfa6c0930664e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21b95da8-8dc3-473f-b1e8-9701a12c22e1", + "x-ms-client-request-id": "3a72b238e693febb02bfa6c0930664e0", + "x-ms-correlation-request-id": "e9f516f6-7de0-44a9-9350-bc43f9f4c19c", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "6dc3814e-4577-4911-b81e-157044f9f833", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070921Z:e9f516f6-7de0-44a9-9350-bc43f9f4c19c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16e2594ecda419530478f82897507efa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31d13128-128e-4086-a36a-49893685aa3c", + "x-ms-client-request-id": "16e2594ecda419530478f82897507efa", + "x-ms-correlation-request-id": "5a76c22c-a450-457d-a9f4-3e71baf2c244", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "f596a0a2-bed6-4f4f-8616-0cec8139a830", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070922Z:5a76c22c-a450-457d-a9f4-3e71baf2c244" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db3c584fcef9b08f647de953db612238", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ea0117f-4b18-45fa-9d62-98a9b434b97b", + "x-ms-client-request-id": "db3c584fcef9b08f647de953db612238", + "x-ms-correlation-request-id": "321fb1f2-8dab-4037-a283-7e40a9cb11c3", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "5e721132-f9a9-4737-922b-70b374ac15d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070923Z:321fb1f2-8dab-4037-a283-7e40a9cb11c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7466f43f9bba6a335f58361bed9267b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6d03f23-cadb-4243-8dc2-43a9c30dbdf1", + "x-ms-client-request-id": "7466f43f9bba6a335f58361bed9267b2", + "x-ms-correlation-request-id": "31eb0c55-1ce7-43e5-bd15-f73ef4640b4a", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "3ef8f429-de95-4079-8b50-6feeab6fe0be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070924Z:31eb0c55-1ce7-43e5-bd15-f73ef4640b4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b71ac4089ca80e6ca31b226e3ff3ea3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66aa117e-32e7-46ef-a6c6-caa9b14fb127", + "x-ms-client-request-id": "3b71ac4089ca80e6ca31b226e3ff3ea3", + "x-ms-correlation-request-id": "929766bf-0a1c-4360-93fa-3cb2f20f049a", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "40121ec8-911b-4634-8755-d98fa8b6cc7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070926Z:929766bf-0a1c-4360-93fa-3cb2f20f049a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2e8c05509e9b43f25d17ca19773c3d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a192eb5a-f1ba-4bca-981e-ffffa2d181ec", + "x-ms-client-request-id": "a2e8c05509e9b43f25d17ca19773c3d1", + "x-ms-correlation-request-id": "e71c706d-db04-488c-a035-23e9e32737e2", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "85fe289b-0ab3-4205-91eb-7dc859c220da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070927Z:e71c706d-db04-488c-a035-23e9e32737e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e123716e7f0b66d0ee5a988e80c865f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ebfae4f-e7cb-4894-962e-6cff0b9dad50", + "x-ms-client-request-id": "2e123716e7f0b66d0ee5a988e80c865f", + "x-ms-correlation-request-id": "e5013e2b-74d5-4de4-a751-e65b922bd461", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "28d9c7c3-efd0-4053-bbef-42b1a11752e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070928Z:e5013e2b-74d5-4de4-a751-e65b922bd461" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cc5921ac4a937c86cbd16f90c45e856", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cab86c9d-0373-444b-b026-812b6edf3cd9", + "x-ms-client-request-id": "2cc5921ac4a937c86cbd16f90c45e856", + "x-ms-correlation-request-id": "40c61f18-8a19-4e9a-83bb-5af554a10e02", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "4070687c-ab06-480f-9387-f1b2d4546a29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070930Z:40c61f18-8a19-4e9a-83bb-5af554a10e02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac10e16e10ec6eb3523294035fb7cb18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8300cc9c-da61-47fe-9223-511bf2731512", + "x-ms-client-request-id": "ac10e16e10ec6eb3523294035fb7cb18", + "x-ms-correlation-request-id": "f8afe148-46aa-4f01-b731-ed608f94b2c7", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "18ea2424-f9da-4fd1-a0d1-c3af0d5d8391", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070931Z:f8afe148-46aa-4f01-b731-ed608f94b2c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05871d4a96ae51276edbc132d074a9c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "510908b1-b698-432b-9bf4-61f98b2a7c45", + "x-ms-client-request-id": "05871d4a96ae51276edbc132d074a9c8", + "x-ms-correlation-request-id": "1d03397e-f529-4b4d-a4a3-c6e7a6e063f5", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "d12a8594-6479-409a-9c5d-f91f2f743e35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070932Z:1d03397e-f529-4b4d-a4a3-c6e7a6e063f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "071952fddafc0972df56da7730c4d8b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8bd4b4f6-cbc0-4b6c-a366-77bbff8755e4", + "x-ms-client-request-id": "071952fddafc0972df56da7730c4d8b5", + "x-ms-correlation-request-id": "94b754ee-5ced-4bcb-b683-bb393a5dd8a9", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "2119f176-b273-4b86-b266-3bc80e652182", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070933Z:94b754ee-5ced-4bcb-b683-bb393a5dd8a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efaffdf2e3bed8a8b9be3d114e809dde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67f1ae3f-fce4-4b7c-a87c-48ec17c59c43", + "x-ms-client-request-id": "efaffdf2e3bed8a8b9be3d114e809dde", + "x-ms-correlation-request-id": "230ef8d2-8ea5-4864-8701-124899fcbe86", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "74b3a14c-c1b9-49d5-a5ac-92a681ca8616", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070935Z:230ef8d2-8ea5-4864-8701-124899fcbe86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c06cb88c39e701baa7d2557bcb021aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4581719-17d8-46a8-a779-41d53e8cbde4", + "x-ms-client-request-id": "0c06cb88c39e701baa7d2557bcb021aa", + "x-ms-correlation-request-id": "4c135eba-057a-4953-8341-e6f420a15767", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "b633b6f9-c586-43a9-876f-9b8106c700bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070936Z:4c135eba-057a-4953-8341-e6f420a15767" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d2400c03bac4190aaa414d3e9c61bb5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78f54eb8-21c1-4731-99c0-c837253bb9a9", + "x-ms-client-request-id": "d2400c03bac4190aaa414d3e9c61bb5f", + "x-ms-correlation-request-id": "bc9d998b-8541-4ee8-87e1-788c1b3314a8", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "e9a54828-c3a7-4e55-ae76-a4d332e6ef4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070937Z:bc9d998b-8541-4ee8-87e1-788c1b3314a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "64eefbb9cbbe2e17e23e4440be501c09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "127731a6-16e2-4a9a-8041-d710dfe5a068", + "x-ms-client-request-id": "64eefbb9cbbe2e17e23e4440be501c09", + "x-ms-correlation-request-id": "66573a5f-a5a0-4805-98f8-19e4b6111af5", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "87240fb8-ed8c-4228-84ae-94518b14ea86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070938Z:66573a5f-a5a0-4805-98f8-19e4b6111af5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "410e939cca40cd1ac1ed615c76dcd349", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bab07a9-b397-44b5-82e3-289007441fca", + "x-ms-client-request-id": "410e939cca40cd1ac1ed615c76dcd349", + "x-ms-correlation-request-id": "9f4b8fb7-1d73-4686-a198-5f9ec915f520", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "7b82096f-ac09-4101-9e34-a4d451386949", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070940Z:9f4b8fb7-1d73-4686-a198-5f9ec915f520" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c19ec5c1bdc137ebf512f08576c95a59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eff6b3e4-d801-438c-bf87-3d8cf579c814", + "x-ms-client-request-id": "c19ec5c1bdc137ebf512f08576c95a59", + "x-ms-correlation-request-id": "ba926a0d-51ac-4b3c-a489-85108eee76e0", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "ae1aa699-01fd-4768-9ffa-f85713c5fcb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070941Z:ba926a0d-51ac-4b3c-a489-85108eee76e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09a244247953ee1fe120a3d06abab805", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "42255743-27ae-47b4-8e1d-d5587725f4ae", + "x-ms-client-request-id": "09a244247953ee1fe120a3d06abab805", + "x-ms-correlation-request-id": "fe9109b0-fe78-455f-981e-b6cf2f81930a", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "acd110b4-498f-4d69-976c-f6eef6cc81ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070942Z:fe9109b0-fe78-455f-981e-b6cf2f81930a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f87efb6b5ab2de47a7d64c2eda9457f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de3e68c0-845f-4152-8418-9736a4187f48", + "x-ms-client-request-id": "f87efb6b5ab2de47a7d64c2eda9457f7", + "x-ms-correlation-request-id": "fadfa0b7-3bd6-40bb-aadb-53fd1529abb8", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "2b9c19d5-3202-4e4b-b098-2660df54b202", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070943Z:fadfa0b7-3bd6-40bb-aadb-53fd1529abb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31370793ca3a48f6a6afe0a11a1bcd3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73802d73-e808-4e53-baa6-ff6d4645853f", + "x-ms-client-request-id": "31370793ca3a48f6a6afe0a11a1bcd3a", + "x-ms-correlation-request-id": "6101a91e-dcbf-4d7c-acd0-d2f181b87170", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "90200262-4d24-46b1-bfdd-c7bc68b08688", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070945Z:6101a91e-dcbf-4d7c-acd0-d2f181b87170" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b1aeb59614bcaa7fcc3617c2df0144c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47a148a5-8f7d-4061-8c26-19f32832264d", + "x-ms-client-request-id": "7b1aeb59614bcaa7fcc3617c2df0144c", + "x-ms-correlation-request-id": "55477cd3-68d8-4fd6-ad1f-cbaaafd9e746", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "f0949daf-1455-4d47-859a-38a438b529c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070946Z:55477cd3-68d8-4fd6-ad1f-cbaaafd9e746" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "623dabc98682a1cb053652027aa6c48c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53129802-e5cf-4dc4-8120-f1c0deadddc6", + "x-ms-client-request-id": "623dabc98682a1cb053652027aa6c48c", + "x-ms-correlation-request-id": "840c3ccf-052a-45b7-8a2e-a38145e54f32", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "884b06b4-b6a1-400c-90a0-1aebf2bd8521", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070947Z:840c3ccf-052a-45b7-8a2e-a38145e54f32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efd41109dc7931ac606d357768791bb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb632577-f499-49d4-9903-5448002bb47d", + "x-ms-client-request-id": "efd41109dc7931ac606d357768791bb5", + "x-ms-correlation-request-id": "fb8240e3-bc2d-4fca-aff0-2a3f8240ecb2", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "58bd1f97-d35e-45bb-895e-ae8bfde13fb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070949Z:fb8240e3-bc2d-4fca-aff0-2a3f8240ecb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ed8939b6bded3b81f7976140fa44f56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "deade98b-9249-4fc4-ad22-07953b5e02e7", + "x-ms-client-request-id": "6ed8939b6bded3b81f7976140fa44f56", + "x-ms-correlation-request-id": "1b7da01b-1019-44eb-8914-e7bf593713e3", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "af111fe0-c451-47a9-be1e-be6b8a879882", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070950Z:1b7da01b-1019-44eb-8914-e7bf593713e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b73d5fe251cecd3ff0b01145153388b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e013dd24-5d85-4877-8c6e-41d013da646b", + "x-ms-client-request-id": "1b73d5fe251cecd3ff0b01145153388b", + "x-ms-correlation-request-id": "1018b0f9-4a37-4a86-bc2b-3b1d08b62970", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "d5f669cb-15f7-4943-9cd0-6d4bda00068f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070951Z:1018b0f9-4a37-4a86-bc2b-3b1d08b62970" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7679c1b56ce9ead5900cf00669722bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f19f7eb4-67ab-4117-8374-0579302822c5", + "x-ms-client-request-id": "e7679c1b56ce9ead5900cf00669722bb", + "x-ms-correlation-request-id": "1d5ff927-cfc8-4289-960f-35995354a1cf", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "325f6c4a-d082-4464-b4bd-e26bb25a2652", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070953Z:1d5ff927-cfc8-4289-960f-35995354a1cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9378de1eff067599c0eb6ed269a482cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a9e5bd4-a8cf-4a11-ab8b-745380fcd63b", + "x-ms-client-request-id": "9378de1eff067599c0eb6ed269a482cc", + "x-ms-correlation-request-id": "382674ec-ed1c-48fc-8a37-1d2d3f7a3c2c", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "70899586-4084-4697-ad97-914e0d52bac9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070954Z:382674ec-ed1c-48fc-8a37-1d2d3f7a3c2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73f9ea40673ca88827d5c21c56d28668", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6dec888-50bb-4cbe-96e5-6f33a2125468", + "x-ms-client-request-id": "73f9ea40673ca88827d5c21c56d28668", + "x-ms-correlation-request-id": "e5323315-9f09-427e-8b39-d206aa9dfe58", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "51e55c0e-52b8-4e55-9c9b-ea65294f395c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070955Z:e5323315-9f09-427e-8b39-d206aa9dfe58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72f645e9a5db1b8503f227e3e7db34b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1bfcf08-80f1-4222-bb90-47ccf3f61174", + "x-ms-client-request-id": "72f645e9a5db1b8503f227e3e7db34b5", + "x-ms-correlation-request-id": "c802f362-161f-4271-9181-c7035e127961", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "35044801-337f-4553-86a6-56ef41146522", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070957Z:c802f362-161f-4271-9181-c7035e127961" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bc0037dae9eb67f56d06b313d7c1fed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a574808-bc91-462e-9ccf-ea1e8da5c3c3", + "x-ms-client-request-id": "7bc0037dae9eb67f56d06b313d7c1fed", + "x-ms-correlation-request-id": "298f91e3-33ba-4e2a-a750-4185efb477eb", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "14cbd952-5708-42ee-b946-ce01630848c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070958Z:298f91e3-33ba-4e2a-a750-4185efb477eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23e9066410ad9bf064dd704a40a4c04c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:09:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d1d288e9-d104-4b5f-bf15-fd1be5cc71c8", + "x-ms-client-request-id": "23e9066410ad9bf064dd704a40a4c04c", + "x-ms-correlation-request-id": "8b849444-52d5-496b-b5f5-ae587bb1fc1a", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "a4dc95b5-ef74-4e69-ba1b-cc4564f86f7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T070959Z:8b849444-52d5-496b-b5f5-ae587bb1fc1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "539e0da00a123ac9c63f1b0b3954dd86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99b66744-9e7b-4311-b130-a766ab1de0ab", + "x-ms-client-request-id": "539e0da00a123ac9c63f1b0b3954dd86", + "x-ms-correlation-request-id": "5374a908-5c09-474c-862f-3bc7d4f9ca76", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "6e5af96e-1c5f-4c02-8083-11e4738b8d3c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071001Z:5374a908-5c09-474c-862f-3bc7d4f9ca76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e07e3ad310f26d07122417c03e3476b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64b99d6b-8205-4e8a-a02b-251e46b7121e", + "x-ms-client-request-id": "e07e3ad310f26d07122417c03e3476b1", + "x-ms-correlation-request-id": "d0920c95-9011-458b-a619-87223e49caf5", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "4879a354-84d7-4153-a238-08aa5b4af542", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071002Z:d0920c95-9011-458b-a619-87223e49caf5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30901f0fcbde59db3cae5d6ef5e56210", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8451c1d6-a568-42ae-8ed8-4b707384fc16", + "x-ms-client-request-id": "30901f0fcbde59db3cae5d6ef5e56210", + "x-ms-correlation-request-id": "661f56f9-1ae7-4fc0-9c84-9f9b7c9a6393", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "9e1173bf-0671-4708-a603-af8050cb2c25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071003Z:661f56f9-1ae7-4fc0-9c84-9f9b7c9a6393" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0677e9ffe025905a063140edf309fb92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "537e87a5-aad1-4af7-8453-6a3cdc59dfe6", + "x-ms-client-request-id": "0677e9ffe025905a063140edf309fb92", + "x-ms-correlation-request-id": "c71b770e-3ee1-4b33-ab35-23190d786fd1", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "9fda8d23-6b14-499c-a7a5-0efa5557c6b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071004Z:c71b770e-3ee1-4b33-ab35-23190d786fd1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19fc69c8adc407a85e25a343b398772d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff9bea3d-479f-465e-b5be-07245f5916d8", + "x-ms-client-request-id": "19fc69c8adc407a85e25a343b398772d", + "x-ms-correlation-request-id": "d0bbe63c-f36f-4cfc-a3c3-7b198b9cd38b", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "9b6f5bd8-c92d-4fe4-b03b-98ca99ac7f45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071006Z:d0bbe63c-f36f-4cfc-a3c3-7b198b9cd38b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54c006c270bd2e8cc4002aac8aed6533", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c62561a6-88cb-401e-924e-cf35f645c708", + "x-ms-client-request-id": "54c006c270bd2e8cc4002aac8aed6533", + "x-ms-correlation-request-id": "6fdd1652-bdf8-49ce-8f22-711fe0325629", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "3fc1b4fc-8532-4247-ba5a-26cd8430a780", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071007Z:6fdd1652-bdf8-49ce-8f22-711fe0325629" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ba5cab248e9524c416fa7003c16dd6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d9dcf82-84dd-43b3-9037-c5e47545c13d", + "x-ms-client-request-id": "8ba5cab248e9524c416fa7003c16dd6d", + "x-ms-correlation-request-id": "a283458b-f97e-4fe5-be30-fabde50dc95f", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "3c6ca948-0147-41d8-962e-9f55d2329951", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071008Z:a283458b-f97e-4fe5-be30-fabde50dc95f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed2a13b9a74958d5ddcd54c483fb7c71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "889edc50-9c2d-4fc5-87f6-54353af9446c", + "x-ms-client-request-id": "ed2a13b9a74958d5ddcd54c483fb7c71", + "x-ms-correlation-request-id": "c210edd4-348b-4e1c-81a1-190d639ea582", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "5ad7866d-2504-4e1f-9987-7800f692d04f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071009Z:c210edd4-348b-4e1c-81a1-190d639ea582" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e89070bfecf27a44ba6e134dc88bf2ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb21d796-bc05-4b8d-9a50-bde50da0d9a2", + "x-ms-client-request-id": "e89070bfecf27a44ba6e134dc88bf2ae", + "x-ms-correlation-request-id": "1b9f437f-b3d8-4587-a284-80284045c4f9", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "b1e8dc91-30e6-429d-b905-73e26b31294e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071011Z:1b9f437f-b3d8-4587-a284-80284045c4f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77f2bc2378c20beaf54dae1bf388ce46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d15572a-b811-4568-a5f1-800f718f4345", + "x-ms-client-request-id": "77f2bc2378c20beaf54dae1bf388ce46", + "x-ms-correlation-request-id": "6a45c782-8f52-4097-bb19-c70f82f79058", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "1fdd158d-4d93-4dc2-924b-eb540fcf3cb6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071012Z:6a45c782-8f52-4097-bb19-c70f82f79058" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc4136f3f485cd7bcfb032da93879051", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e6650ac-14de-4c6b-80a2-00cc7ac0edb8", + "x-ms-client-request-id": "cc4136f3f485cd7bcfb032da93879051", + "x-ms-correlation-request-id": "a17585c4-1ebc-40c2-b0fb-41ad8f7f9e7f", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "1a6e05f5-1107-4657-856a-d26d33d59ca2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071013Z:a17585c4-1ebc-40c2-b0fb-41ad8f7f9e7f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6a0a6db050846ae8685f2a53e288631", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f12db3be-114f-4db6-bd68-663df3103f79", + "x-ms-client-request-id": "c6a0a6db050846ae8685f2a53e288631", + "x-ms-correlation-request-id": "090b1243-df1b-4f0f-9a29-5814856564f4", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "fe3f242d-1eda-448e-8c35-70548ad72711", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071014Z:090b1243-df1b-4f0f-9a29-5814856564f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9259cc9f254a2e284125a812450f776e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf508d37-2597-461d-8ff3-435817e5e15a", + "x-ms-client-request-id": "9259cc9f254a2e284125a812450f776e", + "x-ms-correlation-request-id": "1b77a1aa-c353-42c4-88eb-daf1c69f4cdb", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "3441dbee-9cd1-4dfa-b24f-fc4744d53e26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071016Z:1b77a1aa-c353-42c4-88eb-daf1c69f4cdb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c405cbd08e7ee3d88fa460002d58fa6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33cbb2e8-6afd-4681-896e-ace70932a666", + "x-ms-client-request-id": "4c405cbd08e7ee3d88fa460002d58fa6", + "x-ms-correlation-request-id": "3e0d6c68-168f-47e1-9c31-c3ae0fb895e6", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "59d3f262-affd-4b7d-9d33-7da2481d1a4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071017Z:3e0d6c68-168f-47e1-9c31-c3ae0fb895e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c63b0129fd2eb5077e7285e35c9c0176", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bcf4f93a-bd66-4edf-a9d7-6e4d0b206982", + "x-ms-client-request-id": "c63b0129fd2eb5077e7285e35c9c0176", + "x-ms-correlation-request-id": "f667302f-e4ff-4d2f-ad65-e175d8683b9e", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "3ca6efbc-40dc-44d0-932c-4a5af303dbb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071018Z:f667302f-e4ff-4d2f-ad65-e175d8683b9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1e8840d3ae8974a8f6b0a50df272c6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb691af1-ed59-4968-964f-77bcc47a8957", + "x-ms-client-request-id": "e1e8840d3ae8974a8f6b0a50df272c6b", + "x-ms-correlation-request-id": "a17d413e-6c3a-4def-8419-877776505e4a", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "3026656d-541e-4f78-b01e-10787d44f616", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071020Z:a17d413e-6c3a-4def-8419-877776505e4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44e80196b0d3bf3f558bce74835a91ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4447a15-3d5d-4a11-8f4b-2f6fd119763f", + "x-ms-client-request-id": "44e80196b0d3bf3f558bce74835a91ec", + "x-ms-correlation-request-id": "fac06a07-10d8-4ea5-85a8-2d3c6b1b995f", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "45280b5a-3fe7-4198-8ecb-9af236e6fb1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071021Z:fac06a07-10d8-4ea5-85a8-2d3c6b1b995f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7df2cff9adedefbeb6a437c2f3b6d556", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c9277e2-2934-4c96-aae0-59967216d20d", + "x-ms-client-request-id": "7df2cff9adedefbeb6a437c2f3b6d556", + "x-ms-correlation-request-id": "5bbfe841-5ab9-4415-b6d4-b1b3a1083ffc", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "f10120ea-0de5-49ac-acf7-994496d4a17a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071023Z:5bbfe841-5ab9-4415-b6d4-b1b3a1083ffc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b4c1946bcb35da244288c5d6bd51334", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e80064b0-e2e8-4a33-ba90-5104239403f9", + "x-ms-client-request-id": "5b4c1946bcb35da244288c5d6bd51334", + "x-ms-correlation-request-id": "88bb8da6-0087-4c52-a3df-eeb7c313c457", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "4bca1951-bf3d-4877-994e-8df2ab074275", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071024Z:88bb8da6-0087-4c52-a3df-eeb7c313c457" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10571dd9ae34e87e42f88d2f797dcb9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6805f20-fd85-41a6-bf75-ca171d7670f8", + "x-ms-client-request-id": "10571dd9ae34e87e42f88d2f797dcb9e", + "x-ms-correlation-request-id": "398a11b2-e3ad-4869-968c-c719049fe303", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "58f005a0-a02c-403a-af05-cf103d8d1561", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071025Z:398a11b2-e3ad-4869-968c-c719049fe303" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "692e77b5350d3c382c9539c4216183e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2554b298-b768-4e9a-b296-22f5344352e2", + "x-ms-client-request-id": "692e77b5350d3c382c9539c4216183e1", + "x-ms-correlation-request-id": "12bc2174-0025-4ac4-a925-9954c6eef236", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "b2c4481c-5b38-41e4-bc78-1a055248f1d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071026Z:12bc2174-0025-4ac4-a925-9954c6eef236" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5e90290c45f98219a6419bb2f73e4c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4405fcf4-1127-4bf4-8ac7-7d70bc9c5a52", + "x-ms-client-request-id": "d5e90290c45f98219a6419bb2f73e4c7", + "x-ms-correlation-request-id": "db3f1f5d-6dc3-4ad6-8378-42d51669003b", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "7b7e5af7-b98a-46f2-bd7a-0f3b0256e09a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071028Z:db3f1f5d-6dc3-4ad6-8378-42d51669003b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4a7ed5daaa7a427e51ae49f75b9c7e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "62d5b8b6-9215-4463-88c4-4e6a03665dba", + "x-ms-client-request-id": "f4a7ed5daaa7a427e51ae49f75b9c7e0", + "x-ms-correlation-request-id": "cea39779-b20b-4de6-95c6-722fd346dfd1", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "61925690-bf77-4874-bb68-cd5832629b8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071029Z:cea39779-b20b-4de6-95c6-722fd346dfd1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "769eac74f593f03e5596cea91c7d0db8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64f3095f-6d9f-417a-818a-8c53e7be1b1a", + "x-ms-client-request-id": "769eac74f593f03e5596cea91c7d0db8", + "x-ms-correlation-request-id": "a4c3eac1-9ce8-4442-839d-3e2188559271", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "0cc13613-8384-4edc-95ad-1d881444c760", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071030Z:a4c3eac1-9ce8-4442-839d-3e2188559271" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "336771b18fbae63adb45f045e08222e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "034c059f-651f-4d01-b7f3-55fa8cf88480", + "x-ms-client-request-id": "336771b18fbae63adb45f045e08222e0", + "x-ms-correlation-request-id": "992b9d63-37bf-4153-bde1-91cf83cc7d12", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "25b2aaf0-8d32-43f7-94f7-8f09cc3256d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071031Z:992b9d63-37bf-4153-bde1-91cf83cc7d12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8346389d6dd56733afb69f10db7d8768", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91340569-3678-40ca-aeba-5151bae208e3", + "x-ms-client-request-id": "8346389d6dd56733afb69f10db7d8768", + "x-ms-correlation-request-id": "dba92f69-a51a-4271-bf3b-bc334232d63e", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "e8c04bd9-c129-4152-804b-d0721c8ac04a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071033Z:dba92f69-a51a-4271-bf3b-bc334232d63e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03ee2b0c9352e52671b89b4e05f810d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a594e2f9-fece-4237-a655-9a5a802eb408", + "x-ms-client-request-id": "03ee2b0c9352e52671b89b4e05f810d2", + "x-ms-correlation-request-id": "9b6d397c-a00e-4634-b81e-2d0a7bff7c6f", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "984b4252-2d9f-4744-9d27-537825092171", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071034Z:9b6d397c-a00e-4634-b81e-2d0a7bff7c6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e40ced738a3643e33eff8303ef290a5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e86ffd89-4fa8-47b3-bec2-86f6c6f14009", + "x-ms-client-request-id": "e40ced738a3643e33eff8303ef290a5d", + "x-ms-correlation-request-id": "0ae77032-e0ba-40b2-b799-2c826b39583e", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "8ae61925-fa32-4b71-ab48-7ce367531c19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071035Z:0ae77032-e0ba-40b2-b799-2c826b39583e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b43888bd1f93098e1160111cd2e462b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "171b66a7-067f-4332-bede-4d810513786b", + "x-ms-client-request-id": "b43888bd1f93098e1160111cd2e462b6", + "x-ms-correlation-request-id": "fb3b5e1d-e5c1-4987-88ea-5c56d860b558", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "ae260a4b-dcba-447b-b150-7b6ce1ccdda5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071037Z:fb3b5e1d-e5c1-4987-88ea-5c56d860b558" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed9dcca5a370823148aac5530f22f648", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e6acaaa-1b3e-4b90-ae0a-fb86282bb425", + "x-ms-client-request-id": "ed9dcca5a370823148aac5530f22f648", + "x-ms-correlation-request-id": "707d4dbe-122d-4159-9cf2-5dcd64b824fe", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "ee57b86a-8f63-4c5d-9dfa-662eacb2a481", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071038Z:707d4dbe-122d-4159-9cf2-5dcd64b824fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d913dad5cc0543e5f03d2d679c77059", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d48be34-daa2-4bd3-ac3d-e335c6c38908", + "x-ms-client-request-id": "7d913dad5cc0543e5f03d2d679c77059", + "x-ms-correlation-request-id": "a3d97d70-f27c-447d-adc0-929996acb6eb", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "5162f75e-58da-4e83-a584-ee82e9daaaf9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071039Z:a3d97d70-f27c-447d-adc0-929996acb6eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "225dcd9c1c8c19ec56b66ce95a3af9ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2cf2d521-5b25-431d-9454-6c4fd5a52ef0", + "x-ms-client-request-id": "225dcd9c1c8c19ec56b66ce95a3af9ee", + "x-ms-correlation-request-id": "613ca0e9-e835-40d8-aea0-d802d057dbf3", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "6c1183b4-c9fe-4dbb-8103-ede063c9c6e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071040Z:613ca0e9-e835-40d8-aea0-d802d057dbf3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "956ec96ae55349f68d498e6dd15b0981", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3035ea98-53d7-4f70-a4da-ec6f7a65b3dd", + "x-ms-client-request-id": "956ec96ae55349f68d498e6dd15b0981", + "x-ms-correlation-request-id": "84ae3ea3-04cf-4a65-9cfa-a5df6463ff3d", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "007c345c-c08f-4afd-9d82-b7805fad5b4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071042Z:84ae3ea3-04cf-4a65-9cfa-a5df6463ff3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42b66b39d3c491bb5077260aef55f925", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28ad7458-7742-4324-b19c-f6f33ba6a84c", + "x-ms-client-request-id": "42b66b39d3c491bb5077260aef55f925", + "x-ms-correlation-request-id": "39b5bc0d-410d-4e20-a957-a6dcff7f531c", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "877ea6dd-0681-4566-932f-c85c05536e03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071043Z:39b5bc0d-410d-4e20-a957-a6dcff7f531c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af6be309db58b705d71494438e7f48fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6467ef98-cd6b-4cfc-a467-3dd0453ea938", + "x-ms-client-request-id": "af6be309db58b705d71494438e7f48fb", + "x-ms-correlation-request-id": "470766a3-4973-4303-a30a-f07d10d25289", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "41a53cc4-f207-463e-94b9-e5f54eecd9e1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071044Z:470766a3-4973-4303-a30a-f07d10d25289" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eeafebacb783962a0ddd44dbbfeb5a38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7be2ff2c-7fe3-49b6-aded-35aa119261e1", + "x-ms-client-request-id": "eeafebacb783962a0ddd44dbbfeb5a38", + "x-ms-correlation-request-id": "9d4a300c-2057-417b-9622-bcc3e33fad74", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "1de805d6-0238-48a3-a332-781a84e8c4a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071045Z:9d4a300c-2057-417b-9622-bcc3e33fad74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee64694f59ef5e2866ff6ab03e7802d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d4ae177-8a52-49dc-b476-71198d949973", + "x-ms-client-request-id": "ee64694f59ef5e2866ff6ab03e7802d1", + "x-ms-correlation-request-id": "4ed03ee2-ebd2-40a4-b992-ebb498517887", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "9f13ac0d-069a-4780-8fe1-83a890b0b947", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071047Z:4ed03ee2-ebd2-40a4-b992-ebb498517887" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "045d2a2f0ba651a1b9d4a17a9729f7eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49193146-5967-4041-8071-587e3d3f2f28", + "x-ms-client-request-id": "045d2a2f0ba651a1b9d4a17a9729f7eb", + "x-ms-correlation-request-id": "8d5c7c9f-8f6c-4685-8fae-85e91fd71d4a", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "5856dc84-6a00-4133-8aad-0438e4da730a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071048Z:8d5c7c9f-8f6c-4685-8fae-85e91fd71d4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25f35cba5a1a520cc25088844c795894", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f7ee640-c8c1-4d5a-8190-ec6534a2b1ff", + "x-ms-client-request-id": "25f35cba5a1a520cc25088844c795894", + "x-ms-correlation-request-id": "d1c3a186-e755-4c20-909f-9f89b51e47a9", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "08fbf06a-52d5-445b-a98c-57492651e5fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071049Z:d1c3a186-e755-4c20-909f-9f89b51e47a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95ac73db558e4391c712351ab7aec63c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68a5bd22-2499-47fb-a0d8-d497e8434413", + "x-ms-client-request-id": "95ac73db558e4391c712351ab7aec63c", + "x-ms-correlation-request-id": "58e8d22d-af8c-4acb-b38c-86026c7606ad", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "79ebfac4-67a2-4569-bd2a-9c94f68f20a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071051Z:58e8d22d-af8c-4acb-b38c-86026c7606ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1f67f07dc85d4b61d0a4255831c053f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9214a22b-a875-43da-9322-e04ba8d95119", + "x-ms-client-request-id": "e1f67f07dc85d4b61d0a4255831c053f", + "x-ms-correlation-request-id": "6e0cd758-b81e-4929-bc2f-3144a5f8bf9e", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "a0a059d0-ad76-478b-9563-405321de02b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071052Z:6e0cd758-b81e-4929-bc2f-3144a5f8bf9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "249f0d7c627c645dcbb05d0825f19b13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16fba92d-fe7e-48b2-8d06-c68c03c48554", + "x-ms-client-request-id": "249f0d7c627c645dcbb05d0825f19b13", + "x-ms-correlation-request-id": "5355d4da-1392-4d42-98de-8bab7700f866", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "8e1453b4-aaed-45ec-a470-2e813211878b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071053Z:5355d4da-1392-4d42-98de-8bab7700f866" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd7d4c8a7682fe0fbcd87783123bc0ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "759daaf1-04d6-48c9-8d41-2144916727db", + "x-ms-client-request-id": "cd7d4c8a7682fe0fbcd87783123bc0ab", + "x-ms-correlation-request-id": "c3c0e79f-78fa-499c-9bb8-f544427943fd", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "182c1641-f6f5-457d-a187-5262d4763cf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071054Z:c3c0e79f-78fa-499c-9bb8-f544427943fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa9df50da20fa4bf219116d57faeaf2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94c54b7b-709a-45a4-9edb-21ec0a3f9ab4", + "x-ms-client-request-id": "aa9df50da20fa4bf219116d57faeaf2b", + "x-ms-correlation-request-id": "21ab7809-fe8f-4928-9aa3-596e33f29eac", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "09dee441-6d92-465d-9390-85086d5ca6ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071056Z:21ab7809-fe8f-4928-9aa3-596e33f29eac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37cb2e6f379f06bcfda067a4ebd9518f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c99f8352-f6bb-4d04-a50e-6f899697411c", + "x-ms-client-request-id": "37cb2e6f379f06bcfda067a4ebd9518f", + "x-ms-correlation-request-id": "13a8e5b4-5c31-4405-bc45-62227fb8eb63", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "1f7e3c6e-b341-48b3-822c-34448ea71745", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071057Z:13a8e5b4-5c31-4405-bc45-62227fb8eb63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ffab2eff054e7048cd9abf1603a7f0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9f1188a-97de-495d-ac87-aa088792f9a4", + "x-ms-client-request-id": "2ffab2eff054e7048cd9abf1603a7f0d", + "x-ms-correlation-request-id": "6b05754f-251a-41d3-aa94-e25d47d605fc", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "b3dc14f2-4395-4048-8062-630c11dad8e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071058Z:6b05754f-251a-41d3-aa94-e25d47d605fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3134b28886fd50c3897ad6e3b1ab848", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:10:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af6d888e-2b8c-41d6-bd8b-38c2ca1ec90f", + "x-ms-client-request-id": "e3134b28886fd50c3897ad6e3b1ab848", + "x-ms-correlation-request-id": "26bd46f2-af2b-4403-9390-931f753dfaa2", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "f0a98d3a-6b7a-48df-9ed9-75baf09b46f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071059Z:26bd46f2-af2b-4403-9390-931f753dfaa2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cce5863f7fb37fd72ae4aac68ccba6c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf84feb4-6640-4029-a692-aa355b0c6f57", + "x-ms-client-request-id": "cce5863f7fb37fd72ae4aac68ccba6c2", + "x-ms-correlation-request-id": "17990159-517a-438f-bcb7-78b823171cb1", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "ab665a79-ad2d-464a-b698-64ac7a90bd0d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071101Z:17990159-517a-438f-bcb7-78b823171cb1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a07b5a216ec5671fa625f7bc4296ab72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9edfbc65-90ac-42b2-b9e2-009773d307cc", + "x-ms-client-request-id": "a07b5a216ec5671fa625f7bc4296ab72", + "x-ms-correlation-request-id": "ed50c21b-b135-479d-8bda-884dfcbe36c8", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "c26d6d06-0767-4518-a66d-0ad8dcad6946", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071102Z:ed50c21b-b135-479d-8bda-884dfcbe36c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9b16320b255a95a7394b98bde46496c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a91e07e-89ca-482d-bdfc-d18b7ee59b4f", + "x-ms-client-request-id": "d9b16320b255a95a7394b98bde46496c", + "x-ms-correlation-request-id": "4597129c-0d32-4798-b9c4-488f5f69437e", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "cac4b0ef-573e-400e-8322-cbcbc07d6cff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071103Z:4597129c-0d32-4798-b9c4-488f5f69437e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e14debf1179ed182667e268e881b3c94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "862e0bfe-37d1-477e-9bbc-c3ffcd968936", + "x-ms-client-request-id": "e14debf1179ed182667e268e881b3c94", + "x-ms-correlation-request-id": "8f023625-3f33-44d3-87fd-db36aee157c5", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "40b7e1d5-9582-408c-a21a-fced6857800f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071105Z:8f023625-3f33-44d3-87fd-db36aee157c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28a53838cc1a6e6cffd22d31b4948860", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb3dd205-0f2f-48c0-9bd8-86c5731e72f1", + "x-ms-client-request-id": "28a53838cc1a6e6cffd22d31b4948860", + "x-ms-correlation-request-id": "2dd909f0-41cf-4f1d-b3c4-2c92294dfb2e", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "902ea64f-b2f5-47ae-8201-d146c588bf9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071106Z:2dd909f0-41cf-4f1d-b3c4-2c92294dfb2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57ca8adbca4808d3e1df72d78ccb2057", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba6e4faa-506a-454c-853b-c741d144aa32", + "x-ms-client-request-id": "57ca8adbca4808d3e1df72d78ccb2057", + "x-ms-correlation-request-id": "1571528d-5803-4162-9c2f-ddff585d6237", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "a6fcc6b4-8d7d-467f-b4fa-12486dcbe00e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071107Z:1571528d-5803-4162-9c2f-ddff585d6237" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a652255821a025527edee1cbea511dd1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f23b579-d2b4-45a4-8c63-1500a8c13ad7", + "x-ms-client-request-id": "a652255821a025527edee1cbea511dd1", + "x-ms-correlation-request-id": "9d7ccf0a-1f0a-4f37-85dd-b859d4fa7b20", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "be250979-5224-4342-b3da-ba4c128f045e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071108Z:9d7ccf0a-1f0a-4f37-85dd-b859d4fa7b20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "feb3c6f5e4516d4b649c473a5995e234", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18293242-aafa-417b-a1df-5501f247e4af", + "x-ms-client-request-id": "feb3c6f5e4516d4b649c473a5995e234", + "x-ms-correlation-request-id": "327b46c4-e5c3-4001-a96b-6adfaf196165", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "e93e5e61-7630-49e6-a5be-28f8164eb427", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071110Z:327b46c4-e5c3-4001-a96b-6adfaf196165" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fd9d6b2e242babf37a5d96ae9071e90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33dbfd32-889e-441f-a362-882999135c32", + "x-ms-client-request-id": "8fd9d6b2e242babf37a5d96ae9071e90", + "x-ms-correlation-request-id": "62687cbe-1633-4d4c-852e-0a152d6ee347", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "95ca14cf-7611-461a-a504-4a92b0caf6be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071111Z:62687cbe-1633-4d4c-852e-0a152d6ee347" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6e2a1c222187306d9e44104d918cbe9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78d6ac85-eff5-458a-bd44-76ac0efdf6d7", + "x-ms-client-request-id": "c6e2a1c222187306d9e44104d918cbe9", + "x-ms-correlation-request-id": "acd0520f-a10d-4c3b-9c41-5b3f6b968d95", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "1ebe4a9d-20f6-4d83-9517-27772e81f50b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071113Z:acd0520f-a10d-4c3b-9c41-5b3f6b968d95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1319acfc8d77128f06f8c6ab0be1845c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12116f29-8a80-494e-9957-86dcccf2e616", + "x-ms-client-request-id": "1319acfc8d77128f06f8c6ab0be1845c", + "x-ms-correlation-request-id": "b882c642-ccd6-4736-b7da-bde084426bb7", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "f53fb392-b0ee-418c-8453-fb33dce87120", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071114Z:b882c642-ccd6-4736-b7da-bde084426bb7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b878b77d1cb28f1bcf65b65da0bbe01f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b556ff18-084d-4fa8-9eac-67826f6aecdf", + "x-ms-client-request-id": "b878b77d1cb28f1bcf65b65da0bbe01f", + "x-ms-correlation-request-id": "48502554-01ee-4a29-918b-975599cefed5", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "58cd017e-d95d-4ebe-830e-c7fab766e043", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071115Z:48502554-01ee-4a29-918b-975599cefed5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c6ef0d90aee351811cfbf1f5b5a68f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6d88c92-6e2d-49cf-916c-c7c5dbdd6c38", + "x-ms-client-request-id": "3c6ef0d90aee351811cfbf1f5b5a68f8", + "x-ms-correlation-request-id": "532e7845-93d7-49be-bf6a-23ec7dd9f1ff", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "92f16032-f642-460a-81e9-4a1d71d9ddd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071116Z:532e7845-93d7-49be-bf6a-23ec7dd9f1ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2186e56013a0e03690894412d732714b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cbf250b-05c3-4488-9a4d-23b1a74391d6", + "x-ms-client-request-id": "2186e56013a0e03690894412d732714b", + "x-ms-correlation-request-id": "336366b5-a9d4-4930-8c3a-ffc643daf543", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "08ebe673-d55c-4564-86a5-0d3c80765a84", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071118Z:336366b5-a9d4-4930-8c3a-ffc643daf543" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ad1a7174773736e9f42a7e35cfc3475", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2782d812-4026-4b07-8ac8-d051f77c4c2f", + "x-ms-client-request-id": "1ad1a7174773736e9f42a7e35cfc3475", + "x-ms-correlation-request-id": "44673e41-3223-4eba-bfd5-4da669749bf0", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "a605d79c-19b3-43f6-8d11-bdbbaee73e03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071119Z:44673e41-3223-4eba-bfd5-4da669749bf0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbfcbdfdbf35c67fba8dac64c6055ddf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54687106-6f87-44e6-a616-2cf0bcbebab4", + "x-ms-client-request-id": "bbfcbdfdbf35c67fba8dac64c6055ddf", + "x-ms-correlation-request-id": "90887dbe-5562-4bcc-983d-e526bdabd485", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "fd6d2659-91ec-4cf2-bbca-3a3a3b0ca209", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071120Z:90887dbe-5562-4bcc-983d-e526bdabd485" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b407745d4d8819857612825d6b528394", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d93837b9-1f08-458f-8814-8065faa97454", + "x-ms-client-request-id": "b407745d4d8819857612825d6b528394", + "x-ms-correlation-request-id": "b357ac03-819e-4dc8-8ea4-0a377699cee0", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "7e78bf27-af29-4738-a628-1cef23d5a829", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071121Z:b357ac03-819e-4dc8-8ea4-0a377699cee0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1915ce55b6355815280a60e59a0aac9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b2d442e-6eae-4ea6-baab-55d8271daac4", + "x-ms-client-request-id": "1915ce55b6355815280a60e59a0aac9a", + "x-ms-correlation-request-id": "33bca87b-176d-492e-bf98-1107240b1180", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "4781fd88-1230-4fb2-a181-3d1429d7661a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071123Z:33bca87b-176d-492e-bf98-1107240b1180" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e885c8e580f4afec38e345223c225a67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c3318ad-2007-4272-9492-56fe6d975f12", + "x-ms-client-request-id": "e885c8e580f4afec38e345223c225a67", + "x-ms-correlation-request-id": "9f1c9994-fb0a-4837-b875-1baf3ad0b398", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "a070f117-04aa-4ca6-ad0b-56e41ad01c79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071124Z:9f1c9994-fb0a-4837-b875-1baf3ad0b398" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f70e170a43f0a7a95eaf8c7eeca07e6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b055fc67-3c42-4ac8-afd5-a9b52ff5f495", + "x-ms-client-request-id": "f70e170a43f0a7a95eaf8c7eeca07e6c", + "x-ms-correlation-request-id": "92abed04-20c2-4337-8900-d6de6a2bcd72", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "870edf69-2805-4195-86a0-603128f7405a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071125Z:92abed04-20c2-4337-8900-d6de6a2bcd72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a377e8669acdd5a0e265e15171f31b05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3589709b-098b-4551-8f5a-fa0373ce06de", + "x-ms-client-request-id": "a377e8669acdd5a0e265e15171f31b05", + "x-ms-correlation-request-id": "b1d317a3-bd8a-49b6-8d53-8a7d96331a81", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "8fca7282-22dd-4d8d-85ff-437004dba6c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071127Z:b1d317a3-bd8a-49b6-8d53-8a7d96331a81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83daf9afb4fca1a91ede8a45f46ec298", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25a13889-8e45-45a6-8781-c655fb0c6424", + "x-ms-client-request-id": "83daf9afb4fca1a91ede8a45f46ec298", + "x-ms-correlation-request-id": "0a440dd6-69f4-4dbe-ba7b-19d39b1cfa2e", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "a45ddd91-86c8-4d44-8626-674eedd128e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071128Z:0a440dd6-69f4-4dbe-ba7b-19d39b1cfa2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54bcd965b7aa6f9a7738158a6258366b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52a174cb-79f0-47b8-b1e2-e2fbc17cd190", + "x-ms-client-request-id": "54bcd965b7aa6f9a7738158a6258366b", + "x-ms-correlation-request-id": "f22e00ff-2d6b-4999-bd13-0628f3019f6e", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "21af2bb5-8ebc-447a-afea-b6bedaf7f8d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071129Z:f22e00ff-2d6b-4999-bd13-0628f3019f6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3ce8693fbc5b16f3ed685ee105ae174", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b34b7abd-e6cd-4d73-bb6b-4d0aa1d72fe5", + "x-ms-client-request-id": "f3ce8693fbc5b16f3ed685ee105ae174", + "x-ms-correlation-request-id": "dcdc57cc-afc4-472c-880a-e74da0f53c10", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "a06bfa24-9edb-488b-847a-8fa7f244f6a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071130Z:dcdc57cc-afc4-472c-880a-e74da0f53c10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98ec48a3c637f85b5f6a0bc39e1f3ec6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28f55675-1400-42f6-b6d3-fd0ca9fa1384", + "x-ms-client-request-id": "98ec48a3c637f85b5f6a0bc39e1f3ec6", + "x-ms-correlation-request-id": "d8230dfb-c5f3-430b-8726-316f45109a74", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "31ef98ca-615b-4c5f-bad9-f1ae17943ccc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071132Z:d8230dfb-c5f3-430b-8726-316f45109a74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6eb11fa8cf9f6ad3690a16d331ab5f1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "efac564f-0aa2-4eb4-a697-5dd6df6f6b5b", + "x-ms-client-request-id": "6eb11fa8cf9f6ad3690a16d331ab5f1c", + "x-ms-correlation-request-id": "35c86404-10b1-42e6-8de9-aaf2e9bd7870", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "68ffc33d-ce74-4e31-9209-d8a039150ef3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071133Z:35c86404-10b1-42e6-8de9-aaf2e9bd7870" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19e7a1579e6ccc332ad5935aefac121e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5164a63-40b3-47c7-aa85-2847d839dac8", + "x-ms-client-request-id": "19e7a1579e6ccc332ad5935aefac121e", + "x-ms-correlation-request-id": "ef7a2afe-b441-43a4-ad8e-f95e3a11bde6", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "75a7a5ce-8289-4c92-b557-77eca6fc20bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071134Z:ef7a2afe-b441-43a4-ad8e-f95e3a11bde6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f145bf9773a9d3d475812e2cb088c7b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45f044b8-1db6-48f7-b42f-48c7a49710f3", + "x-ms-client-request-id": "f145bf9773a9d3d475812e2cb088c7b3", + "x-ms-correlation-request-id": "aceb8fa9-84a9-4ea7-9dcd-beb78ee14e85", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "85c6f295-4d33-421f-b529-a688284d23a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071135Z:aceb8fa9-84a9-4ea7-9dcd-beb78ee14e85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd6bee0b24380a5aebe443c93b787abc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51585682-af58-4d95-bf15-b94a1fd6a419", + "x-ms-client-request-id": "fd6bee0b24380a5aebe443c93b787abc", + "x-ms-correlation-request-id": "4c71d110-69cd-48d3-99f6-af6d4b5b699a", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "7d1788ba-6f42-49d1-b04d-c65851db1bb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071137Z:4c71d110-69cd-48d3-99f6-af6d4b5b699a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "713bf7f76e65e473cd13a4ea6f071ca2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d550767-5268-4e15-af17-bdaf56c49a50", + "x-ms-client-request-id": "713bf7f76e65e473cd13a4ea6f071ca2", + "x-ms-correlation-request-id": "7fd3663c-6fd0-40ca-b563-7e82a713ee00", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "efcd58e5-dda0-49d8-9ccd-d29d995e58d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071138Z:7fd3663c-6fd0-40ca-b563-7e82a713ee00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "014fe00e154073e6653b05c42f0a98fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b38a6ceb-8ebd-40d0-b7c6-ddd837b59ad6", + "x-ms-client-request-id": "014fe00e154073e6653b05c42f0a98fd", + "x-ms-correlation-request-id": "aa3485c3-10e3-4988-a4fa-230eab9d030e", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "b4764f6f-1d95-4c69-997b-d108853cf109", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071139Z:aa3485c3-10e3-4988-a4fa-230eab9d030e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8357207554c9c4d7a87302580709be4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a10f492-99d1-4701-89b7-4f264842f257", + "x-ms-client-request-id": "b8357207554c9c4d7a87302580709be4", + "x-ms-correlation-request-id": "77c1296c-946f-4d7e-903b-2a5ebc57503b", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "653573c8-a6a8-44c7-affe-ad28373a1992", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071141Z:77c1296c-946f-4d7e-903b-2a5ebc57503b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5bbba1c87828e27c11c80c2a68afb4c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "332bbb68-e3dd-4ed5-8188-dc9d5ff688d0", + "x-ms-client-request-id": "5bbba1c87828e27c11c80c2a68afb4c2", + "x-ms-correlation-request-id": "b4e86ad8-debc-4c51-af62-562716ff9bbf", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "6111160d-4ec6-4d69-89f3-baac71fe5802", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071142Z:b4e86ad8-debc-4c51-af62-562716ff9bbf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fde2a67a64d2b95592b286b8e5c1f2f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e1fcdd48-58bf-4f84-95e2-41d079bb29a2", + "x-ms-client-request-id": "fde2a67a64d2b95592b286b8e5c1f2f5", + "x-ms-correlation-request-id": "18ab8d5e-04f0-43e4-bb69-ee9bfcd31103", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "fc2a71af-8faa-4bc0-b108-e03d0d16f876", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071143Z:18ab8d5e-04f0-43e4-bb69-ee9bfcd31103" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8efc21a03c4e8ed4f553a683482334cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05401506-1e71-4a75-ad21-7efd702746f3", + "x-ms-client-request-id": "8efc21a03c4e8ed4f553a683482334cb", + "x-ms-correlation-request-id": "fce71892-7bb5-4513-bf20-ee5419fd113c", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "aba2b62a-3643-409c-be2e-b84fd697c235", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071145Z:fce71892-7bb5-4513-bf20-ee5419fd113c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9aa6dd39e8d63124b02c976f1c3fc50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2e0c2ae-40a4-4be1-9841-24ebe6e579ca", + "x-ms-client-request-id": "d9aa6dd39e8d63124b02c976f1c3fc50", + "x-ms-correlation-request-id": "b65c48eb-a866-41e9-ad35-e9d493e953a8", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "c57292f0-120a-42b9-821e-ab7134094d4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071146Z:b65c48eb-a866-41e9-ad35-e9d493e953a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "468a17d626b23e73d253077ebdd2706e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bcef34e7-cefe-43ca-8f0a-5e98afd39ead", + "x-ms-client-request-id": "468a17d626b23e73d253077ebdd2706e", + "x-ms-correlation-request-id": "739afe8e-2614-4c33-bf6b-f4a5512bb7ab", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "02887240-bfa3-4ca8-b8b8-bbc63536e5bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071147Z:739afe8e-2614-4c33-bf6b-f4a5512bb7ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77e5bb7e181601670f98434c735e9c32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51ebea26-268c-4a60-a24d-03a0c4b8ddb6", + "x-ms-client-request-id": "77e5bb7e181601670f98434c735e9c32", + "x-ms-correlation-request-id": "62d3d18c-d2f6-400b-b077-f4a4f6ae8421", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "d0552f3b-732a-439c-9769-a424339755bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071148Z:62d3d18c-d2f6-400b-b077-f4a4f6ae8421" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31ad5656ee98ad18fa6c07399793a578", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2bc7599c-32cf-483a-8334-7969457314e2", + "x-ms-client-request-id": "31ad5656ee98ad18fa6c07399793a578", + "x-ms-correlation-request-id": "f4f27af1-fdc2-4d44-9863-3ef8ad93d67d", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "74aa31e8-c0b7-422d-870e-143d89e1d14c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071150Z:f4f27af1-fdc2-4d44-9863-3ef8ad93d67d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36f75a9285ddbd39af883619e227ca73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e17858e9-2e48-4042-a416-2c213d0eafdd", + "x-ms-client-request-id": "36f75a9285ddbd39af883619e227ca73", + "x-ms-correlation-request-id": "66eada50-8730-4261-bb98-a5aa8476da59", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "a4c0e7d5-c2cd-4813-82ca-3fa1599bcce1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071151Z:66eada50-8730-4261-bb98-a5aa8476da59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6728d4b63f258fd5a2387daa102d6a7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dfb10dd1-ae80-4d37-910f-7f87e64c3f0e", + "x-ms-client-request-id": "6728d4b63f258fd5a2387daa102d6a7c", + "x-ms-correlation-request-id": "1c414803-cd33-441b-8f69-f7de2e47a7a0", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "3efc4cfd-e41a-49c5-9143-e9a43d0c4398", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071152Z:1c414803-cd33-441b-8f69-f7de2e47a7a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19bacaf26666d0551cef8110b7fecad2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e5ddfff-5cd1-4aa6-b7a5-437cab3f8128", + "x-ms-client-request-id": "19bacaf26666d0551cef8110b7fecad2", + "x-ms-correlation-request-id": "fb28dbd4-f2f2-487f-9b35-7e2243571cd6", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "8a63baff-86e2-49db-bac1-0dbca0d2f8f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071154Z:fb28dbd4-f2f2-487f-9b35-7e2243571cd6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c28294a13e6a5253846793a4088ead81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eebe948f-d67a-4aad-bb14-dc756fbffc80", + "x-ms-client-request-id": "c28294a13e6a5253846793a4088ead81", + "x-ms-correlation-request-id": "68f881aa-bf9a-4a95-a1ad-697b5cdd7c49", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "20615f26-0964-4aec-95f4-aa46c3f05f28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071155Z:68f881aa-bf9a-4a95-a1ad-697b5cdd7c49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1827b91eb16c500c7e574a35bec5d8a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddd02c80-c5a6-4d9c-8759-9b1a7606b2c6", + "x-ms-client-request-id": "1827b91eb16c500c7e574a35bec5d8a3", + "x-ms-correlation-request-id": "a8eed14a-2c6f-40e9-b12f-c4f390521889", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "995551b7-6d2b-4669-a472-e1de375efb88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071156Z:a8eed14a-2c6f-40e9-b12f-c4f390521889" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c09aa6ea7abb412766794fed2b0c88d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32a2205c-b7c6-451a-b203-34bc7a8b31f9", + "x-ms-client-request-id": "7c09aa6ea7abb412766794fed2b0c88d", + "x-ms-correlation-request-id": "383554d1-ba0a-4314-b131-fb9fc746ad50", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "531f71aa-5fdd-4432-bc19-21d52df9e57c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071157Z:383554d1-ba0a-4314-b131-fb9fc746ad50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fdf1ff41b1d7f06587324412f31d94be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe54e986-2c3f-4abe-a40b-1de94b536eab", + "x-ms-client-request-id": "fdf1ff41b1d7f06587324412f31d94be", + "x-ms-correlation-request-id": "9c5b0614-33ac-4d87-a133-8cc109a4e5b7", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "2db4e2ca-8c0c-4ede-8aae-f02c97e05326", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071159Z:9c5b0614-33ac-4d87-a133-8cc109a4e5b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d36f08f308576d6a772a2051c0e7ece", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:11:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4ab7d9c-914a-4196-942e-13785b684cd4", + "x-ms-client-request-id": "5d36f08f308576d6a772a2051c0e7ece", + "x-ms-correlation-request-id": "30e490e1-f1af-4671-b9a4-e7a8829a7fdd", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "1473602d-df30-40db-9b8c-87afcabd4e8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071200Z:30e490e1-f1af-4671-b9a4-e7a8829a7fdd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bef3bd8edad3bdcc4418f57863ffc058", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b354a62b-a8d4-4e42-93be-710718c1076f", + "x-ms-client-request-id": "bef3bd8edad3bdcc4418f57863ffc058", + "x-ms-correlation-request-id": "3626e665-c0ba-4c13-8648-0693cdeabff4", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "c32efdfd-55e9-4814-95e4-23190c16abde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071201Z:3626e665-c0ba-4c13-8648-0693cdeabff4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e26fd6d26b7a1007287b55640f60d378", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7412941a-3c77-4d45-a176-95158fd655ac", + "x-ms-client-request-id": "e26fd6d26b7a1007287b55640f60d378", + "x-ms-correlation-request-id": "cf1c457b-e4af-4dc5-84ee-bfe41c2c1b04", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "9c09eace-07f4-4c4b-80ab-d8ad1910ffe6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071202Z:cf1c457b-e4af-4dc5-84ee-bfe41c2c1b04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "368475b3d529b4eb2379186d3b5d13a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65e40cc7-7926-4e95-8f47-3f2581df38dc", + "x-ms-client-request-id": "368475b3d529b4eb2379186d3b5d13a8", + "x-ms-correlation-request-id": "72a71bad-2d51-43cb-86a3-32a0014f8fa1", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "6a92c870-107b-4b64-8144-0aa4061a902f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071204Z:72a71bad-2d51-43cb-86a3-32a0014f8fa1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "463249b19c9f2353b5e396588467ade4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bcbd44c-c5c5-479b-ae6d-437a3f1aec7e", + "x-ms-client-request-id": "463249b19c9f2353b5e396588467ade4", + "x-ms-correlation-request-id": "b96db143-b581-44ba-94c8-272cbfb2390f", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "fd4f24af-92a1-44a4-a820-2e3424d9070a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071205Z:b96db143-b581-44ba-94c8-272cbfb2390f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edc57c448a7afd2eebbabe01529ad5ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ea6cd34-52cf-43c6-a299-e88010740e3d", + "x-ms-client-request-id": "edc57c448a7afd2eebbabe01529ad5ca", + "x-ms-correlation-request-id": "7a523dff-d207-40a4-aa5c-e34013482235", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "5426c64e-d7b3-4e51-9b85-0b329c33234d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071206Z:7a523dff-d207-40a4-aa5c-e34013482235" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5b2ad688d2d17d9216180463f922fbc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c798fddc-9b3b-4c59-b236-ddf0169085b6", + "x-ms-client-request-id": "c5b2ad688d2d17d9216180463f922fbc", + "x-ms-correlation-request-id": "ec78c2d6-8b05-4898-9df7-c2533b7f9a70", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "53d9becf-a107-493c-8fa6-cccbb94848a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071207Z:ec78c2d6-8b05-4898-9df7-c2533b7f9a70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf2834cb2598272d1b355be4dd52d01b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18006da6-606c-493f-ab23-2f12115c2090", + "x-ms-client-request-id": "bf2834cb2598272d1b355be4dd52d01b", + "x-ms-correlation-request-id": "d322038f-fbc9-4ab2-bc2e-e1d497b2bb29", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "00d80fc3-949f-41b0-ad25-e6d66129d1ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071209Z:d322038f-fbc9-4ab2-bc2e-e1d497b2bb29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7f0cb0de8b4b7b6a2adcc190ae7bd58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f7b26a2-3063-42d8-968b-535825dbca8d", + "x-ms-client-request-id": "d7f0cb0de8b4b7b6a2adcc190ae7bd58", + "x-ms-correlation-request-id": "ba6e2745-bf96-4f1f-9575-62ec6ac31c07", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "979c900f-24e9-4b7a-beaf-1873ad2b6a96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071210Z:ba6e2745-bf96-4f1f-9575-62ec6ac31c07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d35018a15714331808baaf832f539ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93943960-b26d-4a5f-90b5-5db7bc625b8c", + "x-ms-client-request-id": "1d35018a15714331808baaf832f539ce", + "x-ms-correlation-request-id": "2bf0a622-0eb6-439e-bceb-ef5e78dfc3c1", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "8e6a02c2-1d05-4db1-855b-ea1ed55491c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071211Z:2bf0a622-0eb6-439e-bceb-ef5e78dfc3c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7339659058a2e3077e711deb58131d33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8516b4a-817c-4ec3-bad3-1c311cc00a1e", + "x-ms-client-request-id": "7339659058a2e3077e711deb58131d33", + "x-ms-correlation-request-id": "0dbe2c18-b6c7-40c6-ad37-07333dab178f", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "0abd4bcb-da40-4b6c-975f-ddc50c40337c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071213Z:0dbe2c18-b6c7-40c6-ad37-07333dab178f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db590278b21df8a99aad57293ebd84ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75cfb2f5-59b2-4254-a2ac-d61bead54e65", + "x-ms-client-request-id": "db590278b21df8a99aad57293ebd84ad", + "x-ms-correlation-request-id": "0d6d6a66-7b47-4715-825e-a8130b829a0b", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "20d69dbb-954a-4e89-b00f-07db791d2d2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071214Z:0d6d6a66-7b47-4715-825e-a8130b829a0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a488fd7449ae32b5fa529ffff846ea6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72f083a8-0db6-4c5c-ac58-18c8b5ac6677", + "x-ms-client-request-id": "a488fd7449ae32b5fa529ffff846ea6c", + "x-ms-correlation-request-id": "1e12e631-4016-4d58-b480-3ddfcf1bf27e", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "26da7f72-0977-4bc0-846d-d3df811004c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071215Z:1e12e631-4016-4d58-b480-3ddfcf1bf27e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f80766e5d9bdeb1bb40d9f501dea5c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aad3a8b3-6047-4f8e-a8fa-0d1aa4fa1f4f", + "x-ms-client-request-id": "2f80766e5d9bdeb1bb40d9f501dea5c0", + "x-ms-correlation-request-id": "b0986803-c90f-4820-89a7-5de32b828391", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "6ee9dae2-af9c-489d-9feb-d577405681fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071216Z:b0986803-c90f-4820-89a7-5de32b828391" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b766fec788b2e844d27e1ca12a90053", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc447470-75fb-4514-8a33-bb5aa0f6f48b", + "x-ms-client-request-id": "5b766fec788b2e844d27e1ca12a90053", + "x-ms-correlation-request-id": "74d53a9f-9595-470b-80a5-14077eb4fd9d", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "2c2e6e13-9f54-407e-b809-39a51ee3e7d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071218Z:74d53a9f-9595-470b-80a5-14077eb4fd9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7bbeac2553d16124baae96d70c0301b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5b8cf30-c33b-467e-bd18-6721ed843985", + "x-ms-client-request-id": "c7bbeac2553d16124baae96d70c0301b", + "x-ms-correlation-request-id": "d296024f-0dc7-4de3-ab43-ca84cede38b2", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "632b9601-8055-4531-a9c8-4433cdb2874f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071219Z:d296024f-0dc7-4de3-ab43-ca84cede38b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8813dfad8ecff5e1f152e2737ce6cb11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "312fafad-b5dc-4efb-a8d2-78ae114f1860", + "x-ms-client-request-id": "8813dfad8ecff5e1f152e2737ce6cb11", + "x-ms-correlation-request-id": "b0450d91-def9-4b82-b1f0-32631a068667", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "f310c586-bbbd-4cab-9cb5-536bc628bf77", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071220Z:b0450d91-def9-4b82-b1f0-32631a068667" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16328640dd2397835d600fe08f16be8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "023c86dd-ae38-4160-89cf-8cf3c2ecf8db", + "x-ms-client-request-id": "16328640dd2397835d600fe08f16be8c", + "x-ms-correlation-request-id": "fc6c4e66-bff4-42b5-9b1a-b3c9a817d462", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "abbe9c63-790c-46af-9e65-ca4ab3a0d7aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071221Z:fc6c4e66-bff4-42b5-9b1a-b3c9a817d462" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "331dc5f67796348309c5d5eb739e9a64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef214e5d-ec6e-463c-ae74-641f87c46ff6", + "x-ms-client-request-id": "331dc5f67796348309c5d5eb739e9a64", + "x-ms-correlation-request-id": "7b38e15d-6e65-4928-9669-970292158272", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "f9e115d9-2ca4-4f09-88c0-c428ec5c6085", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071223Z:7b38e15d-6e65-4928-9669-970292158272" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e92dd7de1a8dcff85b7c2a6f7e0065db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2317df02-9f69-470f-997e-37a8dafa387e", + "x-ms-client-request-id": "e92dd7de1a8dcff85b7c2a6f7e0065db", + "x-ms-correlation-request-id": "fa5b3d30-4da8-449d-9404-7100186fb81b", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "7a28ee63-a5ee-450a-af63-6d6485a89388", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071224Z:fa5b3d30-4da8-449d-9404-7100186fb81b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b67c559497c9c97b02fe0c5e089723bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "efbc126a-ee01-4b5f-90cf-9608aed79803", + "x-ms-client-request-id": "b67c559497c9c97b02fe0c5e089723bf", + "x-ms-correlation-request-id": "581a41eb-370d-45a0-8a77-b9022921bda2", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "1fef31b1-d0c2-4735-8e60-f248259ac9b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071225Z:581a41eb-370d-45a0-8a77-b9022921bda2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b801aac6d4e9dcfecd4dd71a4d14b509", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a34b682e-ed2c-46e5-80ca-1085ee81d33c", + "x-ms-client-request-id": "b801aac6d4e9dcfecd4dd71a4d14b509", + "x-ms-correlation-request-id": "8ed206f9-b666-476d-a154-ff8bb97a8100", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "3f8ff653-50be-46dd-89a7-5866157efb08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071227Z:8ed206f9-b666-476d-a154-ff8bb97a8100" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d57fa5fe321479b5b64e78f0d9ac6c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd744a88-8e45-4ce1-ac90-92da3cfab7c5", + "x-ms-client-request-id": "1d57fa5fe321479b5b64e78f0d9ac6c4", + "x-ms-correlation-request-id": "52de6009-f295-403c-87da-0b642d2cf69f", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "8c8a5806-09ea-4bc8-91db-0b4ab56a5865", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071228Z:52de6009-f295-403c-87da-0b642d2cf69f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3a96b58adfebff156a0e87bbf607bee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc73775a-2ceb-4e3a-a6b2-61a7a2e8de84", + "x-ms-client-request-id": "d3a96b58adfebff156a0e87bbf607bee", + "x-ms-correlation-request-id": "a5ddb2f2-d1f1-457e-a852-d89e73e63169", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "3da8fb80-489a-43d6-8837-4b88c4ca08e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071229Z:a5ddb2f2-d1f1-457e-a852-d89e73e63169" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0efe03480540e29d0fba5c85ed6ece33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f526cffd-a6d8-4aef-9c65-95b46b8baec1", + "x-ms-client-request-id": "0efe03480540e29d0fba5c85ed6ece33", + "x-ms-correlation-request-id": "8f42fc51-a26d-4a41-9ba6-e092c932b31f", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "41830efb-d970-48c8-afe8-a10913a947b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071230Z:8f42fc51-a26d-4a41-9ba6-e092c932b31f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2c11386e16bb20b0897c781fb1f87fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "618ce460-1410-49e4-a043-b67e218098b6", + "x-ms-client-request-id": "e2c11386e16bb20b0897c781fb1f87fa", + "x-ms-correlation-request-id": "a59cc58e-84ea-46d7-ad31-4f24a03dde27", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "0ccce94f-301a-4e2f-b068-16d59ee774dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071232Z:a59cc58e-84ea-46d7-ad31-4f24a03dde27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a47f8e8b89b5383cdc6c443506bd2e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff920977-019e-49c2-b46c-0fb2cf455f54", + "x-ms-client-request-id": "0a47f8e8b89b5383cdc6c443506bd2e7", + "x-ms-correlation-request-id": "d20a1d04-67ae-4f5d-80ef-a3224692649a", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "f30a294e-2154-4c51-820b-356d3bd103ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071233Z:d20a1d04-67ae-4f5d-80ef-a3224692649a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acf5b5d2999f6683f74c05a93e1ce7f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "44f7f2ed-1756-4a10-a208-548ee96951e2", + "x-ms-client-request-id": "acf5b5d2999f6683f74c05a93e1ce7f0", + "x-ms-correlation-request-id": "fc258160-9b08-474a-8c78-246ca657ede3", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "0999f5cc-ed56-48c2-96ad-6d1bf5551edd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071234Z:fc258160-9b08-474a-8c78-246ca657ede3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f49d6133c327ce97906e14a41dc7619d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45662d5f-8e74-45c1-8fd9-5f0f9fbb86c0", + "x-ms-client-request-id": "f49d6133c327ce97906e14a41dc7619d", + "x-ms-correlation-request-id": "6935a6f3-b2af-4470-b19a-d6b7906c0e4c", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "391e5343-8332-48a9-8aa7-32e08dd899c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071235Z:6935a6f3-b2af-4470-b19a-d6b7906c0e4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45aedfc5db2a4e5b75e0134fb3da15b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "043aa314-be49-4626-afb9-b8cbfe1b44bb", + "x-ms-client-request-id": "45aedfc5db2a4e5b75e0134fb3da15b1", + "x-ms-correlation-request-id": "c2b92e3c-0803-4fa3-80ec-819cce3b5010", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "7e8ba151-f194-4ba5-9faf-359532629113", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071237Z:c2b92e3c-0803-4fa3-80ec-819cce3b5010" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee10d4dfddce0ec01e271c3185df492f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "193254c6-8777-4b12-acd7-d173459ceadf", + "x-ms-client-request-id": "ee10d4dfddce0ec01e271c3185df492f", + "x-ms-correlation-request-id": "001fb965-a29a-4862-ad34-0e13e0ddb2ae", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "3b484c0d-2435-4b6e-99e8-0bc24ea63179", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071238Z:001fb965-a29a-4862-ad34-0e13e0ddb2ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fe468eaa16d58c5064e7f47b0481bb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68d16a96-d804-4e57-87fe-2195a6b491d4", + "x-ms-client-request-id": "5fe468eaa16d58c5064e7f47b0481bb5", + "x-ms-correlation-request-id": "81477103-c3dc-438b-8af3-4e526cde1264", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "d90be92c-c41e-45d9-88e2-5a942b23d495", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071239Z:81477103-c3dc-438b-8af3-4e526cde1264" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48c4625972b7e7ce1ea02703be2ac995", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "722a4bf4-007c-4b65-a9a6-61f191ada04b", + "x-ms-client-request-id": "48c4625972b7e7ce1ea02703be2ac995", + "x-ms-correlation-request-id": "e78ff1ee-93b4-4a57-8c7a-232fbaa3e6e1", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "577ad861-b43c-4563-9d4e-8265474cd654", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071241Z:e78ff1ee-93b4-4a57-8c7a-232fbaa3e6e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a64e397b5f63e430eb7e8805d795ed6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0eee6540-4881-427f-987c-e26d6fce14a8", + "x-ms-client-request-id": "4a64e397b5f63e430eb7e8805d795ed6", + "x-ms-correlation-request-id": "2f5f59c7-bd7a-46d1-8e99-9c7ed3827499", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "ace69fea-e3d7-422e-b1e6-6559b9fe3280", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071242Z:2f5f59c7-bd7a-46d1-8e99-9c7ed3827499" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22d7660b001a787899fc40cd7ac299dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d13a5ba-96e7-4cb0-9d49-10800b8236bf", + "x-ms-client-request-id": "22d7660b001a787899fc40cd7ac299dc", + "x-ms-correlation-request-id": "c034e6b9-83f3-48fd-a31c-57b3db766fc0", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "d811c8d3-45c4-4b1c-9831-88c19a8ce07d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071243Z:c034e6b9-83f3-48fd-a31c-57b3db766fc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdb0e985d0e3a3bf1f863a008a4e89a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30b16ab2-ad62-47f4-9b5b-d0d8817e39f2", + "x-ms-client-request-id": "cdb0e985d0e3a3bf1f863a008a4e89a5", + "x-ms-correlation-request-id": "a0f9aa7e-4e2a-4c76-ae72-c0dffa6d5888", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "3a684647-e7fa-45e9-b7b1-45a01509787c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071244Z:a0f9aa7e-4e2a-4c76-ae72-c0dffa6d5888" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58f75142a652967b6becb0f97576c44b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9eb89c2f-a3f6-4767-8be4-43403c3b4b7f", + "x-ms-client-request-id": "58f75142a652967b6becb0f97576c44b", + "x-ms-correlation-request-id": "d5016e1d-57d9-46e6-87fa-8f2da5947bac", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "26fb344f-4a2e-4be9-94bf-5d4866680892", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071246Z:d5016e1d-57d9-46e6-87fa-8f2da5947bac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73fa0c1e90c83bf2a7340394c677ed4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "09a2bc13-fd15-497e-a3e5-79d8eee93781", + "x-ms-client-request-id": "73fa0c1e90c83bf2a7340394c677ed4b", + "x-ms-correlation-request-id": "126288f8-3efc-4b8b-8eba-5630740b123b", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "71826e21-d4ef-4714-b6a1-d85c9d04f24b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071247Z:126288f8-3efc-4b8b-8eba-5630740b123b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "288a9a7340cbde896e1962f71fc52da8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29758693-fc50-4c93-bf3c-1771ff1e4808", + "x-ms-client-request-id": "288a9a7340cbde896e1962f71fc52da8", + "x-ms-correlation-request-id": "5464f016-649b-4451-92e4-db658dffac6a", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "b348a74c-08cc-4e3d-b9f4-506374ecfff7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071248Z:5464f016-649b-4451-92e4-db658dffac6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ee1eec11553b1dc5fbbb11ea3e6cff3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2665a49-031b-4b19-a753-81ff5d131180", + "x-ms-client-request-id": "7ee1eec11553b1dc5fbbb11ea3e6cff3", + "x-ms-correlation-request-id": "ef59b0d8-7c4b-41b7-8561-e71fb1f1e355", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "e838f4f9-d673-43ea-96ad-dc721bb7fb10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071249Z:ef59b0d8-7c4b-41b7-8561-e71fb1f1e355" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db8665fe9becdd80821c05af2efa1be1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21007244-172c-450d-a6fe-be9b6b13ced8", + "x-ms-client-request-id": "db8665fe9becdd80821c05af2efa1be1", + "x-ms-correlation-request-id": "5b5f1cfc-97ee-4e7f-bf4f-43fab1c1efa4", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "1a8de344-d235-4197-bc91-263d96c2e226", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071251Z:5b5f1cfc-97ee-4e7f-bf4f-43fab1c1efa4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8d25b066e965df7bdd9c90f8f6b3a88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73790ec1-b9b3-4cf0-bd7f-91ce3655ae4a", + "x-ms-client-request-id": "d8d25b066e965df7bdd9c90f8f6b3a88", + "x-ms-correlation-request-id": "34b1353f-fbd6-489f-909f-d6263c7f4c1c", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "012762ae-87ca-4fa0-be72-b6b5b358def2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071252Z:34b1353f-fbd6-489f-909f-d6263c7f4c1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9f86f49523f26bc6d04fc37102d8264", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb8c71b1-66db-4c3e-b5b8-0bf985bd9b63", + "x-ms-client-request-id": "b9f86f49523f26bc6d04fc37102d8264", + "x-ms-correlation-request-id": "88e2e733-726c-4a27-ad68-9baa33b00aef", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "579b883d-6adf-4229-b9a1-f3455bfc1094", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071253Z:88e2e733-726c-4a27-ad68-9baa33b00aef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4817cfa0f714905d6e291d12d2704d17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd3ffac2-5749-4f91-b7d3-f6de1896b3a4", + "x-ms-client-request-id": "4817cfa0f714905d6e291d12d2704d17", + "x-ms-correlation-request-id": "1aafdae2-3e3e-4112-9499-8dbe4ed92ceb", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "cf974815-66e6-49cc-a5c4-82269c3e53aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071254Z:1aafdae2-3e3e-4112-9499-8dbe4ed92ceb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf657de16102b3a29eac6a9172c04c90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a49880a-61ca-46e3-b471-310fbf47afa5", + "x-ms-client-request-id": "bf657de16102b3a29eac6a9172c04c90", + "x-ms-correlation-request-id": "c33e611e-93e0-4359-9e20-3313d6cf3516", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "5fc68d12-2b56-4fc7-b55c-6fda393e9a13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071256Z:c33e611e-93e0-4359-9e20-3313d6cf3516" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf6f6556f253527312684b1535a954fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb99167f-2e6c-4608-955e-84c4f12d4923", + "x-ms-client-request-id": "bf6f6556f253527312684b1535a954fc", + "x-ms-correlation-request-id": "e4b10edf-174e-4c35-9674-0b825820a61c", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "a84ee6ed-b2f0-42c8-9e9f-809a7ebc7939", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071257Z:e4b10edf-174e-4c35-9674-0b825820a61c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9355e4b7c3c83e612d64a9678dcb1dad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:12:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d83699fa-c260-4e78-8f71-e172a2da57eb", + "x-ms-client-request-id": "9355e4b7c3c83e612d64a9678dcb1dad", + "x-ms-correlation-request-id": "7116547c-2d27-48a5-a473-aeefc354ef66", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "0d1721b6-cc57-4bfd-a053-ae1564414a9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071258Z:7116547c-2d27-48a5-a473-aeefc354ef66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cbc8ddd8d01eec40913ad9a158c7ef5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2c70b20d-5bbb-472e-a1a5-31539070ffd6", + "x-ms-client-request-id": "6cbc8ddd8d01eec40913ad9a158c7ef5", + "x-ms-correlation-request-id": "50a9a52b-5dcc-486d-a744-88577fa138c2", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "d974e44e-3097-4e7d-a2dd-764d34f66e00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071300Z:50a9a52b-5dcc-486d-a744-88577fa138c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8eda6d58b86a92c7033192ee490bc446", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c56b147-dcd8-480e-8db9-0633309665a5", + "x-ms-client-request-id": "8eda6d58b86a92c7033192ee490bc446", + "x-ms-correlation-request-id": "88671576-9204-4c2b-b68c-d7c310dd6781", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "09bc22b9-9aee-49f6-9d73-d918483c82d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071301Z:88671576-9204-4c2b-b68c-d7c310dd6781" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8389e4be7ed29fb1f678ab416c728a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7876049a-63ff-41fc-affc-ce430c58df2c", + "x-ms-client-request-id": "a8389e4be7ed29fb1f678ab416c728a0", + "x-ms-correlation-request-id": "8929c57f-34ed-4e71-b76f-c90ed6406a90", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "4664c57f-a916-481c-864d-d99ce7d72344", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071302Z:8929c57f-34ed-4e71-b76f-c90ed6406a90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "200fb3e68ff12443c52968d0fbd5a5fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "396128fc-0bb7-496a-a6fd-28c481c25bdc", + "x-ms-client-request-id": "200fb3e68ff12443c52968d0fbd5a5fd", + "x-ms-correlation-request-id": "699fa6e8-d0aa-40fc-bbd7-da1ab479f265", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "139cbc8b-2447-48b2-948b-66402bfe1695", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071304Z:699fa6e8-d0aa-40fc-bbd7-da1ab479f265" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "774f674ed554700872b06e032d137c3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "faf50e4e-3159-469c-936e-8be49fad900e", + "x-ms-client-request-id": "774f674ed554700872b06e032d137c3c", + "x-ms-correlation-request-id": "5ffb6176-36c4-46f0-98ba-70388645aa15", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "ac9c891e-66c9-49a6-824f-bdf7e9c41e08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071305Z:5ffb6176-36c4-46f0-98ba-70388645aa15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9508f108a4fcbc545b13e2c37e2a2d4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc8af37c-e366-4f03-89ef-2d91d5c9a043", + "x-ms-client-request-id": "9508f108a4fcbc545b13e2c37e2a2d4a", + "x-ms-correlation-request-id": "d8dcb760-c25d-4ac9-ac13-c15cf7ab3eef", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "aed4b126-5728-4ade-8e35-5ca185891424", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071306Z:d8dcb760-c25d-4ac9-ac13-c15cf7ab3eef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af658dc1b078104cab9fad40203ff6b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b849a4f9-faa8-4a20-976e-89a8d0d5ffd8", + "x-ms-client-request-id": "af658dc1b078104cab9fad40203ff6b2", + "x-ms-correlation-request-id": "fc07acda-65e9-463e-a9aa-0642381b5cc4", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "544a11e2-0ad4-4427-b634-da1883bf83c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071307Z:fc07acda-65e9-463e-a9aa-0642381b5cc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09c72cac0fcdaa0012931c40f245f247", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea969f27-e302-4e51-aecf-1baebf6843a6", + "x-ms-client-request-id": "09c72cac0fcdaa0012931c40f245f247", + "x-ms-correlation-request-id": "0f593fcb-4436-4eb5-af4c-6577a578f0ff", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "5bc81093-aa0d-4e9f-a5f1-564e99927440", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071309Z:0f593fcb-4436-4eb5-af4c-6577a578f0ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0412483cdad58c3a5f7ea5df6149b1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9b07b05-32e0-4a5e-a6ae-c6684a5256e3", + "x-ms-client-request-id": "a0412483cdad58c3a5f7ea5df6149b1b", + "x-ms-correlation-request-id": "57470e95-ebdd-459d-ae71-5a976871778f", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "7965bbca-681f-4e07-b909-87779d0b78ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071310Z:57470e95-ebdd-459d-ae71-5a976871778f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5116301d2463b17c8cbb9de5930c1d66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c45c5473-d119-4b4e-acb7-ad2f32c6e601", + "x-ms-client-request-id": "5116301d2463b17c8cbb9de5930c1d66", + "x-ms-correlation-request-id": "c128d5ad-e7ed-4cad-934d-574a4dfaebff", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "3775c63a-da2c-4bb3-9554-29da8dba0ee1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071311Z:c128d5ad-e7ed-4cad-934d-574a4dfaebff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcbd66ad56fddf05696e64d525a3b3fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4db32ab4-8c13-4155-a3a3-df061d41ba98", + "x-ms-client-request-id": "fcbd66ad56fddf05696e64d525a3b3fd", + "x-ms-correlation-request-id": "58669788-0f1e-41c9-a3e4-b3ba71f92435", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "a3f6bb67-b4b9-4bcb-86e9-636afff5719e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071313Z:58669788-0f1e-41c9-a3e4-b3ba71f92435" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c22201f7a02e5ee3a79013f130dec499", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "016098b5-5f2a-4256-923e-67de9a19cb46", + "x-ms-client-request-id": "c22201f7a02e5ee3a79013f130dec499", + "x-ms-correlation-request-id": "9cd418cf-8f48-41ae-9974-9146c998ab6d", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "5db91eb5-e9b7-4b9b-aefa-e05d05698e51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071314Z:9cd418cf-8f48-41ae-9974-9146c998ab6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fb084da9e56c71d2b37e8f4bfa68ce8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "781250dc-7e86-4536-b4f3-2af2052c85b5", + "x-ms-client-request-id": "8fb084da9e56c71d2b37e8f4bfa68ce8", + "x-ms-correlation-request-id": "a2448020-3417-4ccb-87a1-7a59b43abbaa", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "87c4e9e1-c647-4947-a61e-b6471642d3fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071315Z:a2448020-3417-4ccb-87a1-7a59b43abbaa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92ed9f075be90c37835e556d4213ae8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bc0fdaf-f2eb-4a41-9dd9-d9413254ade6", + "x-ms-client-request-id": "92ed9f075be90c37835e556d4213ae8a", + "x-ms-correlation-request-id": "a8d3a34f-df22-49bd-bda9-5f6506b8b7d4", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "9a06d192-1ea3-4be1-805c-8790e701e6d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071316Z:a8d3a34f-df22-49bd-bda9-5f6506b8b7d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1fbcba923f359a6e35b96f6b7ee9f00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ff86eb1-7c2f-4161-bcd6-5a389742e7a6", + "x-ms-client-request-id": "a1fbcba923f359a6e35b96f6b7ee9f00", + "x-ms-correlation-request-id": "b640ff5b-06a9-4161-9741-78a9c9697a2c", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "c2ac5dbc-88cb-46d8-b134-7d5f2b32bfde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071318Z:b640ff5b-06a9-4161-9741-78a9c9697a2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91e92a0332f07eaf4ca30cf849af8418", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83c93fa6-5044-4cf6-a0c6-75fe0b832e16", + "x-ms-client-request-id": "91e92a0332f07eaf4ca30cf849af8418", + "x-ms-correlation-request-id": "944ffd0f-b0eb-4ab1-bdc3-245e5683bfbb", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "b1162e32-549a-4d09-9210-4452f1eccd16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071319Z:944ffd0f-b0eb-4ab1-bdc3-245e5683bfbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f44a5e88ebabe3f5f894ae8dc4405594", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eddf5fb4-6146-4ad1-9cc7-278b6502075b", + "x-ms-client-request-id": "f44a5e88ebabe3f5f894ae8dc4405594", + "x-ms-correlation-request-id": "6b3e094b-340b-4e2d-890c-d2b008c102a1", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "5ec494bb-d2c7-4bfa-9d16-be283242e0f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071320Z:6b3e094b-340b-4e2d-890c-d2b008c102a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "176a54bf1d29779a1b7c545017ae0f34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d1b00f1f-08bb-4e28-a7e2-c5cfa636be1f", + "x-ms-client-request-id": "176a54bf1d29779a1b7c545017ae0f34", + "x-ms-correlation-request-id": "954dfd00-c59c-4e22-a2b9-ce24edff56ed", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "329c6c2f-36b5-4279-81b6-da18370d3111", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071321Z:954dfd00-c59c-4e22-a2b9-ce24edff56ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "596d7ed6aba418553506985b8422ba0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "429807d1-422b-42a1-964e-d3cf688f3d03", + "x-ms-client-request-id": "596d7ed6aba418553506985b8422ba0b", + "x-ms-correlation-request-id": "08df6aa2-018b-4295-9be8-989c42500472", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "3a98d4df-9494-4f70-9d6f-0da1c6c27bc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071323Z:08df6aa2-018b-4295-9be8-989c42500472" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f538784d6d456beec3d3d82e96a4cc4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2c78728f-635c-44ce-ac7d-d91b173989d7", + "x-ms-client-request-id": "f538784d6d456beec3d3d82e96a4cc4a", + "x-ms-correlation-request-id": "195d9c84-aba1-4850-aa65-23863e2212d4", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "66de4a6e-43bf-4680-aa8b-2965cd8ac976", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071324Z:195d9c84-aba1-4850-aa65-23863e2212d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45b67a85fcd314f0fe51e123843ef3f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f34da72a-8cf5-4284-900f-780f9a05a081", + "x-ms-client-request-id": "45b67a85fcd314f0fe51e123843ef3f9", + "x-ms-correlation-request-id": "0dd295e3-9c24-4d45-993e-e39f7103cd84", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "ff55728c-37a3-4116-b971-754a2056270e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071325Z:0dd295e3-9c24-4d45-993e-e39f7103cd84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e0248c2197569ee8f0295d0d3268190", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25daf77a-c59c-457a-a1bc-21a1c7bb5470", + "x-ms-client-request-id": "9e0248c2197569ee8f0295d0d3268190", + "x-ms-correlation-request-id": "db6718b7-11fc-4dce-9ea2-1e10fb29e00b", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "60c03d85-da8d-4487-9be1-be5bd967e38c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071327Z:db6718b7-11fc-4dce-9ea2-1e10fb29e00b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09d64e39746b51388824f6f38bcbe684", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db7aaa01-9853-4bbe-851b-25c6eb074dfc", + "x-ms-client-request-id": "09d64e39746b51388824f6f38bcbe684", + "x-ms-correlation-request-id": "33bf0b18-737a-4724-a89e-2fb520d2e1d6", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "fbcb490f-a7f4-41da-8aa5-70f0c2c98b92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071328Z:33bf0b18-737a-4724-a89e-2fb520d2e1d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e6cdee02ea26bd48b4db6d0661f41d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad1b6bd2-748e-4796-9673-94d3df9b67fa", + "x-ms-client-request-id": "4e6cdee02ea26bd48b4db6d0661f41d8", + "x-ms-correlation-request-id": "877a4e14-db33-4b4b-83b7-ea54effb1473", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "77d371be-c94e-4b6e-82f6-dbf83edbaffe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071329Z:877a4e14-db33-4b4b-83b7-ea54effb1473" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36e950d0e9684d8e10b1165023faddc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89075a97-df99-4fcd-9220-ca4352c24dce", + "x-ms-client-request-id": "36e950d0e9684d8e10b1165023faddc4", + "x-ms-correlation-request-id": "06d659ee-4933-474b-a2fb-9827e1e29164", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "5027c7f9-6264-4e07-86a3-1bf57771db76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071330Z:06d659ee-4933-474b-a2fb-9827e1e29164" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4f0101b33b90bee796a7d1ebe67ea68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02571efa-b39a-4782-aefa-60f1ab18d99c", + "x-ms-client-request-id": "f4f0101b33b90bee796a7d1ebe67ea68", + "x-ms-correlation-request-id": "8a67e158-e379-40a4-a8c0-b59cb16719ba", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "6cf0eace-0515-49c1-a230-d5c2b0127000", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071332Z:8a67e158-e379-40a4-a8c0-b59cb16719ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a231ee3b0e1f61c4f1f3df117834891", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6ec8249-bd4d-42e6-afa0-15a69f245662", + "x-ms-client-request-id": "3a231ee3b0e1f61c4f1f3df117834891", + "x-ms-correlation-request-id": "76fe4741-b6d4-4fc6-93f7-fbe9e4a41883", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "7347c0af-0050-4fda-a66a-a40ca92ef517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071333Z:76fe4741-b6d4-4fc6-93f7-fbe9e4a41883" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55b5f16f4c2f9c1e62debcfd6b708fa8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b7b3eb9e-ef78-4700-876e-6f81f91df33e", + "x-ms-client-request-id": "55b5f16f4c2f9c1e62debcfd6b708fa8", + "x-ms-correlation-request-id": "362aa425-6c91-4d06-88f2-85ec9dd3853d", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "a5447fa4-9681-4d18-a9e9-a40acb0d21a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071334Z:362aa425-6c91-4d06-88f2-85ec9dd3853d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "056dadc6a3d66ae2f4f9a49af5fdf3f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa8443c7-7502-4255-a008-b26727f99739", + "x-ms-client-request-id": "056dadc6a3d66ae2f4f9a49af5fdf3f5", + "x-ms-correlation-request-id": "1f347eba-3c7e-4704-b941-3f97428a56ca", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "eeb08aff-7ec6-4d09-b7e3-5e01ea18ab0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071336Z:1f347eba-3c7e-4704-b941-3f97428a56ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccaeec2295b29739ff86d803f31e8bdf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c65cbab8-03db-47ae-b977-609adc3d8dad", + "x-ms-client-request-id": "ccaeec2295b29739ff86d803f31e8bdf", + "x-ms-correlation-request-id": "e814cf4d-cf08-48ba-aed6-fa0d71da71cc", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "9bdc99d7-ebbe-486f-b5ec-4e1bddb03344", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071337Z:e814cf4d-cf08-48ba-aed6-fa0d71da71cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a2a958f4216ccba0e4a6035a783a765", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f3ad621-8f40-4371-9e8c-d164319fdc08", + "x-ms-client-request-id": "6a2a958f4216ccba0e4a6035a783a765", + "x-ms-correlation-request-id": "582cd901-2309-48e1-bc72-c26322871732", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "f1fde6f2-2ddb-41c2-888b-eebb0ff63fc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071338Z:582cd901-2309-48e1-bc72-c26322871732" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fdac7eac2c131f673d50550cbdf76d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8656c380-ab09-4cda-b3e3-569274854fe7", + "x-ms-client-request-id": "7fdac7eac2c131f673d50550cbdf76d6", + "x-ms-correlation-request-id": "1e48495f-bda9-43e3-bc82-b3efdd2b815e", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "e08f32ac-475a-443f-a4fc-46d92871a80c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071339Z:1e48495f-bda9-43e3-bc82-b3efdd2b815e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "600ac56e88d2e0de31e2be673404ef7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "24289a87-ba2e-4218-aad2-ac788a011804", + "x-ms-client-request-id": "600ac56e88d2e0de31e2be673404ef7b", + "x-ms-correlation-request-id": "fcedfb0a-b46b-4535-8a2c-53651443c43d", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "95c4cab4-1bfa-431d-8a06-f4d7c9c4873d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071341Z:fcedfb0a-b46b-4535-8a2c-53651443c43d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c1872df0b43cd1e9ef9f7403d6a002e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a47f563-602e-4cd1-977d-ea1b56111ff7", + "x-ms-client-request-id": "2c1872df0b43cd1e9ef9f7403d6a002e", + "x-ms-correlation-request-id": "c7ccf82a-2639-4c20-898a-f8384ca71e77", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "fd8116dc-dab2-4f9d-b260-9110cd2dd2ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071342Z:c7ccf82a-2639-4c20-898a-f8384ca71e77" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2c68ad346796192e8fa4dde038efd6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b3d840f-4288-4aa5-9fff-bbab18cdbe58", + "x-ms-client-request-id": "e2c68ad346796192e8fa4dde038efd6e", + "x-ms-correlation-request-id": "4b8c546f-f594-42c8-838e-083125ada2ff", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "fcb3f173-62a3-4c68-a8b4-fce4a523515f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071343Z:4b8c546f-f594-42c8-838e-083125ada2ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "587089e64ac76293a73cc1d9919da2c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "671ed51a-e8c2-460d-830f-a872ae82df7f", + "x-ms-client-request-id": "587089e64ac76293a73cc1d9919da2c7", + "x-ms-correlation-request-id": "dcb5ff48-e3bf-4999-becb-58c6f4d26909", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "11890881-55a5-4a38-85d9-d3503d22e78f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071345Z:dcb5ff48-e3bf-4999-becb-58c6f4d26909" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a9938fe10c3d9802e0b64448be3fc910", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25bd0d16-04ac-42b2-9cd8-accb35d19c58", + "x-ms-client-request-id": "a9938fe10c3d9802e0b64448be3fc910", + "x-ms-correlation-request-id": "95280702-c0d8-4651-8f72-7526df228208", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "4934459a-ad5d-41e1-9b0c-35c280d311b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071346Z:95280702-c0d8-4651-8f72-7526df228208" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b35a88fba8f98967f7643b3c85b9d04a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae600622-0992-4d3b-8990-d00bad8909bd", + "x-ms-client-request-id": "b35a88fba8f98967f7643b3c85b9d04a", + "x-ms-correlation-request-id": "9bcc26b0-bd58-4902-a743-ec8c465267b9", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "a4fdcdfa-6049-4308-ae2f-6d676631646c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071347Z:9bcc26b0-bd58-4902-a743-ec8c465267b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74fd865753fbd93187d87810054aa467", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4d895a1-e8b1-431d-9cc5-3fb8cef9ab11", + "x-ms-client-request-id": "74fd865753fbd93187d87810054aa467", + "x-ms-correlation-request-id": "e52fb9da-d82d-413e-b4a9-648363fd36e6", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "46c67729-8ef4-40e9-9559-79a1624b28a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071348Z:e52fb9da-d82d-413e-b4a9-648363fd36e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09ddb173ef4339cd2709b2d9d1c61226", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77a7fee0-2535-4482-b24b-2fb8acfa3550", + "x-ms-client-request-id": "09ddb173ef4339cd2709b2d9d1c61226", + "x-ms-correlation-request-id": "3d0a1d9d-e163-4561-93fe-89af9231a185", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "82995570-bcda-4644-a5b9-1a84e903278c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071350Z:3d0a1d9d-e163-4561-93fe-89af9231a185" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37f0fae65542a81456812b212f5684ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78ebd217-4fc9-4678-8674-db7c9addee7b", + "x-ms-client-request-id": "37f0fae65542a81456812b212f5684ac", + "x-ms-correlation-request-id": "723c7d4f-203c-439f-8c60-a41916bc17ac", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "723d487b-d5c3-410b-991c-a970aa9d2c90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071351Z:723c7d4f-203c-439f-8c60-a41916bc17ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4c9d3bfc6db6806b9c34cf1a05707c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20c46615-0437-40a8-b37e-06da4f863f3d", + "x-ms-client-request-id": "d4c9d3bfc6db6806b9c34cf1a05707c0", + "x-ms-correlation-request-id": "f8e56e53-3a72-4f6d-aaa6-c7d724c12a0b", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "b64eafd9-23e5-402f-8d49-c30573a922a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071352Z:f8e56e53-3a72-4f6d-aaa6-c7d724c12a0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b2a51c56c5a1d259c34b2c2c3ab09d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee3c689f-3432-40c1-bf34-3a2d90147d6b", + "x-ms-client-request-id": "0b2a51c56c5a1d259c34b2c2c3ab09d1", + "x-ms-correlation-request-id": "51605f4a-b29b-49f4-9bef-c71df7edfee4", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "72f48a8b-8392-4786-a8fc-e2a48cdae28d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071353Z:51605f4a-b29b-49f4-9bef-c71df7edfee4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe1a05853efd1f4bf3887e7e082307ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48d21b5f-1c4c-4bff-9b2a-1d10b8461bae", + "x-ms-client-request-id": "fe1a05853efd1f4bf3887e7e082307ff", + "x-ms-correlation-request-id": "dc41d195-5889-4f34-9d61-da3555ffe7d0", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "25994b30-eda7-48f4-8882-9df646dc35f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071355Z:dc41d195-5889-4f34-9d61-da3555ffe7d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de5b6b79782c5252adab37a61344a40d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7067ce38-bb1b-4060-99c6-85a60e76ac01", + "x-ms-client-request-id": "de5b6b79782c5252adab37a61344a40d", + "x-ms-correlation-request-id": "835202bd-eb49-40e9-83cb-bbf142651aab", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "a0071b93-2d6d-424f-8940-cd8706e249bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071356Z:835202bd-eb49-40e9-83cb-bbf142651aab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a6b7bba093d86c3060b18d1eea71479", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fcf3afa8-0b53-4a9f-b2ed-f3e42c524249", + "x-ms-client-request-id": "9a6b7bba093d86c3060b18d1eea71479", + "x-ms-correlation-request-id": "95c83c10-1017-4d70-a1ae-a5d0ddb3caab", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "3f2bd8e4-b1ac-4b77-96be-abb162964634", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071357Z:95c83c10-1017-4d70-a1ae-a5d0ddb3caab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5849b32c2a500ca4b3c7505206a40bae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:13:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8228539-be58-4bd4-8943-3f6d8b3a3982", + "x-ms-client-request-id": "5849b32c2a500ca4b3c7505206a40bae", + "x-ms-correlation-request-id": "ba6d3d83-ffb2-48f8-93e2-44fd49e23ee2", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "03fa07dc-9332-457f-9a57-a31cee3133f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071359Z:ba6d3d83-ffb2-48f8-93e2-44fd49e23ee2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8dc470e46db76fc2a7d4d82160806406", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "649be375-3413-44bd-8179-d3e1d3c24abb", + "x-ms-client-request-id": "8dc470e46db76fc2a7d4d82160806406", + "x-ms-correlation-request-id": "bd78cebd-ba3d-46a9-9e7c-8817ac192301", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "27d0b1fd-b83c-451a-8f49-23b80edf3f6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071400Z:bd78cebd-ba3d-46a9-9e7c-8817ac192301" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6079be964bfb8fbdd65ee775b9718061", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94d2b0a0-0de2-422b-937c-561b36d67d55", + "x-ms-client-request-id": "6079be964bfb8fbdd65ee775b9718061", + "x-ms-correlation-request-id": "507128b2-221a-4b17-bdf0-d273f689b878", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "1f885736-68c1-41a8-b1d0-280e1b024aea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071401Z:507128b2-221a-4b17-bdf0-d273f689b878" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ded69ff87e3bfc1f0d9b07b5283ac32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1be41b1d-43ad-404f-9174-4cb652d9d6fb", + "x-ms-client-request-id": "7ded69ff87e3bfc1f0d9b07b5283ac32", + "x-ms-correlation-request-id": "0ab9c06c-d17f-4477-93d4-aa0788f55221", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "14796303-530a-4531-ac32-bc3d4e1f7255", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071403Z:0ab9c06c-d17f-4477-93d4-aa0788f55221" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47bb4a62aa2a98b3b335b658854cb636", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c6da9b0-a43d-4d4d-adcb-6b6a834b0562", + "x-ms-client-request-id": "47bb4a62aa2a98b3b335b658854cb636", + "x-ms-correlation-request-id": "610ff962-c265-454d-bfab-e105431c8f1f", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "d194350d-97c0-47f1-acf5-e20a08250b97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071404Z:610ff962-c265-454d-bfab-e105431c8f1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6217654e6930e23fdb970219a423c52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be281da2-2fd2-45ee-92cc-f914ced305a3", + "x-ms-client-request-id": "f6217654e6930e23fdb970219a423c52", + "x-ms-correlation-request-id": "c4e0ce19-98e3-40cd-9ec6-732d363ee8d4", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "a7a72ac2-184f-42e1-ab6d-7308ed5e3148", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071405Z:c4e0ce19-98e3-40cd-9ec6-732d363ee8d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e12b5b238b55436b654c9add0683aa3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27f29e4b-fc07-4858-9667-43f19eeba8fd", + "x-ms-client-request-id": "6e12b5b238b55436b654c9add0683aa3", + "x-ms-correlation-request-id": "f241ca05-f734-422d-818d-1ab1f382682e", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "4a50b72d-5dfe-4701-bbe2-8236a5c0e05d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071406Z:f241ca05-f734-422d-818d-1ab1f382682e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc267a23b5627c9e27ac4a713a91fd71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72c89adc-4a0a-4098-a84f-d157659d1695", + "x-ms-client-request-id": "dc267a23b5627c9e27ac4a713a91fd71", + "x-ms-correlation-request-id": "5ba0f39e-85bf-46c2-9769-96286729d4d1", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "89b4e08f-f0d7-49a9-901d-7918cb0c65dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071408Z:5ba0f39e-85bf-46c2-9769-96286729d4d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0a664f847391c8140cd403e1c753e94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f038520-b44c-4a58-9003-9419a02d72b0", + "x-ms-client-request-id": "d0a664f847391c8140cd403e1c753e94", + "x-ms-correlation-request-id": "16b74b3a-c8e2-40ab-9ae2-2173a28d6a3c", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "63ac0576-8002-4efe-a0b7-51d49f319562", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071409Z:16b74b3a-c8e2-40ab-9ae2-2173a28d6a3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20fdcc7f601bfcf016964708edc51a24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "195ee357-e36b-4e6b-91cf-458d8f074a92", + "x-ms-client-request-id": "20fdcc7f601bfcf016964708edc51a24", + "x-ms-correlation-request-id": "cc66225f-446d-4800-b2d9-3d9b4c7e0a86", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "ee25d0de-4fdd-422d-b8aa-92ed2d94b500", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071410Z:cc66225f-446d-4800-b2d9-3d9b4c7e0a86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6cb558576ac2dc69f9099b9574605fb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "644b4267-b990-48b7-8238-167dfcd84d99", + "x-ms-client-request-id": "6cb558576ac2dc69f9099b9574605fb2", + "x-ms-correlation-request-id": "f72798e4-24de-47e8-88eb-c6870cc3dcc9", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "126fa6ee-9764-49b8-8f8e-76350684084e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071412Z:f72798e4-24de-47e8-88eb-c6870cc3dcc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6df1b56edd93985573a9b9a300782e7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb429323-7acf-41b7-bb52-96e1b8d5220d", + "x-ms-client-request-id": "6df1b56edd93985573a9b9a300782e7a", + "x-ms-correlation-request-id": "9501e139-5642-45c0-a2dd-c542d1a28c7d", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "efee1f0e-b294-4121-9d71-9d514f03b735", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071413Z:9501e139-5642-45c0-a2dd-c542d1a28c7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4e71bb3d1bf14d263212712c45b88b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "befa7a3f-e859-42a3-9380-8f2e5ffe6210", + "x-ms-client-request-id": "c4e71bb3d1bf14d263212712c45b88b6", + "x-ms-correlation-request-id": "66a3e11a-696d-46bc-9682-2d567ae98967", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "33fa687f-9cd2-42af-803a-a4effb4d148e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071415Z:66a3e11a-696d-46bc-9682-2d567ae98967" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "389a9537acd37990021df818b1c6dc80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0326cc4-ca7e-485f-8a48-d29b8ea11b4b", + "x-ms-client-request-id": "389a9537acd37990021df818b1c6dc80", + "x-ms-correlation-request-id": "3b4b3a68-0934-4ce6-b323-6281ea530ff1", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "721b459a-6bf5-4fcc-95f1-b60b1d5ad24d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071416Z:3b4b3a68-0934-4ce6-b323-6281ea530ff1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58e121da9a799cf2e2dc0a72b643d318", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4c0c4d2-6dde-46d9-9355-bcd402534720", + "x-ms-client-request-id": "58e121da9a799cf2e2dc0a72b643d318", + "x-ms-correlation-request-id": "1b87393a-c369-4162-8721-482ef30d340a", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "df532705-ba4e-455c-9c2c-b3818c1e8b72", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071417Z:1b87393a-c369-4162-8721-482ef30d340a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a6b0321f6dd06a78b6dc2a2d9ba639c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f9b9fb1-a85b-4701-941f-a2bf7bfc78cb", + "x-ms-client-request-id": "6a6b0321f6dd06a78b6dc2a2d9ba639c", + "x-ms-correlation-request-id": "8390bfa5-744f-4335-9dfc-1d278824404b", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "d97d5ccd-7aa7-4a51-a336-a392639635a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071418Z:8390bfa5-744f-4335-9dfc-1d278824404b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a337a6452f799d3da2fe55f6a11ec3be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9684d0f-352a-4e8b-b6f2-b46237b37bf3", + "x-ms-client-request-id": "a337a6452f799d3da2fe55f6a11ec3be", + "x-ms-correlation-request-id": "8f7a5846-2c1f-4f46-a940-d62adc258c42", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "e3ff7fd2-2db3-4903-86a3-fd7db6b4d47b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071420Z:8f7a5846-2c1f-4f46-a940-d62adc258c42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "adf7df49715ae4a37adbcd0bd850c327", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6358ac6-24be-4716-ad43-b880a56a3ae1", + "x-ms-client-request-id": "adf7df49715ae4a37adbcd0bd850c327", + "x-ms-correlation-request-id": "abcb756d-091f-43f4-ad9a-691c02520a4d", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "30b13512-5e84-4a54-9c1a-f1f0a461c84e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071421Z:abcb756d-091f-43f4-ad9a-691c02520a4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f2d6e79300cf29fc6cec8dfa0b0656c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e704379-62ca-4b52-8a67-6744784b2c1a", + "x-ms-client-request-id": "0f2d6e79300cf29fc6cec8dfa0b0656c", + "x-ms-correlation-request-id": "5f058c22-9b8f-4f7a-8a01-e1d5ba236c22", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "a92a9b85-75e5-4d91-969b-3a5a20b32c7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071422Z:5f058c22-9b8f-4f7a-8a01-e1d5ba236c22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f95803a9b6c3d4410353299e6131c452", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a2af532-6749-40f7-9106-a3c579194b0a", + "x-ms-client-request-id": "f95803a9b6c3d4410353299e6131c452", + "x-ms-correlation-request-id": "db5c3256-d771-449b-b412-1114cd372f4c", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "7196dc46-d0b8-4911-bdfd-8aac3f1e715a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071423Z:db5c3256-d771-449b-b412-1114cd372f4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "337d2d3ab4f119b24005e78ca8c343c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae991c9a-f97f-47d3-97f8-4e4b5c68ecd8", + "x-ms-client-request-id": "337d2d3ab4f119b24005e78ca8c343c9", + "x-ms-correlation-request-id": "1f9aaf36-2327-4110-8d75-60edd371cd53", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "37ceb260-92b8-4a4a-a706-c047ee585b36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071425Z:1f9aaf36-2327-4110-8d75-60edd371cd53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4616076c9f7c2642c580cb906009094", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "197ec2be-ce7c-4c7a-b56e-7965ff7332fd", + "x-ms-client-request-id": "d4616076c9f7c2642c580cb906009094", + "x-ms-correlation-request-id": "0fb18d89-89ca-4cc8-8bbc-6224d29aea27", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "acd17d4f-ea98-451c-bca4-86abedff0d86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071426Z:0fb18d89-89ca-4cc8-8bbc-6224d29aea27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72a475093133f57b503fb8beceb42b3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a95aeaee-8784-41fb-a32f-f94b4d870335", + "x-ms-client-request-id": "72a475093133f57b503fb8beceb42b3f", + "x-ms-correlation-request-id": "e99c0a9b-f8f0-4bc9-b658-c85fcf916d83", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "a86ab5df-3c76-4f89-9290-ce674e5a9a1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071427Z:e99c0a9b-f8f0-4bc9-b658-c85fcf916d83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00285f0fefcf715ac9ba0698a7f91240", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ef9718d-de0c-4fcb-b501-8290f648cdb0", + "x-ms-client-request-id": "00285f0fefcf715ac9ba0698a7f91240", + "x-ms-correlation-request-id": "89676d0b-72f2-41c3-88c4-6951899a49ad", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "6864b662-0b94-4850-a3a0-180f3c94280f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071429Z:89676d0b-72f2-41c3-88c4-6951899a49ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32835374d01e4496e56c84b810a6f477", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cfa6415d-942b-43f3-887a-a77512c401ae", + "x-ms-client-request-id": "32835374d01e4496e56c84b810a6f477", + "x-ms-correlation-request-id": "cd5ed529-0913-4f02-8c44-6fcb813c448a", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "57cff372-57bb-4992-ac62-ae204aeef4d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071430Z:cd5ed529-0913-4f02-8c44-6fcb813c448a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7a9cc2d90d819c41b33a9782ae34d57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48f67047-c0c9-4d49-84fe-08a3fd2ff47d", + "x-ms-client-request-id": "a7a9cc2d90d819c41b33a9782ae34d57", + "x-ms-correlation-request-id": "e7e9ff16-909a-4e6b-b90f-fe82831f9459", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "60aa5e76-efad-4ef9-b683-304aeb8cf1d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071431Z:e7e9ff16-909a-4e6b-b90f-fe82831f9459" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b49782cf8313f20c9e31b636ba26022", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4596acc0-5d12-43f4-8c12-b519b88b24e8", + "x-ms-client-request-id": "7b49782cf8313f20c9e31b636ba26022", + "x-ms-correlation-request-id": "39feabf7-eb75-451a-9302-5fcf7ee1d629", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "1231bba4-6f12-4dbc-b308-b9de2c25eea9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071432Z:39feabf7-eb75-451a-9302-5fcf7ee1d629" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db6b8fc56b50e4678e6917eb261d1a02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "088cd8b9-36d8-49c5-a7b7-186f5ccf0413", + "x-ms-client-request-id": "db6b8fc56b50e4678e6917eb261d1a02", + "x-ms-correlation-request-id": "3d1bf8fc-0508-454e-bbe6-79c2886ac5bb", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "0eed36d1-c53c-4400-8ac0-6292431b25b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071434Z:3d1bf8fc-0508-454e-bbe6-79c2886ac5bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "988c2c1e795d3445ab6addf47460ad78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e7e3059-6a71-47f4-b892-2a57f8521013", + "x-ms-client-request-id": "988c2c1e795d3445ab6addf47460ad78", + "x-ms-correlation-request-id": "657621cc-572b-443e-8b47-bcd1b788648c", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "51a08b63-a30f-4ac7-ab25-4f4ea2656b36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071435Z:657621cc-572b-443e-8b47-bcd1b788648c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bb287d27277c1071164ecc8e03518ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e1bd2bf-441f-41a1-b1df-3220a0932c22", + "x-ms-client-request-id": "9bb287d27277c1071164ecc8e03518ab", + "x-ms-correlation-request-id": "05e82cc3-aaa4-45fd-9d52-db050e6361c5", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "42ae485f-0355-4eae-a851-ff12002f52f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071436Z:05e82cc3-aaa4-45fd-9d52-db050e6361c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e4518c9c8164cc549362fe58d726f2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87dd6626-291c-43d8-8bcb-7c289c1e766e", + "x-ms-client-request-id": "3e4518c9c8164cc549362fe58d726f2d", + "x-ms-correlation-request-id": "a60e21c3-0375-4724-8d84-96a7aef8e8ba", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "503d6fc0-1071-4420-9dee-6441814ebc5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071437Z:a60e21c3-0375-4724-8d84-96a7aef8e8ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f189ebb7e6bab8a25cb87f88c7d5376", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f4abf5b-17da-4c68-b578-99dcb4ab2d4b", + "x-ms-client-request-id": "9f189ebb7e6bab8a25cb87f88c7d5376", + "x-ms-correlation-request-id": "1454f81c-8063-4acb-8ce2-394f8793d424", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "1656d322-5c29-492a-a9e1-551fa4695a34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071439Z:1454f81c-8063-4acb-8ce2-394f8793d424" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c2b32516f1b0a62c26651414321339e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ce9d73a-ab95-4ac8-86c4-998d504382a7", + "x-ms-client-request-id": "5c2b32516f1b0a62c26651414321339e", + "x-ms-correlation-request-id": "944c2a20-5443-4d64-9b09-f47c054f4f56", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "27c2a787-a3e8-411f-8305-b5f82b1adbca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071440Z:944c2a20-5443-4d64-9b09-f47c054f4f56" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "410cbff5781d4a408e9a184b40ccc0cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84089ca1-35e3-4b1e-ab1e-7337a764eb2d", + "x-ms-client-request-id": "410cbff5781d4a408e9a184b40ccc0cc", + "x-ms-correlation-request-id": "f600eb8b-a159-4bdf-b170-5ed80adebd55", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "1fcafbbf-e26a-4719-884a-12d44fc572b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071441Z:f600eb8b-a159-4bdf-b170-5ed80adebd55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b94b9e213474c123c0ddd052d496704", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c273ae0b-9172-4713-a5bc-ec8a59bab2ed", + "x-ms-client-request-id": "5b94b9e213474c123c0ddd052d496704", + "x-ms-correlation-request-id": "e7dee01a-4fee-43f6-b6eb-7926453756dc", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "e9a6291b-7e2f-4d3b-a4d2-ab13ed07f7af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071442Z:e7dee01a-4fee-43f6-b6eb-7926453756dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd03e8971170d959f2e0cd805617c9f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d12a4a96-1507-470f-8d4b-727c2bbe0677", + "x-ms-client-request-id": "cd03e8971170d959f2e0cd805617c9f5", + "x-ms-correlation-request-id": "00d27654-e6db-4131-8420-7e16e25461d6", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "fdcc4c99-bc63-4b26-a12a-f05bb17c8c7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071444Z:00d27654-e6db-4131-8420-7e16e25461d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a5e85a5d88de157acc0050f9b3a1d45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31756035-fdd4-4885-a7ca-952c3cf067a8", + "x-ms-client-request-id": "8a5e85a5d88de157acc0050f9b3a1d45", + "x-ms-correlation-request-id": "2f01243a-1f28-455b-8182-a60904e84c4f", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "a8665c85-c14f-4127-ac7a-5e62b1ca754d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071445Z:2f01243a-1f28-455b-8182-a60904e84c4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58b31432f3c9d15b60ba68664591f624", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9571ceee-bad8-4642-bac6-f1e37ec5a5a9", + "x-ms-client-request-id": "58b31432f3c9d15b60ba68664591f624", + "x-ms-correlation-request-id": "c6f661e4-e33b-4e0b-8d7c-441bfb9854d0", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "477e598d-3aaf-482d-8280-fbfca8d76056", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071446Z:c6f661e4-e33b-4e0b-8d7c-441bfb9854d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a85fe843ddeabf77912120b00c493db7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48e4e592-56e8-452d-811d-e8806d6e9f15", + "x-ms-client-request-id": "a85fe843ddeabf77912120b00c493db7", + "x-ms-correlation-request-id": "3090f26b-8b4a-4ce3-b056-08eea722ccc8", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "57dccab1-a283-4f8f-82e2-573c9040b0bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071448Z:3090f26b-8b4a-4ce3-b056-08eea722ccc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "414d88c37163b22b298d2ad26ff19c1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ea08deb-6ea5-41f1-a2be-d1b1b3a311bf", + "x-ms-client-request-id": "414d88c37163b22b298d2ad26ff19c1b", + "x-ms-correlation-request-id": "a642b290-ea25-45c2-ad31-a844fe20a4c5", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "bb86987b-a5bc-4aec-a473-2eeae492c9c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071449Z:a642b290-ea25-45c2-ad31-a844fe20a4c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3cbe0ca74db555a9cf4c7a8d2abc416", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3aada94a-9545-490a-adea-2d9cf85c6fe0", + "x-ms-client-request-id": "b3cbe0ca74db555a9cf4c7a8d2abc416", + "x-ms-correlation-request-id": "aafa0fbb-6203-4f74-ad65-87743aa692b3", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "d1196b90-cd11-4875-a96a-eb747ff40364", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071450Z:aafa0fbb-6203-4f74-ad65-87743aa692b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bca2b17db444d2c0bcac7e5db3a54fa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "176bd750-24d8-4fa3-910f-9a94bb2e25bb", + "x-ms-client-request-id": "bca2b17db444d2c0bcac7e5db3a54fa0", + "x-ms-correlation-request-id": "a82a803a-ab1e-4dd2-ab7b-3019b962c473", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "8cc4795d-3b10-40c6-b0a3-b0f63eab5dff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071451Z:a82a803a-ab1e-4dd2-ab7b-3019b962c473" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2be605858a7d4edb2ef7a46faa83df7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d107e53a-9f94-4a4c-9b01-308f2c8c97f8", + "x-ms-client-request-id": "2be605858a7d4edb2ef7a46faa83df7d", + "x-ms-correlation-request-id": "dbe3a9a3-7023-44d1-a797-d7489d3c5c84", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "49f54fe2-7acb-404d-9969-6b18c70f74c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071453Z:dbe3a9a3-7023-44d1-a797-d7489d3c5c84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd5513c8df4e15d61ff9f62ff6fda2f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "189b7364-578e-4001-bb7c-3843294cf5fd", + "x-ms-client-request-id": "bd5513c8df4e15d61ff9f62ff6fda2f7", + "x-ms-correlation-request-id": "c9f86c94-abde-4cde-9030-cf0189739dbe", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "d046566f-988b-4f3c-bff0-6d82ae0457da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071454Z:c9f86c94-abde-4cde-9030-cf0189739dbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd2327a499c5f298d5538e4c0f512838", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b397e453-32b5-402a-9fd7-0dcc38315f0e", + "x-ms-client-request-id": "cd2327a499c5f298d5538e4c0f512838", + "x-ms-correlation-request-id": "4c08eea8-8504-4208-aaa3-3f8e9dc6b9a7", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "0daee278-2ffb-464e-bcd8-3ecac8909259", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071455Z:4c08eea8-8504-4208-aaa3-3f8e9dc6b9a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f9400cc9150a5512ed00b8493ac5830", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d331cbc6-fe36-4e9d-b371-c2ba66b109c7", + "x-ms-client-request-id": "9f9400cc9150a5512ed00b8493ac5830", + "x-ms-correlation-request-id": "df21db4e-0c16-4f32-a6fd-05db2771b63d", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "3cfa3dea-c3e9-454f-8649-a92588705360", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071457Z:df21db4e-0c16-4f32-a6fd-05db2771b63d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82cbad5512602fb87a62e7fa508a05ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4082cb7-18d2-4766-90d0-f6f697ab3f55", + "x-ms-client-request-id": "82cbad5512602fb87a62e7fa508a05ce", + "x-ms-correlation-request-id": "fb929c89-97da-4896-ad85-b34d716261a7", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "6b62f458-335b-4853-93cf-d6d12e31cfc8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071458Z:fb929c89-97da-4896-ad85-b34d716261a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f562bed1026812a7d57d9ff48d145e29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:14:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79ceb621-1fc3-4b96-800d-25f7391b1d03", + "x-ms-client-request-id": "f562bed1026812a7d57d9ff48d145e29", + "x-ms-correlation-request-id": "92396d03-aac3-4476-9b02-3407cbf12eab", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "b03b3075-810b-463b-8ce2-5f9e0b35b690", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071459Z:92396d03-aac3-4476-9b02-3407cbf12eab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62f75dfba585bad8486524eda95655a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca792461-901e-4234-9dd9-87702612fcbb", + "x-ms-client-request-id": "62f75dfba585bad8486524eda95655a4", + "x-ms-correlation-request-id": "d38fc6f0-cc66-4141-8c87-addca73908a0", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "f914724e-5896-40dc-8ba8-499d2c8cbde9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071501Z:d38fc6f0-cc66-4141-8c87-addca73908a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5b33cca624a52c706b8ade372c3a166", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b237707e-f48d-43dc-bb2f-e12bb2861d5f", + "x-ms-client-request-id": "d5b33cca624a52c706b8ade372c3a166", + "x-ms-correlation-request-id": "075f5f6d-3986-461e-91d9-28faa8abc136", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "8273fed5-6f89-4572-9c5f-ff7906743621", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071502Z:075f5f6d-3986-461e-91d9-28faa8abc136" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2ffbe04a3932b48e5a7ad03deb9687e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "523a6fa9-f902-4118-a7ef-8eeda780c910", + "x-ms-client-request-id": "f2ffbe04a3932b48e5a7ad03deb9687e", + "x-ms-correlation-request-id": "874de28f-037a-4aa2-971e-7238359186e7", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "0c6cc170-ba83-476e-903d-cc85c8bb639c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071504Z:874de28f-037a-4aa2-971e-7238359186e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "512afb28886198df96a45bcdf8f44784", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27f6ea77-f168-4bea-8d67-547827fb6e8b", + "x-ms-client-request-id": "512afb28886198df96a45bcdf8f44784", + "x-ms-correlation-request-id": "cae5d15a-8d0d-4451-b016-e7400f976017", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "8ecbfd3b-7422-4115-879c-45db0729fc5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071505Z:cae5d15a-8d0d-4451-b016-e7400f976017" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebe8bec462572611f487f0a2b5c4744c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "77446387-fc79-4af9-a633-11be06b1aaab", + "x-ms-client-request-id": "ebe8bec462572611f487f0a2b5c4744c", + "x-ms-correlation-request-id": "baeed9c8-a4a1-41d5-bb82-3d006ed660cf", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "cec9d12a-fde8-49a8-94d8-c128ee11e850", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071506Z:baeed9c8-a4a1-41d5-bb82-3d006ed660cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77bb2e4f4f997c05df675cee477b33f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "01376398-3989-4db7-9261-eab15999d77c", + "x-ms-client-request-id": "77bb2e4f4f997c05df675cee477b33f0", + "x-ms-correlation-request-id": "89d94420-675b-4443-ae53-636c63377efa", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "fee6c231-c070-42c3-b9da-414e72d50511", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071507Z:89d94420-675b-4443-ae53-636c63377efa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "203e29607dd1c527e9035cd9983ce2d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "487fae8c-b438-4370-ad89-21fb88aa648e", + "x-ms-client-request-id": "203e29607dd1c527e9035cd9983ce2d1", + "x-ms-correlation-request-id": "cc6cd797-4ad6-4256-a49b-ab17ce9d488e", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "60d8726b-af50-4290-9bc2-aa4d5da5f8b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071509Z:cc6cd797-4ad6-4256-a49b-ab17ce9d488e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c97d0f30cf3974eab86c0bf00522de78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e14922e8-34ae-4414-ad2e-808b7b2be6a6", + "x-ms-client-request-id": "c97d0f30cf3974eab86c0bf00522de78", + "x-ms-correlation-request-id": "91d8692e-86cb-434e-80e0-f6dea7691d5c", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "8e503bb6-72b5-44fe-99b5-a32754f6deae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071510Z:91d8692e-86cb-434e-80e0-f6dea7691d5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c41ff545385d27b07f58d96f32ce3a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2fe1aa97-520e-4beb-a995-af7a766956e3", + "x-ms-client-request-id": "8c41ff545385d27b07f58d96f32ce3a2", + "x-ms-correlation-request-id": "997a48bc-0cc7-4cb6-9eca-405701217d35", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "175cf3df-9ebb-4bdb-ac24-b2b0cc6c27f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071511Z:997a48bc-0cc7-4cb6-9eca-405701217d35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38be8a8469fd90b73eca67647237c0c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21fa687c-be0b-4e44-a870-feaa29808a36", + "x-ms-client-request-id": "38be8a8469fd90b73eca67647237c0c7", + "x-ms-correlation-request-id": "b1868f7e-b7d4-424d-824d-f856e137c4e8", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "c90cfc6e-a844-4dcc-a50d-97074cc287de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071513Z:b1868f7e-b7d4-424d-824d-f856e137c4e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9985e32456fadc4c94abc2444153818c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78c87db3-e4d8-4d82-ac72-3b4565450f62", + "x-ms-client-request-id": "9985e32456fadc4c94abc2444153818c", + "x-ms-correlation-request-id": "c6b2862a-e707-4593-92f1-7d85d34fd20e", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "6bd58157-134c-48ea-90df-4913efdcb7d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071514Z:c6b2862a-e707-4593-92f1-7d85d34fd20e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a6b6888a664ea7b47b14dbbec165fd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f82c103-a114-40d3-bd80-d876bf4bcc08", + "x-ms-client-request-id": "7a6b6888a664ea7b47b14dbbec165fd0", + "x-ms-correlation-request-id": "a42ef0c5-116a-4ea9-b3ad-67f75ab34c91", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "5c384a60-505e-4a09-a362-39c3c1306808", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071516Z:a42ef0c5-116a-4ea9-b3ad-67f75ab34c91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f72c6354aa62da83ee1a352a7724fea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b571143d-2012-4a01-a844-1d16e3a527b2", + "x-ms-client-request-id": "0f72c6354aa62da83ee1a352a7724fea", + "x-ms-correlation-request-id": "00a0fb30-4c45-4480-8fbd-45f4393a6e8d", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "d053b4e9-c728-4480-895a-fff71bb6e02e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071517Z:00a0fb30-4c45-4480-8fbd-45f4393a6e8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09dbdb4945cb7d62689a51490991f07e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78155781-9081-4564-adfe-5aa57f148f14", + "x-ms-client-request-id": "09dbdb4945cb7d62689a51490991f07e", + "x-ms-correlation-request-id": "6959e866-0717-4044-ac50-7488daaa6f58", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "700d0b48-4790-43ea-8f84-c252023238ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071519Z:6959e866-0717-4044-ac50-7488daaa6f58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b0ff24b72e13ee5c03e3c82032942d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea2ef96b-3376-49f3-a1ea-1f82ab2fc9cb", + "x-ms-client-request-id": "7b0ff24b72e13ee5c03e3c82032942d5", + "x-ms-correlation-request-id": "95ee7878-f8ac-4672-809e-4823c4f407fe", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "d40b71fd-3a95-4faa-b0be-07e1ec94dff3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071520Z:95ee7878-f8ac-4672-809e-4823c4f407fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10726262563aef0563f4a60bf95e23ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74bab103-4265-41d9-b67d-6b53fb84d0f5", + "x-ms-client-request-id": "10726262563aef0563f4a60bf95e23ad", + "x-ms-correlation-request-id": "af0fc186-1dfd-4b79-8792-e706d3e2e79b", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "4ebaec0a-918c-4f45-b8dd-c8cd30c1f508", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071521Z:af0fc186-1dfd-4b79-8792-e706d3e2e79b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b50625f1d363d609f59d498c09df7a3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "baaa30ab-48de-43b4-b3fd-b68aca35cc62", + "x-ms-client-request-id": "b50625f1d363d609f59d498c09df7a3f", + "x-ms-correlation-request-id": "9df39f92-f802-4586-ad04-dd86e63a4f8f", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "221014e4-3d7d-45b1-86e7-449e5ced22b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071522Z:9df39f92-f802-4586-ad04-dd86e63a4f8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7e77c57df1ff543ed1f17edcbd94461", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e99ee30f-16a4-4e23-88d2-5735ea89e5e0", + "x-ms-client-request-id": "a7e77c57df1ff543ed1f17edcbd94461", + "x-ms-correlation-request-id": "2b6d0048-e3db-440d-b682-3b845159a442", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "a70f0b17-0d2a-4e66-a55d-37d5b4924c8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071524Z:2b6d0048-e3db-440d-b682-3b845159a442" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd918e1a8d228e71599b1b9d0d78e683", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bec0b3ad-d45c-4b2b-ae2c-407febb5e803", + "x-ms-client-request-id": "dd918e1a8d228e71599b1b9d0d78e683", + "x-ms-correlation-request-id": "718f4710-2b9d-4b4e-a50a-02d87ec9c163", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "28256495-daac-4537-9db4-0672bff72ce9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071525Z:718f4710-2b9d-4b4e-a50a-02d87ec9c163" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7db4667a7c77118ee211c844bc1b0b1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b3ca7027-b69c-4893-8f27-e1ce1c3a6452", + "x-ms-client-request-id": "7db4667a7c77118ee211c844bc1b0b1b", + "x-ms-correlation-request-id": "45aa3726-f450-489e-8381-91f5374b1e57", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "9f742353-eb8c-41fb-823d-831c75fafbda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071526Z:45aa3726-f450-489e-8381-91f5374b1e57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a71e7589c4dca1c0a594e83c4a5e874", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc5fc034-3a6a-43bb-9506-22ffa5c8473a", + "x-ms-client-request-id": "7a71e7589c4dca1c0a594e83c4a5e874", + "x-ms-correlation-request-id": "54b8197c-8a9d-48cf-8fe9-ef41679a11f5", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "41af5914-a1e4-4e96-b502-61a40d6dffa1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071528Z:54b8197c-8a9d-48cf-8fe9-ef41679a11f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "64739338c6259eea0080fb11c52cd13d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f72183cc-685d-437d-9f0b-8d7b3cd6ca6f", + "x-ms-client-request-id": "64739338c6259eea0080fb11c52cd13d", + "x-ms-correlation-request-id": "be0d3192-e673-444a-9c31-89303803684c", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "f9f235d2-7d29-4197-9a09-61d5ba8f00a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071529Z:be0d3192-e673-444a-9c31-89303803684c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2544ff906c06dd354ae9721e2e0a4d3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4f9e785-c737-4a7c-af7e-a35311e8b3ff", + "x-ms-client-request-id": "2544ff906c06dd354ae9721e2e0a4d3c", + "x-ms-correlation-request-id": "a09bd2a7-e4f8-4982-b1f4-9fa90b0e5a11", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "5db72377-41f7-4bd6-bf1b-41b35c47dc05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071530Z:a09bd2a7-e4f8-4982-b1f4-9fa90b0e5a11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "280c5329a6a892f6fdd279cda00b04de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6532d8f3-8eec-4e95-b609-a8b9fab403ac", + "x-ms-client-request-id": "280c5329a6a892f6fdd279cda00b04de", + "x-ms-correlation-request-id": "cba8d39a-a074-4831-a901-e756adb3a230", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "151fdff4-d2f5-4ad7-8e81-9be009763114", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071531Z:cba8d39a-a074-4831-a901-e756adb3a230" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4f31087c261cb6d5d951a3b54cb70f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9367ef79-817c-4204-9557-fb4a14c80aaa", + "x-ms-client-request-id": "c4f31087c261cb6d5d951a3b54cb70f6", + "x-ms-correlation-request-id": "11709ae7-ee99-4ef5-a364-e7330d77aa62", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "0b82598a-16fa-4ede-80eb-6dc78a8b243f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071533Z:11709ae7-ee99-4ef5-a364-e7330d77aa62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71e8bf33a820ea9508b22733f3683c3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb4668a2-904b-4ce0-9873-a225f5fbfa7f", + "x-ms-client-request-id": "71e8bf33a820ea9508b22733f3683c3f", + "x-ms-correlation-request-id": "67767aa3-17b4-45c5-b6e8-db5e6f63a8ac", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "1909d726-4b46-431d-9a64-cad796b4c0c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071534Z:67767aa3-17b4-45c5-b6e8-db5e6f63a8ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d9694e4881666dbe640cb128bba3d31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0eeeae4-5bb2-4df8-9487-307f6fd6ee13", + "x-ms-client-request-id": "1d9694e4881666dbe640cb128bba3d31", + "x-ms-correlation-request-id": "8e2ffbab-b1d1-4db5-b73a-845702fffe7c", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "d815f910-74d0-4c2d-a0b6-729b3a954242", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071535Z:8e2ffbab-b1d1-4db5-b73a-845702fffe7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e19a82629322debe7b09bbae9a39d8f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf0675bc-93b0-4b00-93a1-801b044c1b3c", + "x-ms-client-request-id": "e19a82629322debe7b09bbae9a39d8f5", + "x-ms-correlation-request-id": "f25be08d-5ec1-45d5-a3ae-6b4211b25114", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "4346b6d5-3ed9-44ac-a31c-7cb66408ba04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071536Z:f25be08d-5ec1-45d5-a3ae-6b4211b25114" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bf57db595235aae0e3818bdfdd825e4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eceb369c-f408-4718-ba92-f0e8285ba613", + "x-ms-client-request-id": "bf57db595235aae0e3818bdfdd825e4e", + "x-ms-correlation-request-id": "be5fc360-4753-41d5-87cb-5f5724e58e19", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "2fbf4981-6a9a-44a4-a38a-57a970035f52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071538Z:be5fc360-4753-41d5-87cb-5f5724e58e19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70d1f6745ace511cd6b8a20ccc2dcbac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c6e3fff-4fce-4fad-a20b-74290f500ff4", + "x-ms-client-request-id": "70d1f6745ace511cd6b8a20ccc2dcbac", + "x-ms-correlation-request-id": "8f1c7674-0928-4fbf-aee7-c66988630bac", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "40e653ae-bcbf-492e-81a4-8b3a8b1cbf07", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071539Z:8f1c7674-0928-4fbf-aee7-c66988630bac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0b8d5687e630ffca2effea007de01f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5fe85d74-43b4-4d32-8fe1-e7240e61f046", + "x-ms-client-request-id": "b0b8d5687e630ffca2effea007de01f8", + "x-ms-correlation-request-id": "a4996af9-ee63-4c25-a310-88605fae9e7c", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "eb3288e3-ae68-4797-b76d-b51466cdc09d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071540Z:a4996af9-ee63-4c25-a310-88605fae9e7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4396dab6768fe27be05e97db0d3deb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "82596f4f-181a-4d4e-805e-259f2a181250", + "x-ms-client-request-id": "a4396dab6768fe27be05e97db0d3deb6", + "x-ms-correlation-request-id": "6097bea9-bf98-4431-aa13-1812c5f5d55f", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "13aad2c8-c552-4615-8b19-0d60972e01ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071542Z:6097bea9-bf98-4431-aa13-1812c5f5d55f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0876dfb5aec9f6ebf9c2cede5b7b4af7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2d55e79-4585-42c7-b97c-4952dd55a04d", + "x-ms-client-request-id": "0876dfb5aec9f6ebf9c2cede5b7b4af7", + "x-ms-correlation-request-id": "45f1de87-bdc2-412d-a667-39a6dda8117f", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "155a614f-1742-4780-a8c1-639aaab33b66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071543Z:45f1de87-bdc2-412d-a667-39a6dda8117f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f61a9b727f30144aeb9f15e947f5ece", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7b4b353-81fb-4912-8388-d126350de387", + "x-ms-client-request-id": "5f61a9b727f30144aeb9f15e947f5ece", + "x-ms-correlation-request-id": "14704150-1625-4996-a137-690f8a9e3ca5", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "33ba878b-49a3-4597-b7aa-8eebf8c874b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071544Z:14704150-1625-4996-a137-690f8a9e3ca5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27eb4810f867fd2e8243aba69848a343", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5d5e1e3-f332-4150-a78d-310beb482478", + "x-ms-client-request-id": "27eb4810f867fd2e8243aba69848a343", + "x-ms-correlation-request-id": "be1160f9-671b-4eec-8f06-d532d131c1d1", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "e1c394db-f333-4a3f-8f30-44155f15ee34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071545Z:be1160f9-671b-4eec-8f06-d532d131c1d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07c6f1ba7f728ec39b75590fbc8c617a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9c4fd09-fcea-4143-a35a-e97b5af79665", + "x-ms-client-request-id": "07c6f1ba7f728ec39b75590fbc8c617a", + "x-ms-correlation-request-id": "35c2aabf-aefe-4363-a587-f2c753fdb20e", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "d17de0ba-9c0c-4453-8001-870095ecebf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071547Z:35c2aabf-aefe-4363-a587-f2c753fdb20e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13cdff632290be907b64dcaf7c9e6865", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5456251-c2b2-438b-ad83-d418fafe0448", + "x-ms-client-request-id": "13cdff632290be907b64dcaf7c9e6865", + "x-ms-correlation-request-id": "c670bd0d-0964-4e0d-9f41-14648df94461", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "8dcd5143-4a9f-4f1a-9d03-acdd4b248bcb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071548Z:c670bd0d-0964-4e0d-9f41-14648df94461" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3a3ae1657b9915c855c8cf19e1e40f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a42701b-6808-4122-acab-7ce4c14e0ba5", + "x-ms-client-request-id": "a3a3ae1657b9915c855c8cf19e1e40f5", + "x-ms-correlation-request-id": "80fa59d8-d2b8-4521-a4e1-cd21e4726415", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "fef2c600-d6a8-4434-a802-99d113b8ce20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071549Z:80fa59d8-d2b8-4521-a4e1-cd21e4726415" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "984230e28f7b97b261088b0ea21312fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58a34a4f-131a-4f78-bf12-699a16d6bd04", + "x-ms-client-request-id": "984230e28f7b97b261088b0ea21312fd", + "x-ms-correlation-request-id": "83e5ce1c-b99b-4945-b40d-3fcaca14f6ef", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "b572ed25-c70b-4e94-bfad-571d76f38425", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071550Z:83e5ce1c-b99b-4945-b40d-3fcaca14f6ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ef9f40cbee90bc0a33c8e33969e1f5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e901468-4aa2-469b-a748-a56729395742", + "x-ms-client-request-id": "0ef9f40cbee90bc0a33c8e33969e1f5c", + "x-ms-correlation-request-id": "80ec7252-5077-44f6-b658-f94108314f4d", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "1f85f312-258d-4640-a537-3c9ffded9995", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071552Z:80ec7252-5077-44f6-b658-f94108314f4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bcde723cf5b87eafb0c41b1cb4dee71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e01458e-59f7-4e21-8a66-743f2341cf8f", + "x-ms-client-request-id": "4bcde723cf5b87eafb0c41b1cb4dee71", + "x-ms-correlation-request-id": "d07ac365-40a3-40a0-948e-cde43b246515", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "99786ff2-735e-46ff-ada0-1d3c340de2f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071553Z:d07ac365-40a3-40a0-948e-cde43b246515" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aae58f4a3125230c7037f53f017f01c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "584c22e2-bb39-472b-9a78-8f0337e1b14b", + "x-ms-client-request-id": "aae58f4a3125230c7037f53f017f01c3", + "x-ms-correlation-request-id": "18be6369-8a90-47f6-a890-42157635bfc2", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "f3c6b291-c843-4ca0-8ac3-fd154ebc5e01", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071554Z:18be6369-8a90-47f6-a890-42157635bfc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbea2fe8c6463da20a7113dc7c0f3f55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "edcfdf9d-7587-46e9-b1a7-ec77be73509e", + "x-ms-client-request-id": "bbea2fe8c6463da20a7113dc7c0f3f55", + "x-ms-correlation-request-id": "2c6c6f57-3ba3-435c-a3d3-a5c5ba75853c", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "6ce8fc64-31f4-4666-8c79-3b8c5b67c3b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071555Z:2c6c6f57-3ba3-435c-a3d3-a5c5ba75853c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06e91c4d74b9f237daa9db23daab867b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d7a75225-980b-4141-a5d8-f23a4512abe1", + "x-ms-client-request-id": "06e91c4d74b9f237daa9db23daab867b", + "x-ms-correlation-request-id": "503280a6-4cc5-4914-8dde-04518effa519", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "f55de5ba-c7bd-4675-bbe2-6d62f0195c98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071557Z:503280a6-4cc5-4914-8dde-04518effa519" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cc87e0a3363832beda79fb31d2fa760", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "380af3de-cb91-4177-b3c1-986cc7309f59", + "x-ms-client-request-id": "9cc87e0a3363832beda79fb31d2fa760", + "x-ms-correlation-request-id": "fbd3b3f9-24da-4101-8707-a10f1962bebf", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "a5875b98-f5f3-460f-89e6-dd1a0c0024b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071558Z:fbd3b3f9-24da-4101-8707-a10f1962bebf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4f19ff7fb967409f8f8e09ceb7e625f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:15:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d25520b-5420-4c67-8cec-ccfa1eb9e91e", + "x-ms-client-request-id": "e4f19ff7fb967409f8f8e09ceb7e625f", + "x-ms-correlation-request-id": "37a8d9c4-fe2b-4994-8464-70536f1d175a", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "63c8e9b0-2a84-41bf-9a56-7e3def4a042c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071559Z:37a8d9c4-fe2b-4994-8464-70536f1d175a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fdd297eba34619f2f1651911d483d4ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4f5e08e-6a6f-4659-8ec9-d2cecccccbf4", + "x-ms-client-request-id": "fdd297eba34619f2f1651911d483d4ab", + "x-ms-correlation-request-id": "e6b1ebe4-77e3-473e-84aa-0ebc2864a7b9", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "19354b96-3af7-4dae-9c46-cac30f8b6609", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071601Z:e6b1ebe4-77e3-473e-84aa-0ebc2864a7b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b2c7a02a2b90fe57454a46a538e976f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36c3cad8-a854-463d-bf59-112fb3accbd0", + "x-ms-client-request-id": "3b2c7a02a2b90fe57454a46a538e976f", + "x-ms-correlation-request-id": "61266abb-08c4-43b1-a6f5-3844df7991a2", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "cc737866-3b71-4232-aed8-0073df644627", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071602Z:61266abb-08c4-43b1-a6f5-3844df7991a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86c84044a95d5319acd8f230e2f89f74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c25e39a-292c-440e-8f07-32a10679fd50", + "x-ms-client-request-id": "86c84044a95d5319acd8f230e2f89f74", + "x-ms-correlation-request-id": "a3c03eab-aab4-494d-9b9b-e142be392573", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "8fb983ef-0f5c-4a7e-80ad-e607c6e82cdf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071603Z:a3c03eab-aab4-494d-9b9b-e142be392573" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "719a3423275149a5b1c388f2ff87c662", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1af6e7ee-bd00-4ed2-bda4-0ce798e55496", + "x-ms-client-request-id": "719a3423275149a5b1c388f2ff87c662", + "x-ms-correlation-request-id": "2c009d79-58b7-4ae0-8dc2-3485cf468215", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "c679d4a6-fb86-444b-bfab-541c1f661d8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071604Z:2c009d79-58b7-4ae0-8dc2-3485cf468215" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94cca9cd4ebb594e60d98ee1afb52d7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0aa88b8c-b54c-41ff-a68f-5cd19c1de2c6", + "x-ms-client-request-id": "94cca9cd4ebb594e60d98ee1afb52d7c", + "x-ms-correlation-request-id": "52ec86f2-f12e-4b69-9f0d-831fb9ac741a", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "0ab57576-d190-4950-a7cf-02a63b9fbadf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071606Z:52ec86f2-f12e-4b69-9f0d-831fb9ac741a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e472fb425f41d1e9a7fd49920275424", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4d92082-3991-45b3-9f91-4d3cd8d1c397", + "x-ms-client-request-id": "1e472fb425f41d1e9a7fd49920275424", + "x-ms-correlation-request-id": "8fe04923-6f7f-474e-914d-ca1106b01a68", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "4221a579-3b16-4be8-a223-211dcc8dc864", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071607Z:8fe04923-6f7f-474e-914d-ca1106b01a68" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "386290110b2bd5b9e641117898c499fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bfd1949-6183-42e1-807f-933dc4a780bf", + "x-ms-client-request-id": "386290110b2bd5b9e641117898c499fc", + "x-ms-correlation-request-id": "a12f5fd0-5db4-438b-bdae-5c404983ed37", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "101a71cb-7e98-4ec7-a13d-65bfa9d2fd7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071608Z:a12f5fd0-5db4-438b-bdae-5c404983ed37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d03d0c95a740a86d8baff93b7ab43838", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8882fa33-45df-419f-a573-8c1caab927e5", + "x-ms-client-request-id": "d03d0c95a740a86d8baff93b7ab43838", + "x-ms-correlation-request-id": "2f697601-88a7-4e34-8ba8-04355cb38c92", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "915520ab-bd2b-42f1-b479-60b13b8f6685", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071610Z:2f697601-88a7-4e34-8ba8-04355cb38c92" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1fcf6a84f452a950757237b314a584d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f21eda0e-93f9-4e68-94ec-c26400327c05", + "x-ms-client-request-id": "1fcf6a84f452a950757237b314a584d6", + "x-ms-correlation-request-id": "7f0123b4-688c-4ebb-9d72-40f4cab8dc1e", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "00b088b1-e7b1-4d8d-aba1-67002cdc6233", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071611Z:7f0123b4-688c-4ebb-9d72-40f4cab8dc1e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1403d7e584e969e322baad7c117d5a32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9b47f58-408b-43f6-89ee-d7260bff124b", + "x-ms-client-request-id": "1403d7e584e969e322baad7c117d5a32", + "x-ms-correlation-request-id": "f40d0eaa-db81-4cd5-b2ca-aabd21026c00", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "c30adaf3-2ae8-44d6-bf5c-ef8203a2aa19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071612Z:f40d0eaa-db81-4cd5-b2ca-aabd21026c00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ef3d8087af5a1aabb945ace70b993e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd190a8c-6b93-42d7-9874-65a6a3ee2f18", + "x-ms-client-request-id": "2ef3d8087af5a1aabb945ace70b993e5", + "x-ms-correlation-request-id": "6ccf3e9d-bf72-40fb-987c-cd1acf51dfd7", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "a596a2f7-177d-4d79-b541-2e1b46c7aa4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071614Z:6ccf3e9d-bf72-40fb-987c-cd1acf51dfd7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a356232b24b0004f8665fc9847d497f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d41aecc7-5920-4dc5-a783-3a3a7cb16d91", + "x-ms-client-request-id": "a356232b24b0004f8665fc9847d497f7", + "x-ms-correlation-request-id": "02ac8ec5-3c2b-4af6-b574-f57b0ae600ce", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "647c465c-12b4-49ae-a016-a9ac02fb02ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071615Z:02ac8ec5-3c2b-4af6-b574-f57b0ae600ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bab051755b26ae02d6258552915f968", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9ab8f96-47fe-481a-aea8-10afdacba71f", + "x-ms-client-request-id": "3bab051755b26ae02d6258552915f968", + "x-ms-correlation-request-id": "936769bb-870b-4e71-aa94-32bf07054d22", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "7fa54569-35df-431f-9d7c-9ac52e2f94c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071616Z:936769bb-870b-4e71-aa94-32bf07054d22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee51c726b727e48189f2a88f7e1159e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bfb280c9-d25b-419d-ba54-d9dd2e4c25ac", + "x-ms-client-request-id": "ee51c726b727e48189f2a88f7e1159e7", + "x-ms-correlation-request-id": "4d666f0f-34cf-4168-b8c2-ea6135b6714f", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "3ea34ca6-163f-448a-8f32-3f7333f559d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071618Z:4d666f0f-34cf-4168-b8c2-ea6135b6714f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ab663fc580ed53242ec754dcbfad771", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3377225d-546d-4151-8ee6-7ddd770e564e", + "x-ms-client-request-id": "6ab663fc580ed53242ec754dcbfad771", + "x-ms-correlation-request-id": "61a11fbd-e057-432a-b9cf-fcee25dca8c4", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "7ed0391d-85e9-4fcd-97fa-09ded98da140", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071619Z:61a11fbd-e057-432a-b9cf-fcee25dca8c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8071936ba98360d084c7b2bfad51ec1b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac919af0-765b-412c-81ad-9eca29bd4cb8", + "x-ms-client-request-id": "8071936ba98360d084c7b2bfad51ec1b", + "x-ms-correlation-request-id": "482a04f2-094c-4e9b-9186-68fadfea4f4c", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "5307f90d-a0ac-4cf4-bd28-c3e92756b329", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071620Z:482a04f2-094c-4e9b-9186-68fadfea4f4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c55871098f5ece5a947bac3b4133188f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0f01d53-567e-41cc-9d06-b03d922e1bd9", + "x-ms-client-request-id": "c55871098f5ece5a947bac3b4133188f", + "x-ms-correlation-request-id": "f944a12b-2398-4b9d-b969-3eb3bc8884a5", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "7730baf0-7191-4d80-9da4-c0db1c555813", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071621Z:f944a12b-2398-4b9d-b969-3eb3bc8884a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea24361bd9a053639356e647a57327f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61a890df-4bba-4175-8349-60a0f475b893", + "x-ms-client-request-id": "ea24361bd9a053639356e647a57327f1", + "x-ms-correlation-request-id": "438b98d8-0d45-4495-9c94-433cbdb5ce7a", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "3c5c0a43-59b3-451e-ba57-3c7158984b6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071623Z:438b98d8-0d45-4495-9c94-433cbdb5ce7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a445aff11a1dc1239a2eb07fc941e50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "590b1504-eccb-4fdd-ab20-edaca4a78034", + "x-ms-client-request-id": "5a445aff11a1dc1239a2eb07fc941e50", + "x-ms-correlation-request-id": "b2bbd552-e029-415c-ba97-c98577931d85", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "ff92addf-b9ed-4a76-a6c4-02527276fe2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071624Z:b2bbd552-e029-415c-ba97-c98577931d85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76a423ae022c2f7b0d053208a9122921", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13b7b753-d822-472c-a064-60de9b25a3a0", + "x-ms-client-request-id": "76a423ae022c2f7b0d053208a9122921", + "x-ms-correlation-request-id": "8338ea69-15eb-4260-9f36-506fe30adb4d", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "5c595913-54d0-4db4-91d5-87c83d9c6bd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071625Z:8338ea69-15eb-4260-9f36-506fe30adb4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e73bba54bdef0aee2447b0fded5c56fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04018bba-5e26-433f-b49d-12ebfe948571", + "x-ms-client-request-id": "e73bba54bdef0aee2447b0fded5c56fe", + "x-ms-correlation-request-id": "61eb4601-3afe-4135-a01e-eed6dced676c", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "ecde5d27-0e9a-4d62-ab84-ce7116831b96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071627Z:61eb4601-3afe-4135-a01e-eed6dced676c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82989537b1cefdc4df144c9bde0a3327", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa31274a-8743-49b1-b7d6-6a9ed6b19829", + "x-ms-client-request-id": "82989537b1cefdc4df144c9bde0a3327", + "x-ms-correlation-request-id": "565aa0f3-4b8c-4c31-9800-756179941e5e", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "0194145a-7085-4903-b121-86b3a915e92f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071628Z:565aa0f3-4b8c-4c31-9800-756179941e5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41b3ca793759f061359a52e4527d42b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fbf8efe9-4c6f-4bf8-933e-4200600a35dd", + "x-ms-client-request-id": "41b3ca793759f061359a52e4527d42b0", + "x-ms-correlation-request-id": "6d91825d-b857-4a24-bc75-c1d30ae24137", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "95d80cfd-c0a9-4313-9876-5740638e10c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071629Z:6d91825d-b857-4a24-bc75-c1d30ae24137" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13d034aea679a352f63e08da71522b1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1408b9e6-f9c7-4c7f-ab19-e3ad675495a9", + "x-ms-client-request-id": "13d034aea679a352f63e08da71522b1a", + "x-ms-correlation-request-id": "4044b742-5966-4651-944d-2b196f0bc934", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "905fddff-6061-468a-b315-67785a80c511", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071630Z:4044b742-5966-4651-944d-2b196f0bc934" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2383881414a900a534a74d345edfaa61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8ba9036-cf65-4bbf-aa67-b9826cda0d4c", + "x-ms-client-request-id": "2383881414a900a534a74d345edfaa61", + "x-ms-correlation-request-id": "4d561e9a-328a-4d00-b294-bb3be2e8f4d4", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "6627f8b9-da6a-45d1-9453-33ad7c807ca8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071632Z:4d561e9a-328a-4d00-b294-bb3be2e8f4d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aaed9bd21f39d3ad770f4b1a2f867fe2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61252bd0-23c7-47ee-9d0d-79dfa394dd62", + "x-ms-client-request-id": "aaed9bd21f39d3ad770f4b1a2f867fe2", + "x-ms-correlation-request-id": "47f8a127-a868-4c36-8189-17b0cd4a6e3c", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "2de3d1bf-e672-4783-8fbd-daf861c6baf2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071633Z:47f8a127-a868-4c36-8189-17b0cd4a6e3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9d0376e1efa99078ecfded2581e4417", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5a37c98-04ca-4786-ad3a-4695819c4b90", + "x-ms-client-request-id": "c9d0376e1efa99078ecfded2581e4417", + "x-ms-correlation-request-id": "ae16927d-4e9b-4081-a2aa-0af344cb59b0", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "cb32cf6f-cd9a-4b2d-bdc4-0e51d25d299f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071634Z:ae16927d-4e9b-4081-a2aa-0af344cb59b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d507a6938064f4e0dbb0ab99c98ad1ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8941b7bd-e613-4ac2-bab5-da5f7da88e10", + "x-ms-client-request-id": "d507a6938064f4e0dbb0ab99c98ad1ad", + "x-ms-correlation-request-id": "79051d06-a2cf-479c-8843-922d62c58270", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "ca524188-ab00-4f4a-8d2b-6d0d4b3b600c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071636Z:79051d06-a2cf-479c-8843-922d62c58270" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26c56a27e10fb36794531b6a41db7a59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf0f75de-1ff5-46da-8388-dad0b505f6d5", + "x-ms-client-request-id": "26c56a27e10fb36794531b6a41db7a59", + "x-ms-correlation-request-id": "6ec7949a-f1d6-46c1-ade3-bbc0465ee7c5", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "859751e8-209e-430a-baf7-3e7d4afed982", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071637Z:6ec7949a-f1d6-46c1-ade3-bbc0465ee7c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "888734cbaa7eed7d57dbee49726dd004", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd1e94d2-ff6f-4835-8bbe-56cc3d4bfe92", + "x-ms-client-request-id": "888734cbaa7eed7d57dbee49726dd004", + "x-ms-correlation-request-id": "2966f2ad-b065-4df1-97f5-818f31552bc5", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "a7bf84de-67b3-4d2b-b020-7d5a2a4dbcbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071638Z:2966f2ad-b065-4df1-97f5-818f31552bc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eeaa30fd1d58b2073f5440116575b3ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "067a616f-cfbe-49b9-a26e-735fbf2e10d9", + "x-ms-client-request-id": "eeaa30fd1d58b2073f5440116575b3ff", + "x-ms-correlation-request-id": "6e48d4e3-5ac2-492f-9caa-4576ec3158c7", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "0a9b18b0-3221-4a38-885c-dd22ca5bd15a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071639Z:6e48d4e3-5ac2-492f-9caa-4576ec3158c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95cd523549037d2fecd7cf33f31d4027", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95b9e6fa-9de7-4ca9-ad0a-cf78d02a2dbc", + "x-ms-client-request-id": "95cd523549037d2fecd7cf33f31d4027", + "x-ms-correlation-request-id": "a9c8ef02-44a0-4373-b373-d065cb0fbafb", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "668d1a62-5285-427d-9441-4835d6cdc579", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071641Z:a9c8ef02-44a0-4373-b373-d065cb0fbafb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "106c17828c31ae002cd5482a6a6c88e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17916751-4e26-419d-b1aa-84779f729667", + "x-ms-client-request-id": "106c17828c31ae002cd5482a6a6c88e1", + "x-ms-correlation-request-id": "d1f1a8f9-8109-495c-be64-dd3b4050a2df", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "80146342-ace1-4dec-8884-6af0a796bf3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071642Z:d1f1a8f9-8109-495c-be64-dd3b4050a2df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2013ee283b9fb400012d01814ed4be22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98c1c5d4-6c79-47ce-a6a0-07babc402235", + "x-ms-client-request-id": "2013ee283b9fb400012d01814ed4be22", + "x-ms-correlation-request-id": "0c211709-c523-4cd3-83c9-81a80a859294", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "b4c8da9b-117b-4799-9525-d6720f32ec8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071643Z:0c211709-c523-4cd3-83c9-81a80a859294" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d8e1813a209a9ce521f682e01041280", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "070270f0-3d86-4fd7-8a0c-f9a716d2e5f6", + "x-ms-client-request-id": "4d8e1813a209a9ce521f682e01041280", + "x-ms-correlation-request-id": "0e8a280d-8c0f-42b9-bfe3-00fc50fdb7e4", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "ca04cf03-5da2-4c8d-9d69-5dd69ec4fee5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071645Z:0e8a280d-8c0f-42b9-bfe3-00fc50fdb7e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "050bed4e2009478716b80f048a7f6058", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bf1ee62-f817-43a0-9a6f-11b13a6368e5", + "x-ms-client-request-id": "050bed4e2009478716b80f048a7f6058", + "x-ms-correlation-request-id": "20465429-ae6b-4512-a785-d1d1923ea7af", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "526745ba-716c-4ae1-a183-bca6b9dffb04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071646Z:20465429-ae6b-4512-a785-d1d1923ea7af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "511726163bdd86d81f6ace7fd2d2b3fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9902f51-500f-4583-abe0-5b84d60760de", + "x-ms-client-request-id": "511726163bdd86d81f6ace7fd2d2b3fc", + "x-ms-correlation-request-id": "3f3b0df2-2b2c-4a89-b873-cd530f8e018e", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "4246149b-5ee0-4a6e-b878-9db1504f98f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071647Z:3f3b0df2-2b2c-4a89-b873-cd530f8e018e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6032811ab9c8f2189146365192ca1ed2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8045a99c-a8f9-4f70-95f0-838bf6da61e7", + "x-ms-client-request-id": "6032811ab9c8f2189146365192ca1ed2", + "x-ms-correlation-request-id": "24ffbdc9-7d28-44e3-ac46-74b1c9e38fb1", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "a35e30cc-870c-4602-a5c5-a811db199b39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071648Z:24ffbdc9-7d28-44e3-ac46-74b1c9e38fb1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da1710bfc1ec13a21485e59f52077544", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "893aa32d-c5ab-4b5a-9f6c-e0ce14403493", + "x-ms-client-request-id": "da1710bfc1ec13a21485e59f52077544", + "x-ms-correlation-request-id": "147dc8d8-3189-4ae2-a5ca-09a6ce50c913", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "dabb6617-a0c4-4b8b-9360-759ca65a521d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071650Z:147dc8d8-3189-4ae2-a5ca-09a6ce50c913" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09e91204ff4d5d8f0d25c0960487f354", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39f7bbbc-daef-44f4-8b07-cda535b9a3af", + "x-ms-client-request-id": "09e91204ff4d5d8f0d25c0960487f354", + "x-ms-correlation-request-id": "89a996c8-00be-4020-bfdf-fb604c385a89", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "ac2341e9-d0a8-44cd-9fed-8f4435b66f45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071651Z:89a996c8-00be-4020-bfdf-fb604c385a89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2c0fb4bd8ba5910de1f4b43d3789f89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79962950-472b-477b-b618-dd2b4cd16b7c", + "x-ms-client-request-id": "c2c0fb4bd8ba5910de1f4b43d3789f89", + "x-ms-correlation-request-id": "03b36473-181f-4ec1-ac78-a5b83ef060bb", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "3c64bf78-ef28-4640-b8c2-fe2f1f1bfeb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071652Z:03b36473-181f-4ec1-ac78-a5b83ef060bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "804cf2d114e1c08581bacdc7000b0e8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4ae3601-20db-4457-9b5d-e95740c70f31", + "x-ms-client-request-id": "804cf2d114e1c08581bacdc7000b0e8d", + "x-ms-correlation-request-id": "be498032-ee56-4938-9673-e2086f30f170", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "87d5cc2f-4778-4267-acdf-4388fbbfb6e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071654Z:be498032-ee56-4938-9673-e2086f30f170" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57549092b3472c8902902b2eb34b8995", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f138f406-1729-4a9a-be84-158fef0091eb", + "x-ms-client-request-id": "57549092b3472c8902902b2eb34b8995", + "x-ms-correlation-request-id": "c82add65-b8d6-4767-8bc8-2696e2a90bea", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "afa51fee-6f5e-4341-98d3-eabe324aa2c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071655Z:c82add65-b8d6-4767-8bc8-2696e2a90bea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11c53785733a3673760041000b4858d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7590bb4e-e736-4515-ac9c-10cc89f5950a", + "x-ms-client-request-id": "11c53785733a3673760041000b4858d2", + "x-ms-correlation-request-id": "af2b66f9-3535-45fe-807b-779d829c4548", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "c49d2ea0-37d9-46a2-a665-3f298424e8f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071656Z:af2b66f9-3535-45fe-807b-779d829c4548" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43b1be1048241e41691f7d50e9570d35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d8bfaea-8e13-4922-9f6d-48fa919bc844", + "x-ms-client-request-id": "43b1be1048241e41691f7d50e9570d35", + "x-ms-correlation-request-id": "48b7ec96-3579-4767-ae31-9ef48f09f88b", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "23c864ee-2644-4fdc-97b6-0d054315c388", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071657Z:48b7ec96-3579-4767-ae31-9ef48f09f88b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9423730fc461e531c1de147728821ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6a99a4b-4dc0-4c53-9386-a263167a35d8", + "x-ms-client-request-id": "c9423730fc461e531c1de147728821ba", + "x-ms-correlation-request-id": "818f7444-e1e1-4cd5-87a1-ed252f5006f8", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "0b954575-7b7b-4b36-9f9d-bc97ae706e45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071659Z:818f7444-e1e1-4cd5-87a1-ed252f5006f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f51d5937469a3d70f5a6a81af5234d1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:16:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "afac0530-747a-4b62-b928-8e03b6ee2677", + "x-ms-client-request-id": "f51d5937469a3d70f5a6a81af5234d1f", + "x-ms-correlation-request-id": "278cbfde-35ec-4a46-9627-a6aec13927b8", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "f3bfee06-969c-4c7b-b097-8ae2cf513736", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071700Z:278cbfde-35ec-4a46-9627-a6aec13927b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3cf0bf28f05138b6a92260767faace0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "acc8fec6-f998-49c2-8af4-aadbec5eb0ec", + "x-ms-client-request-id": "d3cf0bf28f05138b6a92260767faace0", + "x-ms-correlation-request-id": "fb5d62fb-8dd4-4364-948c-f5a7f3b45cf2", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "62cbac89-a8c1-46d4-8013-eb0d62f4d623", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071701Z:fb5d62fb-8dd4-4364-948c-f5a7f3b45cf2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9019c3fe1839ea9bc705d3a0543829f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "231e492d-094b-46e9-9f0e-69421a7b1610", + "x-ms-client-request-id": "9019c3fe1839ea9bc705d3a0543829f9", + "x-ms-correlation-request-id": "dd3f2d5f-a753-41a1-a423-80a29592b2da", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "8c51db92-dd0a-4732-a50c-3a207089eb54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071703Z:dd3f2d5f-a753-41a1-a423-80a29592b2da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6654c1cf4db9a8b4cd098a072069d5fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "399a8219-771c-4db3-9d74-a4dbf5e46a37", + "x-ms-client-request-id": "6654c1cf4db9a8b4cd098a072069d5fb", + "x-ms-correlation-request-id": "1d69163a-4348-49bf-a626-0b509f975eff", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "9a9ad1c7-b35a-4b11-ab16-d86db3d35ab5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071704Z:1d69163a-4348-49bf-a626-0b509f975eff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "321bc7fabd0adae570e50c00bbebbf32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b22c52dc-03a7-44e6-b504-b19f62938ab1", + "x-ms-client-request-id": "321bc7fabd0adae570e50c00bbebbf32", + "x-ms-correlation-request-id": "ae50c465-d672-4d9b-84e9-8618de8427d6", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "9bf924d3-400e-4415-9547-1c30d1a84043", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071705Z:ae50c465-d672-4d9b-84e9-8618de8427d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5372c6945a5b0270e70c22f8d94ca5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1af3ac1-ff6b-429b-93c0-7d8e7b7a598e", + "x-ms-client-request-id": "a5372c6945a5b0270e70c22f8d94ca5d", + "x-ms-correlation-request-id": "f5214e74-3f38-4723-a484-da436415e7f6", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "fc79ab11-809e-4f21-9c51-7763aff281d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071706Z:f5214e74-3f38-4723-a484-da436415e7f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ca6d82ff71c11efdc79f6d441b4ede2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bdece8e0-d248-4e82-93e1-ba6ed9dd556a", + "x-ms-client-request-id": "8ca6d82ff71c11efdc79f6d441b4ede2", + "x-ms-correlation-request-id": "a393783f-421f-43e1-ad13-d0624eeb24fb", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "c2f11c7e-55fb-43b3-973d-b7687f026b95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071708Z:a393783f-421f-43e1-ad13-d0624eeb24fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f39d574a3032b455a06b2399fbb64ddc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dde4140c-b42a-4f9a-bcc6-9f08327d55f2", + "x-ms-client-request-id": "f39d574a3032b455a06b2399fbb64ddc", + "x-ms-correlation-request-id": "10e13f92-8f25-4216-a08e-6fe63f1598f9", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "ded3bdc9-3c10-419a-8581-6a6d87be5ec0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071709Z:10e13f92-8f25-4216-a08e-6fe63f1598f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3d0ae1a334572153d25c92b4f536f5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1755f420-6c83-483b-aa76-63890776625a", + "x-ms-client-request-id": "e3d0ae1a334572153d25c92b4f536f5a", + "x-ms-correlation-request-id": "930e65a0-c85c-4938-8dc7-7f12841ca1a7", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "3d1274ee-de3b-4abb-a835-903c07debc4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071710Z:930e65a0-c85c-4938-8dc7-7f12841ca1a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35e5e083d6f6ff2b82f1ebb1d3551625", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1c0ccd6-a2eb-4c2f-87b0-4896ddfc64ab", + "x-ms-client-request-id": "35e5e083d6f6ff2b82f1ebb1d3551625", + "x-ms-correlation-request-id": "a4346951-94dc-4d19-87a1-9b31cea136a6", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "ec166d9f-0a09-49df-96e8-e0b606755b43", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071711Z:a4346951-94dc-4d19-87a1-9b31cea136a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92b9192c09e3179c422bb50c6729644c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f66a3f92-649f-4428-a401-7467fbdcedf0", + "x-ms-client-request-id": "92b9192c09e3179c422bb50c6729644c", + "x-ms-correlation-request-id": "d400df13-372e-4bc0-a5a7-c6b9a6336e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "ed4bf39f-ec4e-4d8d-a538-5c07eaaebb04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071713Z:d400df13-372e-4bc0-a5a7-c6b9a6336e9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a16c8fb17d143e683d1605347649ee7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc0d98dc-adc8-4cb7-a6c3-ab536aa580c2", + "x-ms-client-request-id": "1a16c8fb17d143e683d1605347649ee7", + "x-ms-correlation-request-id": "b03ab899-2021-4a86-99bf-576c0a493c23", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "f23d3a71-073a-402b-95b9-0ff9dafa672e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071714Z:b03ab899-2021-4a86-99bf-576c0a493c23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35ffa30fdc9a797743cef3ca211f9758", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e726ef0-923c-409b-ba0c-2b4a294a01e3", + "x-ms-client-request-id": "35ffa30fdc9a797743cef3ca211f9758", + "x-ms-correlation-request-id": "e25ce96e-4079-4ad3-8328-5c93e46ebb66", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "10b6ad34-6720-44e8-a1a1-3fdfd0264a15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071715Z:e25ce96e-4079-4ad3-8328-5c93e46ebb66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0bb59f8cfc3f155433750f11a949cfde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e117a0cc-f300-4680-96fe-d5065077cc99", + "x-ms-client-request-id": "0bb59f8cfc3f155433750f11a949cfde", + "x-ms-correlation-request-id": "b59abb32-5535-460e-ae13-3a8b652233b6", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "8fcb51c3-0759-4176-b248-8dfdf903cdf5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071717Z:b59abb32-5535-460e-ae13-3a8b652233b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c4fdce8d2f2a1fb2519dd603231c2264", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8923cae2-75b5-4ed0-8288-437d4970b4d4", + "x-ms-client-request-id": "c4fdce8d2f2a1fb2519dd603231c2264", + "x-ms-correlation-request-id": "737dc65e-13ad-47f5-925b-883d27374df8", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "1960f37c-3b36-4ef2-ab51-dd14056f28da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071718Z:737dc65e-13ad-47f5-925b-883d27374df8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8c6083992ae13a84eea0124cd66d0fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31afd833-b7b6-4f9e-8b76-6faa55cf0480", + "x-ms-client-request-id": "a8c6083992ae13a84eea0124cd66d0fa", + "x-ms-correlation-request-id": "7f904851-e358-4fb1-aea8-c90611e2a1c1", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "9e8e0d59-c5ff-4c33-adaa-c25ffe93239a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071719Z:7f904851-e358-4fb1-aea8-c90611e2a1c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "533c15fed3215d2dec96b9a22551f117", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c2deaad8-96b5-4014-a3da-7ebba70b9130", + "x-ms-client-request-id": "533c15fed3215d2dec96b9a22551f117", + "x-ms-correlation-request-id": "de37ffb5-1f3a-4d98-8645-18dae888f837", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "4f400e76-4cfe-4753-935a-84eecccf6a64", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071720Z:de37ffb5-1f3a-4d98-8645-18dae888f837" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0d7aa522782fa3025ea75402d8d51eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10530261-50d2-44d3-8b12-1c911a6679a9", + "x-ms-client-request-id": "a0d7aa522782fa3025ea75402d8d51eb", + "x-ms-correlation-request-id": "db652d87-9bfc-434d-9f88-915bcfc6276f", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "48d52295-0130-4695-8c7f-f22a3ab4eb13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071722Z:db652d87-9bfc-434d-9f88-915bcfc6276f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e04dccccfdf6542da69bb17d906edfc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "03d263bb-7efb-48ab-888f-acf427fe2e59", + "x-ms-client-request-id": "0e04dccccfdf6542da69bb17d906edfc", + "x-ms-correlation-request-id": "ec71f20d-d0af-44d2-b096-52152f9edbf3", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "652dc103-52bf-4cd7-9750-610350294442", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071723Z:ec71f20d-d0af-44d2-b096-52152f9edbf3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22d2e9f92f8ed678e4412d375eed2f5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d727a63b-5981-4423-addd-275484704ae2", + "x-ms-client-request-id": "22d2e9f92f8ed678e4412d375eed2f5e", + "x-ms-correlation-request-id": "a32ec4d2-0699-4f28-9cad-2a299634fcff", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "c4cf2d93-0ccd-4b49-af40-666dd4e0b617", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071724Z:a32ec4d2-0699-4f28-9cad-2a299634fcff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48d5ce45e24c82386871c5186b18211e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34624586-93b0-4d15-9ad2-0cd1253b9321", + "x-ms-client-request-id": "48d5ce45e24c82386871c5186b18211e", + "x-ms-correlation-request-id": "32388b17-e29d-42c4-8eca-03117a012c12", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "31781d13-3328-45f8-ada8-69479f280e6f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071726Z:32388b17-e29d-42c4-8eca-03117a012c12" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "434678fc2fbb9d5c642e299ea20a07ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9f0528c-57fe-467a-a3b0-ba965769a774", + "x-ms-client-request-id": "434678fc2fbb9d5c642e299ea20a07ec", + "x-ms-correlation-request-id": "b890393c-8d30-4ad1-8eab-89c1529ea8b9", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "e18ed1d0-559b-401d-a3b6-84ff287fdcb6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071727Z:b890393c-8d30-4ad1-8eab-89c1529ea8b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ad25d39a53116b0b14fba1c695f6acc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3938684d-46cd-4e89-851e-62c16bdfda22", + "x-ms-client-request-id": "0ad25d39a53116b0b14fba1c695f6acc", + "x-ms-correlation-request-id": "47b36908-84c8-4c16-a71f-625d8f022feb", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "d1e35e70-4a42-4523-a1ab-dbc6f024dcbd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071728Z:47b36908-84c8-4c16-a71f-625d8f022feb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e53b0e1feca615a27238e41eb899e05d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1a373179-085d-4820-99a0-9082ba4e6ae0", + "x-ms-client-request-id": "e53b0e1feca615a27238e41eb899e05d", + "x-ms-correlation-request-id": "c28fde6c-7d1e-4d98-ad19-d829a7c16ac6", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "1d1a5395-eafa-44b2-a4d1-0c378385cce3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071729Z:c28fde6c-7d1e-4d98-ad19-d829a7c16ac6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0eded869174656edc82f916c743f3304", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9358b55-58dd-4f31-b424-7b173b02c8c6", + "x-ms-client-request-id": "0eded869174656edc82f916c743f3304", + "x-ms-correlation-request-id": "af156b65-3d4b-4074-8615-6919af66962f", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "71baa5bf-0df9-47a6-8933-d5cb8c35e490", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071731Z:af156b65-3d4b-4074-8615-6919af66962f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "937e5dc322ce4d46babc97f8c0915e18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6efb936-6c2d-4756-8d54-d749b49d72e3", + "x-ms-client-request-id": "937e5dc322ce4d46babc97f8c0915e18", + "x-ms-correlation-request-id": "282fb292-b8ca-4aeb-b163-80456375d0d7", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "346f7d7b-8660-4f2b-8e33-fac6381e35e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071732Z:282fb292-b8ca-4aeb-b163-80456375d0d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91b25c6e5c80088620e41d765a36a132", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d1882050-e5a6-49c7-b159-93ca9e0a89f5", + "x-ms-client-request-id": "91b25c6e5c80088620e41d765a36a132", + "x-ms-correlation-request-id": "9dd9739f-f6e8-4eda-87ec-07e83f0b863f", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "de8eec07-e924-47e9-a15a-904a99c50445", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071733Z:9dd9739f-f6e8-4eda-87ec-07e83f0b863f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5a5bdf054d1a478e929154897ff59536", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bcbce67-992c-4ea4-b7b7-5ca51d49c306", + "x-ms-client-request-id": "5a5bdf054d1a478e929154897ff59536", + "x-ms-correlation-request-id": "50e3c329-c935-4b07-afc0-f5125a49dab2", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "108860a0-db93-4732-a936-27405cf81a7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071734Z:50e3c329-c935-4b07-afc0-f5125a49dab2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18fe79d1a28c6683d77672ea04cff284", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93752ed1-0c38-4cd3-ad47-ef2b9be4a845", + "x-ms-client-request-id": "18fe79d1a28c6683d77672ea04cff284", + "x-ms-correlation-request-id": "1da1572e-afbf-4bf6-a2eb-f4731af15994", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "4d9b08bd-0103-4be6-80ad-4a953a3c48ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071736Z:1da1572e-afbf-4bf6-a2eb-f4731af15994" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1f3651b043621fdcd6afeef08fc882b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "855d1187-9ccd-4c04-a6d2-bce5e41a5088", + "x-ms-client-request-id": "e1f3651b043621fdcd6afeef08fc882b", + "x-ms-correlation-request-id": "3222a952-a33a-4517-882a-7eaee921a07a", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "906de03e-53dc-45d4-b669-6ba27b28f938", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071737Z:3222a952-a33a-4517-882a-7eaee921a07a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1a5e64e883762a55cf482a4daa443c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "244d724e-36e1-45c7-bc8b-f2f7e7739588", + "x-ms-client-request-id": "e1a5e64e883762a55cf482a4daa443c3", + "x-ms-correlation-request-id": "927c4bd1-3495-4325-a706-1c8c99fffb44", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "5bb43fb9-c640-4f5c-b4ff-a658e03588f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071738Z:927c4bd1-3495-4325-a706-1c8c99fffb44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a6ecf9eb401cd007bdc4a22a3945eda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75bb0e09-165f-4b1c-ba0b-c521c69144dc", + "x-ms-client-request-id": "1a6ecf9eb401cd007bdc4a22a3945eda", + "x-ms-correlation-request-id": "7e50c655-4934-493d-aba6-48ff2db177bb", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "b63c668a-b9c1-469c-bba5-05f4884a69a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071739Z:7e50c655-4934-493d-aba6-48ff2db177bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e9b46ee1129924cbf90844181584628", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d9f4c9d-7bfa-4e90-935b-1a260e07e794", + "x-ms-client-request-id": "1e9b46ee1129924cbf90844181584628", + "x-ms-correlation-request-id": "563029da-6d23-455a-9e33-a0cfd7778bc5", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "b32b7a71-0526-4b9f-9c72-01bd0e37ea3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071741Z:563029da-6d23-455a-9e33-a0cfd7778bc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38513a276e8e9a2ae5d8655b3d83bec8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "672fbe09-032b-4ddb-bb2b-481332b9db04", + "x-ms-client-request-id": "38513a276e8e9a2ae5d8655b3d83bec8", + "x-ms-correlation-request-id": "1e97a392-eac4-4829-b839-0b3770a33a34", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "5a11094e-5b72-4d08-a37b-be5a5236913e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071742Z:1e97a392-eac4-4829-b839-0b3770a33a34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93b6a89524098d9a82db5a7030bf4c23", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30b326d9-ee6e-4804-b07e-bbfaf9d58d62", + "x-ms-client-request-id": "93b6a89524098d9a82db5a7030bf4c23", + "x-ms-correlation-request-id": "2bf154db-1d79-414e-8216-3e7bca21b03c", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "30691868-eecc-4a87-9dfc-df746fb52261", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071743Z:2bf154db-1d79-414e-8216-3e7bca21b03c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69fa229526427f4c1c013951abf1543c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "906491fd-a098-48f8-8333-cf5862363c8f", + "x-ms-client-request-id": "69fa229526427f4c1c013951abf1543c", + "x-ms-correlation-request-id": "4d0b2672-6e81-400c-99ca-ce78323d81cd", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "4407977d-0a82-47a3-b04a-8ada004dae02", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071745Z:4d0b2672-6e81-400c-99ca-ce78323d81cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8abbcd1b3a2031fa0c3b5b214ba6925", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88c90211-bf0d-4dd8-8f0f-883696a52b65", + "x-ms-client-request-id": "d8abbcd1b3a2031fa0c3b5b214ba6925", + "x-ms-correlation-request-id": "4fe29470-decb-4d26-9c75-9719bbbd2f21", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "bccf3af8-c9fc-4c8b-b40f-1e11472acf58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071746Z:4fe29470-decb-4d26-9c75-9719bbbd2f21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bc5428b55896f855b367708ea48e191", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6f34365-7d28-4243-9719-9e28652d0cdf", + "x-ms-client-request-id": "1bc5428b55896f855b367708ea48e191", + "x-ms-correlation-request-id": "20a31570-3eaf-4075-8df9-22873b37a821", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "cb3cad22-8513-4b84-906f-e8f90345284a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071747Z:20a31570-3eaf-4075-8df9-22873b37a821" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "739e1d877313e28002f6c87f70996b62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d255f501-4adc-4abb-8d01-53fe1e5480b4", + "x-ms-client-request-id": "739e1d877313e28002f6c87f70996b62", + "x-ms-correlation-request-id": "44ed35cf-9d8d-4926-a146-f99030a802d4", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "1ddedbcd-62f5-463f-97cd-263e353b375e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071748Z:44ed35cf-9d8d-4926-a146-f99030a802d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69c51397382c7cb2363c7d6c3c171857", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a36b977-521c-497b-ba0b-e565a3120028", + "x-ms-client-request-id": "69c51397382c7cb2363c7d6c3c171857", + "x-ms-correlation-request-id": "1f03f1d5-7cb4-41f9-abef-437c468104fc", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "fc930796-8174-4ba0-a55a-e290fbf37699", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071750Z:1f03f1d5-7cb4-41f9-abef-437c468104fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f62b24e2f61b1811c2e218928c06fec1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc74eb1d-adde-46c0-9928-8955718258c4", + "x-ms-client-request-id": "f62b24e2f61b1811c2e218928c06fec1", + "x-ms-correlation-request-id": "dfb8a484-7e96-4de8-b66a-503d9161bedc", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "d700d2d9-45e3-4549-8304-7228c1e7c2a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071751Z:dfb8a484-7e96-4de8-b66a-503d9161bedc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d67014cb77834e656a223cd7f514a6eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9479346-537c-40aa-b1b0-35cf7a64c919", + "x-ms-client-request-id": "d67014cb77834e656a223cd7f514a6eb", + "x-ms-correlation-request-id": "b4b0d704-7ec6-45ce-99a0-a89fd3b4e3d8", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "3371c65c-d4ea-4d52-83b7-695a900ddff7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071752Z:b4b0d704-7ec6-45ce-99a0-a89fd3b4e3d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c9c71dd756ea14601aca7491f20ef30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6b5142e-817e-4e2d-b3fc-f238ffb87cb2", + "x-ms-client-request-id": "4c9c71dd756ea14601aca7491f20ef30", + "x-ms-correlation-request-id": "c5a1db04-1681-4de5-b7fe-fbf3f6dbaa1c", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "18a315f2-e124-44bf-888e-391d859b7b88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071753Z:c5a1db04-1681-4de5-b7fe-fbf3f6dbaa1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27a1bb3d42a66ad4bedd8bf9b93a22ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d60f26a8-6fe0-47fc-b5a0-c6ff1dce4fda", + "x-ms-client-request-id": "27a1bb3d42a66ad4bedd8bf9b93a22ad", + "x-ms-correlation-request-id": "173000f7-4b10-47d3-8cd8-5936ee8c5429", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "110ec28c-d832-4453-8930-c2180ee61426", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071755Z:173000f7-4b10-47d3-8cd8-5936ee8c5429" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bb42d3cb26a5553cecfd4d6d01b2e4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8662d1b3-a277-4b07-9d3a-ff827f6d13f8", + "x-ms-client-request-id": "1bb42d3cb26a5553cecfd4d6d01b2e4a", + "x-ms-correlation-request-id": "bdb183c2-449d-4ae7-8add-f125a388a64c", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "8b3a83a7-4348-4e5c-8317-32ec8d9b8c1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071756Z:bdb183c2-449d-4ae7-8add-f125a388a64c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "399a0c327e739b459d318d91e94ce8c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb670fee-a39a-4428-b0c0-6a11f3cf2792", + "x-ms-client-request-id": "399a0c327e739b459d318d91e94ce8c7", + "x-ms-correlation-request-id": "4505779b-c782-40e5-97e3-7bb8af81a097", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "bf462846-0e8b-4e4a-93b1-45bc543c4107", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071757Z:4505779b-c782-40e5-97e3-7bb8af81a097" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f20df989d46b8bc6684b59d66dfd9aa3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8e6dd93-3bfe-49a0-a58b-052afaa7fefe", + "x-ms-client-request-id": "f20df989d46b8bc6684b59d66dfd9aa3", + "x-ms-correlation-request-id": "bc2e8ba7-13c0-40c3-a729-a7aa8e6757b6", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "55e1208a-7b81-43a4-a7ef-575954c9a081", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071759Z:bc2e8ba7-13c0-40c3-a729-a7aa8e6757b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acc740aee8a0bd3ae7197e3824c26c81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:17:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d725394-a9bc-494d-a6f1-1de81367ecb3", + "x-ms-client-request-id": "acc740aee8a0bd3ae7197e3824c26c81", + "x-ms-correlation-request-id": "550be182-ed5d-498a-92c2-ac12e492ce54", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "2a36913c-30db-4365-a8f2-e9db2d8cda46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071800Z:550be182-ed5d-498a-92c2-ac12e492ce54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d74d0de73b0e5edf450ed128256f2e9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9ec91eb-6fce-4b83-a3e6-8147ea87f666", + "x-ms-client-request-id": "d74d0de73b0e5edf450ed128256f2e9f", + "x-ms-correlation-request-id": "b4d08c19-7aa8-4857-9079-864b32a80b25", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "1e21f65e-6000-4e83-9751-b0cfcd79ab6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071801Z:b4d08c19-7aa8-4857-9079-864b32a80b25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8e2ea973b85a026be4f0b52558e66a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cafd78e-53d0-4f42-81a4-e36b775fed13", + "x-ms-client-request-id": "a8e2ea973b85a026be4f0b52558e66a6", + "x-ms-correlation-request-id": "1feae6f3-5b55-45ed-93f7-10ea604cb938", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "db9dbd61-dfca-4f50-bcca-9b51c7889561", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071802Z:1feae6f3-5b55-45ed-93f7-10ea604cb938" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fefd8dec2b073956169679117129878", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "410ef1c8-3937-4a34-9700-ba434ca26700", + "x-ms-client-request-id": "5fefd8dec2b073956169679117129878", + "x-ms-correlation-request-id": "371228b1-f947-4a54-9fb0-34f3261fb531", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "d0433606-8130-44e8-897f-8681a4af1366", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071804Z:371228b1-f947-4a54-9fb0-34f3261fb531" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3aa0deeac3dfacfbe6ac18be2f8c08b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8f47486-5b7a-4583-bde5-a0d74382feae", + "x-ms-client-request-id": "3aa0deeac3dfacfbe6ac18be2f8c08b7", + "x-ms-correlation-request-id": "9df5f7bb-d907-4600-911a-ffb72c339b3c", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "54bab7bf-0690-4cf7-b155-6c55157e43f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071805Z:9df5f7bb-d907-4600-911a-ffb72c339b3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c492ba8ce80d4ef556e471cd49589ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "babfd6c9-929a-448b-87fc-c0564c9b0299", + "x-ms-client-request-id": "4c492ba8ce80d4ef556e471cd49589ac", + "x-ms-correlation-request-id": "92ed4a9b-ea84-43f6-82c9-79395133cee2", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "7d8b8a02-db88-4797-9ea0-d4547198adc1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071806Z:92ed4a9b-ea84-43f6-82c9-79395133cee2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "776793b62ced1bc6dc427903aad643d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7eb7535d-f136-49f3-8e4a-8f9edd1ca225", + "x-ms-client-request-id": "776793b62ced1bc6dc427903aad643d4", + "x-ms-correlation-request-id": "6cf8f2ca-c70f-485f-9fdd-fc76071ad291", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "08d14d2d-9a94-4e25-9d88-3a41e49775b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071807Z:6cf8f2ca-c70f-485f-9fdd-fc76071ad291" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ece9af604cc91cf8eecbe4707cdfd751", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67fe2004-3060-445b-be16-ab653a5088fb", + "x-ms-client-request-id": "ece9af604cc91cf8eecbe4707cdfd751", + "x-ms-correlation-request-id": "29df76b2-59f2-4577-9194-f52526fa09ce", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "3ef85185-c126-44f7-b450-de39bed99494", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071809Z:29df76b2-59f2-4577-9194-f52526fa09ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c086b2290257bca652d703d55ec2a7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45eabbb0-4468-4cbe-a9de-5fb4f5c98ee7", + "x-ms-client-request-id": "9c086b2290257bca652d703d55ec2a7f", + "x-ms-correlation-request-id": "b2203f89-e971-4581-9d37-e164f319835d", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "249a8ef7-e9e4-4765-b2c5-b70e87466533", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071810Z:b2203f89-e971-4581-9d37-e164f319835d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24bb722b9dac6ae39b4b892147559ffd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46daf36e-6bce-4923-91b3-ee6cdd20deef", + "x-ms-client-request-id": "24bb722b9dac6ae39b4b892147559ffd", + "x-ms-correlation-request-id": "838b7554-cd07-47d9-b719-fbad938bd977", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "75ac4b05-d15a-4758-abbb-dd17ae0c66b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071811Z:838b7554-cd07-47d9-b719-fbad938bd977" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ee1286ba6cdd0afe46d879bdbbbc602", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac489a7b-a636-4d9f-8b63-84ec5a8db7e0", + "x-ms-client-request-id": "3ee1286ba6cdd0afe46d879bdbbbc602", + "x-ms-correlation-request-id": "03149b8a-bbcb-47dd-a952-1a41e838f3f4", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "d55b6416-b362-488f-9825-a73e411befcc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071813Z:03149b8a-bbcb-47dd-a952-1a41e838f3f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "094565a1b22385a4889d01da07a9330f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bea2269-0212-4a3e-83af-7d31ac16bc8f", + "x-ms-client-request-id": "094565a1b22385a4889d01da07a9330f", + "x-ms-correlation-request-id": "383b75a4-0735-4511-a8dd-3458a235182e", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "28add75b-d645-4b4f-bddb-946e8db89829", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071814Z:383b75a4-0735-4511-a8dd-3458a235182e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cd2728eeb0b84b1c3eb403e16488ee0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4b451418-734e-40b6-854c-8163672dc671", + "x-ms-client-request-id": "2cd2728eeb0b84b1c3eb403e16488ee0", + "x-ms-correlation-request-id": "e3142fa5-5f61-4f2c-bc5d-1f28d8687460", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "c3233f4c-158c-4614-8299-ef94fa6e3d0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071815Z:e3142fa5-5f61-4f2c-bc5d-1f28d8687460" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e27f8684950fb8d9835bb630a5d5c83b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4fea265e-4843-4bd5-bed8-59fbdd9a08ba", + "x-ms-client-request-id": "e27f8684950fb8d9835bb630a5d5c83b", + "x-ms-correlation-request-id": "bef92eab-1fb3-4050-8d5b-e6fa470b2f02", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "43768f9d-4c56-4b64-a5f2-0ef68b171879", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071816Z:bef92eab-1fb3-4050-8d5b-e6fa470b2f02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "690d773a9ae9b5f7b4c0463872666f40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d706eaf-cc0d-4a94-b405-fa0a19e42dc6", + "x-ms-client-request-id": "690d773a9ae9b5f7b4c0463872666f40", + "x-ms-correlation-request-id": "724a1adf-ac8f-4c39-a3fc-81d12f773935", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "26c95e5a-16ae-4a7c-968a-53208541c9fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071818Z:724a1adf-ac8f-4c39-a3fc-81d12f773935" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8055210f5129f8ff9919a9af3581dfed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "654bbd1e-d950-4e90-9699-e820e24b5b9b", + "x-ms-client-request-id": "8055210f5129f8ff9919a9af3581dfed", + "x-ms-correlation-request-id": "33a2c43c-5d40-4523-9eaf-685bc74348db", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "6089b566-e2df-4aa1-b62d-99c2a274bc94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071819Z:33a2c43c-5d40-4523-9eaf-685bc74348db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e040422253aeaf78fc92d4f4ea0451c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff2a24d5-a8f6-4d3e-8d69-192774bbbb49", + "x-ms-client-request-id": "9e040422253aeaf78fc92d4f4ea0451c", + "x-ms-correlation-request-id": "b5d5dd7a-1a70-49bc-b05b-28b561f73db3", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "cc4e81a0-4520-4250-8031-a9ff533f51ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071820Z:b5d5dd7a-1a70-49bc-b05b-28b561f73db3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "842076eb487fe8127714cfcff0478033", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d345c07-9008-4242-9a22-b77e8fd34cb8", + "x-ms-client-request-id": "842076eb487fe8127714cfcff0478033", + "x-ms-correlation-request-id": "81418bdb-5b72-4dac-91d4-29b1d2bfe6b0", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "388e3491-5257-408e-95c1-41ec71dce08e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071822Z:81418bdb-5b72-4dac-91d4-29b1d2bfe6b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e1659e0d062e9052a6bf05f23b0aaf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76115cd9-a3fd-4755-9b40-b0455dcab986", + "x-ms-client-request-id": "6e1659e0d062e9052a6bf05f23b0aaf9", + "x-ms-correlation-request-id": "697706b6-bc90-4b2c-948c-69962dbbf476", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "abb82f2c-8d8d-4b24-88ed-389c1d75b8f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071823Z:697706b6-bc90-4b2c-948c-69962dbbf476" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bfc38cd45b60d96ef21b27265527f948", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ff6a544-4281-475c-bae3-cad2bdbc582a", + "x-ms-client-request-id": "bfc38cd45b60d96ef21b27265527f948", + "x-ms-correlation-request-id": "0970afbb-756a-4934-b1d9-71a4e0c12278", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "b5aa32a1-0d9d-46cc-bbb2-6081b57c39b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071824Z:0970afbb-756a-4934-b1d9-71a4e0c12278" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f56efa49d7891bb97037591457b2c4c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4087b58c-94d8-48b1-8474-5806ee7b1893", + "x-ms-client-request-id": "f56efa49d7891bb97037591457b2c4c7", + "x-ms-correlation-request-id": "b5519dfb-7411-49c1-bd78-cb2edd70dc1f", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "67ddcd69-9a1f-4a4b-aaaa-4a901d470ddc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071825Z:b5519dfb-7411-49c1-bd78-cb2edd70dc1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63fad66ac08385d2ea3d7c46a9de9302", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a7ea0632-367e-4487-81bc-c66267cab02c", + "x-ms-client-request-id": "63fad66ac08385d2ea3d7c46a9de9302", + "x-ms-correlation-request-id": "7f259e5b-0ed6-460e-8ca2-9eb1fd0227b3", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "96b9d26f-90aa-4f81-a402-7add941cc634", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071827Z:7f259e5b-0ed6-460e-8ca2-9eb1fd0227b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2915a871b441fd6fd2a84e290159813f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e749dd3-d82a-4675-8591-88790cbc29ce", + "x-ms-client-request-id": "2915a871b441fd6fd2a84e290159813f", + "x-ms-correlation-request-id": "c369ef39-75f4-49a4-a577-56ac059e79ad", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "e2c7d00e-a96b-4816-85d7-aa29c2ed35d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071828Z:c369ef39-75f4-49a4-a577-56ac059e79ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fbc5f57952c88c427e80a4c5b727192", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54d98946-5252-4626-b8e0-6e6528426a64", + "x-ms-client-request-id": "7fbc5f57952c88c427e80a4c5b727192", + "x-ms-correlation-request-id": "b3d2cab2-958e-4c6b-b9d2-41e1c963ba8b", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "43a9733c-fcdc-45f5-9a70-f51f8c25a34c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071829Z:b3d2cab2-958e-4c6b-b9d2-41e1c963ba8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afa257a39b9db58567fd90db72a98490", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f12848e6-dad0-4d07-96c1-e23f1b577061", + "x-ms-client-request-id": "afa257a39b9db58567fd90db72a98490", + "x-ms-correlation-request-id": "da034fc5-0f8c-4828-b08c-167d588735b6", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "b9fdbdb2-9d41-41eb-ac8a-da99a7e20d21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071831Z:da034fc5-0f8c-4828-b08c-167d588735b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49ef3cbb1422dbd5e48d0158a922a15f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "998fac73-68bf-4fdc-b08a-e7f985a29543", + "x-ms-client-request-id": "49ef3cbb1422dbd5e48d0158a922a15f", + "x-ms-correlation-request-id": "5e922e5c-c6ee-47aa-8620-87b48f5f2f53", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "3fd684f9-ed46-48d3-9ca1-41d8eb2ad165", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071832Z:5e922e5c-c6ee-47aa-8620-87b48f5f2f53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa86bc37d2b7bba2da06182f05e8167e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "218d0f2b-5e82-44a5-9065-b9eee2ea607d", + "x-ms-client-request-id": "aa86bc37d2b7bba2da06182f05e8167e", + "x-ms-correlation-request-id": "b6125e80-7781-4343-9010-bb82c5cba847", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "496b04f4-30f2-4fbd-8db4-41f3542e7eb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071833Z:b6125e80-7781-4343-9010-bb82c5cba847" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e91796427838e7081c6ca10992c0c44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "975fb5f9-1f5a-4396-89d9-d00a5ccf4b2f", + "x-ms-client-request-id": "1e91796427838e7081c6ca10992c0c44", + "x-ms-correlation-request-id": "283f5dd7-2860-434c-8e81-9a1d518d7866", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "67d669fd-64ca-4257-ab6b-e30650f81152", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071834Z:283f5dd7-2860-434c-8e81-9a1d518d7866" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6a4305bda22e8d99a346f1bfca6d6fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ee50821-28d3-4b6b-b1f8-3c5242a6c3ca", + "x-ms-client-request-id": "b6a4305bda22e8d99a346f1bfca6d6fb", + "x-ms-correlation-request-id": "d4b88423-f0a3-4f24-b29b-b1e26b74892d", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "332f2dcb-cd8d-44bf-aeb8-77f6b7a67dd0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071836Z:d4b88423-f0a3-4f24-b29b-b1e26b74892d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ff4827683910fdc4bf728f1079222ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6dcd613-b2ff-4c61-a730-63c61c556436", + "x-ms-client-request-id": "2ff4827683910fdc4bf728f1079222ad", + "x-ms-correlation-request-id": "45fed41f-ef0a-417a-990a-6d8b09f9493b", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "41075930-cfe8-4598-abcd-5df6396adb0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071837Z:45fed41f-ef0a-417a-990a-6d8b09f9493b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4d3d3fa60448a5ba0a8844fb85492db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c5a53f3-b833-4681-9861-456b27e3fed0", + "x-ms-client-request-id": "d4d3d3fa60448a5ba0a8844fb85492db", + "x-ms-correlation-request-id": "024ad5db-a3d0-4c7a-abad-6ce4d20d15ab", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "bb2bf65b-4aa4-4641-ae4b-95a887df5c42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071839Z:024ad5db-a3d0-4c7a-abad-6ce4d20d15ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1799cfefdc38d8b253946a2bb2e8e108", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "278f25e5-23a9-43f8-bdd9-f284ac4d8773", + "x-ms-client-request-id": "1799cfefdc38d8b253946a2bb2e8e108", + "x-ms-correlation-request-id": "26e132e4-5680-4f38-8138-1124025837af", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "1e2ccd0f-e405-4939-824c-1150fc41f624", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071841Z:26e132e4-5680-4f38-8138-1124025837af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2820c11102d316b626698fe9fe8d57f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54e1a0ae-4a28-4aa9-b0bb-2bb9293dc83e", + "x-ms-client-request-id": "2820c11102d316b626698fe9fe8d57f7", + "x-ms-correlation-request-id": "44b46514-b5b1-4ead-be80-56f2f0e5a043", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "2c8dfcb1-2d47-4309-96e0-bcb34593b34a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071842Z:44b46514-b5b1-4ead-be80-56f2f0e5a043" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38014c650af81e7521fa80aff530d8b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7052d2e-c648-4f58-99e2-22fd9a6edd22", + "x-ms-client-request-id": "38014c650af81e7521fa80aff530d8b8", + "x-ms-correlation-request-id": "78ff1c9e-b6dc-4009-a8a4-d33bfb6ee343", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "5d902425-ffaa-4b39-96a8-d8fe0f111eb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071844Z:78ff1c9e-b6dc-4009-a8a4-d33bfb6ee343" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f63d7cc66a33ed081882f0ce4cc8d9c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e9b7e72-257c-4a26-95a9-92ef86b23fd9", + "x-ms-client-request-id": "f63d7cc66a33ed081882f0ce4cc8d9c6", + "x-ms-correlation-request-id": "f813d872-bd95-4552-aeb6-a36defe50c59", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "2d3a9d61-c1a9-4d7e-8d84-639aa6430573", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071845Z:f813d872-bd95-4552-aeb6-a36defe50c59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65c6733da9e6070f4b0207d8810720f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ab18f4e-672e-4268-b266-85789055c5b2", + "x-ms-client-request-id": "65c6733da9e6070f4b0207d8810720f6", + "x-ms-correlation-request-id": "6be49740-8775-407e-bc17-ad2545424737", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "d96598a4-4167-4059-b787-38d374488e33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071846Z:6be49740-8775-407e-bc17-ad2545424737" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8223d7906050fbc343141f761aa6d158", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4074a22c-9b3c-4be3-b1df-848c5e8b05d9", + "x-ms-client-request-id": "8223d7906050fbc343141f761aa6d158", + "x-ms-correlation-request-id": "0225c36c-9c95-4bdd-a74f-0b90331606c2", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "f9e347bb-dd2c-4f43-9c1f-3a6ae504c83d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071848Z:0225c36c-9c95-4bdd-a74f-0b90331606c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8272ba21726a1dd16c36ab3162306b11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4f7f211-c58f-457d-8f87-5cea6f29939e", + "x-ms-client-request-id": "8272ba21726a1dd16c36ab3162306b11", + "x-ms-correlation-request-id": "f94464a6-7a58-4730-a0fb-4a7028fabbc3", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "f2d2dc77-23a1-4f7f-9fc0-7bd94b5ce642", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071849Z:f94464a6-7a58-4730-a0fb-4a7028fabbc3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "753dfa6256a5dd75afcb21d28a99eca4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1c919e7-42d0-4cc4-a3f5-d56536fef888", + "x-ms-client-request-id": "753dfa6256a5dd75afcb21d28a99eca4", + "x-ms-correlation-request-id": "584cd1d0-e737-4648-8c6a-058f41b5a0ca", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "17153b0a-718d-4533-a8ff-a756b0e1b17c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071850Z:584cd1d0-e737-4648-8c6a-058f41b5a0ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7b7ae309d941d8b0505151ab5919813", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f1d4eca-63ad-45db-8340-bce223c8b97f", + "x-ms-client-request-id": "c7b7ae309d941d8b0505151ab5919813", + "x-ms-correlation-request-id": "42f36684-57dc-47c7-a197-3e4c008e1653", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "f4e4fe8a-150b-429d-84be-0430a64c503f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071852Z:42f36684-57dc-47c7-a197-3e4c008e1653" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20130da85b69cab24595d39f51ff93d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fdfd24aa-773f-4932-966d-e2f629893883", + "x-ms-client-request-id": "20130da85b69cab24595d39f51ff93d3", + "x-ms-correlation-request-id": "52e960c3-a5c8-49ee-8363-9d258993a080", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "fe9e8603-68ce-4cb5-99cd-6dea593a4b6c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071853Z:52e960c3-a5c8-49ee-8363-9d258993a080" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4000649a379c47c6e1f709f415a271e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54437cc1-24ff-44d6-8173-fe5a38cfa5ea", + "x-ms-client-request-id": "b4000649a379c47c6e1f709f415a271e", + "x-ms-correlation-request-id": "102f62ea-3fa8-4eed-89c1-bc637241572a", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "71f6e0d2-ddd1-4097-87b2-2df87bd14720", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071854Z:102f62ea-3fa8-4eed-89c1-bc637241572a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c290e33cc85d43bfcec82ffcaebcc05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6718806e-698a-41e2-9d46-96babed9ef2a", + "x-ms-client-request-id": "7c290e33cc85d43bfcec82ffcaebcc05", + "x-ms-correlation-request-id": "f25edc03-891b-4713-bd09-264011aa5cd9", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "1b4d9831-1e8a-430e-9075-8d234f4f6dde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071856Z:f25edc03-891b-4713-bd09-264011aa5cd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afd14172e391059a904fb149eb1289ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4b392f94-b86a-4dd9-a87f-2e3d20707e0d", + "x-ms-client-request-id": "afd14172e391059a904fb149eb1289ea", + "x-ms-correlation-request-id": "27be2364-872e-43aa-97fe-8301c05ec9b2", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "a638cd04-9766-430a-87e3-35314f939468", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071857Z:27be2364-872e-43aa-97fe-8301c05ec9b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "436cb46d16d57d4eca2bb78c217df982", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "083dc68d-4690-4c8b-a4b8-e8a49689dfd0", + "x-ms-client-request-id": "436cb46d16d57d4eca2bb78c217df982", + "x-ms-correlation-request-id": "bf839890-dd9b-4f65-bab2-dba1a61da6e1", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "57be8c8a-ea16-43b8-9a17-29c3f40eb07f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071858Z:bf839890-dd9b-4f65-bab2-dba1a61da6e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff2d6a5378894f8d7324eb351af2e9e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:18:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56ce7946-bc48-4249-ba67-8ed40387c49f", + "x-ms-client-request-id": "ff2d6a5378894f8d7324eb351af2e9e9", + "x-ms-correlation-request-id": "fd85635b-7750-45a0-8538-b41bc7d06a09", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "2f8dbc97-a114-4c07-82f6-9d1b8ca6c111", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071900Z:fd85635b-7750-45a0-8538-b41bc7d06a09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15919763897f5b2ff353e4652c0de313", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b875dacf-9fe6-44af-bf3b-0afd2f7035de", + "x-ms-client-request-id": "15919763897f5b2ff353e4652c0de313", + "x-ms-correlation-request-id": "c201597c-fe61-46fe-bd3e-1035466c1f33", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "ff581513-9d09-4fff-923c-b8dcf8232dd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071901Z:c201597c-fe61-46fe-bd3e-1035466c1f33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80f52e558ae5f561271dcfb12b1862d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f259be7f-bc11-42c8-b624-01b860505c4c", + "x-ms-client-request-id": "80f52e558ae5f561271dcfb12b1862d8", + "x-ms-correlation-request-id": "11e2a0eb-3b84-4800-952e-f3ca3c0cb26e", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "0f1e7cfd-90e1-4f22-aa40-ebbdee28b72e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071902Z:11e2a0eb-3b84-4800-952e-f3ca3c0cb26e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8928ce42e3ebc9033ad10b3593272266", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "482eced4-277a-4d43-9f24-d435d4f93e47", + "x-ms-client-request-id": "8928ce42e3ebc9033ad10b3593272266", + "x-ms-correlation-request-id": "f1646538-484a-4759-ab7d-3232589fb272", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "8a8bbea3-3f00-4191-942a-81a32f32143a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071904Z:f1646538-484a-4759-ab7d-3232589fb272" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecdfd74068fcd903369ced62ba7e30da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20269907-5b75-4cbb-9d7c-cfc9a28f25df", + "x-ms-client-request-id": "ecdfd74068fcd903369ced62ba7e30da", + "x-ms-correlation-request-id": "5974c066-041f-4a06-8f77-ec712ca78e26", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "10ea8682-abef-4973-a255-7e47b192ffce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071905Z:5974c066-041f-4a06-8f77-ec712ca78e26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d230cf159e472282b2c46147e2b6100", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15c6c493-30fc-4a75-83ff-9477e46a4960", + "x-ms-client-request-id": "5d230cf159e472282b2c46147e2b6100", + "x-ms-correlation-request-id": "5c28a4a2-f346-485d-a118-afc3a519eb28", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "0f2dca19-8380-4b45-963d-5a3b1bf212b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071906Z:5c28a4a2-f346-485d-a118-afc3a519eb28" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "547069fa7639d9dbca4f534ef5a10fbc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a80074f2-fbc4-42b2-aeff-9bff1d3e1785", + "x-ms-client-request-id": "547069fa7639d9dbca4f534ef5a10fbc", + "x-ms-correlation-request-id": "60c319ed-2d9b-493e-9393-5de2a96ad9a9", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "359b75d9-961a-4c73-b578-93ac3c4286b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071907Z:60c319ed-2d9b-493e-9393-5de2a96ad9a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "874431a0c404e781af6dc1d022ef5b0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39eda70f-ee45-4d15-b7fc-6faf6813bc4a", + "x-ms-client-request-id": "874431a0c404e781af6dc1d022ef5b0b", + "x-ms-correlation-request-id": "728a6cb9-322e-4110-801a-94bea741c536", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "ab6c7bd5-3895-4fee-aa0c-18809d10dd8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071909Z:728a6cb9-322e-4110-801a-94bea741c536" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5167ed3bdb0d7aa13149939506d97c8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "097b181d-9569-46c7-a9fe-a458114a80b0", + "x-ms-client-request-id": "5167ed3bdb0d7aa13149939506d97c8a", + "x-ms-correlation-request-id": "a1cd59ba-0631-43ef-b85f-d917f63a97cd", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "045e8bc7-00ca-498e-ba4b-1053dbe63b0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071910Z:a1cd59ba-0631-43ef-b85f-d917f63a97cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c73891ddae635fbe789a5cbb50bb6db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b4fb5c5-47c4-48c9-aa38-3b12d778c2d8", + "x-ms-client-request-id": "4c73891ddae635fbe789a5cbb50bb6db", + "x-ms-correlation-request-id": "623f3e34-113c-4717-9671-725ec8250d6e", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "a2102c2b-8571-4217-a5f4-5ed9f4ee3bf4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071912Z:623f3e34-113c-4717-9671-725ec8250d6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "071348f4bd39c4ae90ca55bb31ece0d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ebe3cb9-84ee-4023-a89c-0d7644618f47", + "x-ms-client-request-id": "071348f4bd39c4ae90ca55bb31ece0d5", + "x-ms-correlation-request-id": "09b3e8d1-aee8-4bdd-99b4-9629a12f4ddd", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "26e7a0e8-367b-4f41-9317-b0c4f6d47b38", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071913Z:09b3e8d1-aee8-4bdd-99b4-9629a12f4ddd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "99b336f10e7b6024f232698336d5c526", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84792eba-8394-4176-821a-c4735a026708", + "x-ms-client-request-id": "99b336f10e7b6024f232698336d5c526", + "x-ms-correlation-request-id": "28efa5fb-f922-419b-8c42-01f7b8815ef8", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "1bfccb1f-671f-4e98-94e6-2ae1c0bb1e25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071914Z:28efa5fb-f922-419b-8c42-01f7b8815ef8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bea0b89274c55f50daaebc1c844004fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f02fd11-2409-4485-bdee-e5cee2116952", + "x-ms-client-request-id": "bea0b89274c55f50daaebc1c844004fb", + "x-ms-correlation-request-id": "9d4fbd19-4cb9-4478-80d3-44ba490306ae", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "7412aa78-33b4-4d23-93b0-bf9aeb47a23c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071916Z:9d4fbd19-4cb9-4478-80d3-44ba490306ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7edacfa91d58e65f23b31507532b8dba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "917d6c64-5f4e-4ad5-8ff1-a9c27fab7cb3", + "x-ms-client-request-id": "7edacfa91d58e65f23b31507532b8dba", + "x-ms-correlation-request-id": "befd8c4f-39f6-416b-8431-75f5cfc87c37", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "0c51e375-8c49-4a83-9976-6cde95c33167", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071917Z:befd8c4f-39f6-416b-8431-75f5cfc87c37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79282f04214b7d0fe653becd5107dcb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f1c2f8b-7815-4bc5-bfef-7fca1f8c6b59", + "x-ms-client-request-id": "79282f04214b7d0fe653becd5107dcb2", + "x-ms-correlation-request-id": "ddb71025-be65-4689-aefd-3205214dcd4d", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "12157bb3-c620-4a3e-a5be-440215e89509", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071918Z:ddb71025-be65-4689-aefd-3205214dcd4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67da6e2d46fb75ce58ba9a125e480baf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "03b20f43-1f80-4531-9ea4-a2192c880a53", + "x-ms-client-request-id": "67da6e2d46fb75ce58ba9a125e480baf", + "x-ms-correlation-request-id": "047ce846-4679-4e2a-9fef-83a262ff95aa", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "27e73872-6bdc-47b0-87cf-cee2e9a47806", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071920Z:047ce846-4679-4e2a-9fef-83a262ff95aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "541701208b1887b0bf5d97045f92941c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7312d2fa-f200-426d-afe5-ea5e2b3cfe27", + "x-ms-client-request-id": "541701208b1887b0bf5d97045f92941c", + "x-ms-correlation-request-id": "1684e865-5f2c-451d-8f4c-7d4d3f184875", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "dadde293-72cd-457d-b229-c312005a0690", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071921Z:1684e865-5f2c-451d-8f4c-7d4d3f184875" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5d963d62650bdbf61b2209087fd1e9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f62b787-9b17-4b11-aaeb-6af4a839a7e9", + "x-ms-client-request-id": "e5d963d62650bdbf61b2209087fd1e9d", + "x-ms-correlation-request-id": "5406bdc7-b404-4073-98d2-5ea48593feea", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "0ea4a5a9-6044-4a6a-b37e-ed446ca5f499", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071922Z:5406bdc7-b404-4073-98d2-5ea48593feea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4fac0f4787f0a29abd53a89eaec916c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0c38dd8-3b0a-4eba-981b-876efb6f4993", + "x-ms-client-request-id": "4fac0f4787f0a29abd53a89eaec916c6", + "x-ms-correlation-request-id": "08c31991-17b1-444a-85af-a763d7468c06", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "d6e1bb21-efbe-4015-9800-4bd89f216380", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071923Z:08c31991-17b1-444a-85af-a763d7468c06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb3b7e26256ffa5e4159f2656a1f00c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c2c102c9-0fbe-4ce4-bb2e-993df077afa1", + "x-ms-client-request-id": "fb3b7e26256ffa5e4159f2656a1f00c2", + "x-ms-correlation-request-id": "4cf49e71-f079-4274-80f1-f966f987d393", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "0a3079df-1d2c-4615-bb19-4fd972c5fd96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071925Z:4cf49e71-f079-4274-80f1-f966f987d393" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50bcfa3e44e54f2bc93628fd7e210f98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2643a4e4-4b31-4eb6-8d60-493d260eb137", + "x-ms-client-request-id": "50bcfa3e44e54f2bc93628fd7e210f98", + "x-ms-correlation-request-id": "9839f859-e193-40f6-ad15-a024aaf7db79", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "ca034e80-f283-4909-8a8e-63d7f5880983", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071926Z:9839f859-e193-40f6-ad15-a024aaf7db79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "086a599c22c1212eb0b20e969534379d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ffe928d-e1da-42b5-85ea-55284f7c79b0", + "x-ms-client-request-id": "086a599c22c1212eb0b20e969534379d", + "x-ms-correlation-request-id": "cb1df7f6-4632-449a-8eda-88e87e2bc308", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "0902345f-cbf7-4a69-adbc-2922b2bcbde8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071927Z:cb1df7f6-4632-449a-8eda-88e87e2bc308" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b45fe552c60ce1e052ec3238fd617b20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ecbbb1c-0fcd-43fe-aeec-fb2c2680a132", + "x-ms-client-request-id": "b45fe552c60ce1e052ec3238fd617b20", + "x-ms-correlation-request-id": "909d4c08-f4c3-4984-b8f1-c31c74183f32", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "3738b829-5ac8-499d-96e6-558bfa81d3d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071929Z:909d4c08-f4c3-4984-b8f1-c31c74183f32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11c85a4af7b51c00cc9a9f333695ba94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26eae68a-04ac-4b08-88f8-20749ea954d6", + "x-ms-client-request-id": "11c85a4af7b51c00cc9a9f333695ba94", + "x-ms-correlation-request-id": "87ecf4b1-0bdc-4b61-8a2e-5c29033bf852", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "ebe7c1b3-5973-4ad1-9115-1c79c607d708", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071930Z:87ecf4b1-0bdc-4b61-8a2e-5c29033bf852" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98aa8afe5ac2d68b7988b5d5f0f5234f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cabf0651-375d-484e-bd5e-1b16d6d80540", + "x-ms-client-request-id": "98aa8afe5ac2d68b7988b5d5f0f5234f", + "x-ms-correlation-request-id": "4c866142-b192-4257-8c5c-4c206a817762", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "977ed231-6a08-4dbf-92ad-c144b68df788", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071931Z:4c866142-b192-4257-8c5c-4c206a817762" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a4bed36266c5be8e543e87126acabbd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3fc9f13-301c-4ba4-b15f-95518f1cd99b", + "x-ms-client-request-id": "3a4bed36266c5be8e543e87126acabbd", + "x-ms-correlation-request-id": "cf28efe5-0ed5-4477-b548-b276905bf0f3", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "f75aad59-ce89-41f4-945e-c5114230ad75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071933Z:cf28efe5-0ed5-4477-b548-b276905bf0f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73399e32e3b6f05dcef1982c412b2bd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15310515-9be1-427b-9c67-bb069c58ead3", + "x-ms-client-request-id": "73399e32e3b6f05dcef1982c412b2bd6", + "x-ms-correlation-request-id": "85e766ef-50c7-4643-83c4-a0347e1bb763", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "7241db54-e2e3-4bdd-b3d7-150c4c15dead", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071934Z:85e766ef-50c7-4643-83c4-a0347e1bb763" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48fd50777f4ad827a14fb37f7219b0cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56f71fa2-19f3-4fea-a095-cc62bb836336", + "x-ms-client-request-id": "48fd50777f4ad827a14fb37f7219b0cc", + "x-ms-correlation-request-id": "bf29dfaf-1b7f-48fd-82b9-7bc0ed854bca", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "7fc39647-c175-4314-b651-c6543bc0c9a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071935Z:bf29dfaf-1b7f-48fd-82b9-7bc0ed854bca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51a3f8ddb0bb52998f5b6c7a8ebb19ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc1b27f6-8365-4070-a58d-61f89a4659bc", + "x-ms-client-request-id": "51a3f8ddb0bb52998f5b6c7a8ebb19ba", + "x-ms-correlation-request-id": "25a4bcb5-94a5-41ae-ba4e-6f85eba253ea", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "34174928-6a10-4f70-9128-e7d43e9378ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071937Z:25a4bcb5-94a5-41ae-ba4e-6f85eba253ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6fa111762afb2727661d16630de7db4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e862d00-7a2a-45b9-b590-b94399e6239a", + "x-ms-client-request-id": "d6fa111762afb2727661d16630de7db4", + "x-ms-correlation-request-id": "aed68074-a412-4394-afaf-fe37a7513bca", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "bdf66277-6b77-47ee-8bf0-ccdaeffa5c90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071938Z:aed68074-a412-4394-afaf-fe37a7513bca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "484ecc41da88c61bb7abb8ee13ac49e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a39eb019-20ba-46ba-b976-9e3d9463d144", + "x-ms-client-request-id": "484ecc41da88c61bb7abb8ee13ac49e5", + "x-ms-correlation-request-id": "6cd8211a-1c30-4694-bcc2-f94098684b03", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "958bed66-db63-48ac-bb97-79dd31fdf01c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071940Z:6cd8211a-1c30-4694-bcc2-f94098684b03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6067f835da1f7b1c85f0db5ade3222b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8160294-c1b2-4cd9-a9ad-cd12cd9526bf", + "x-ms-client-request-id": "6067f835da1f7b1c85f0db5ade3222b1", + "x-ms-correlation-request-id": "b4ea4a04-ab73-4a6a-a96d-50e522d4a608", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "df1348df-5c28-4d00-a476-d5fad49987f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071941Z:b4ea4a04-ab73-4a6a-a96d-50e522d4a608" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c239b7ddd16c3c31f6331f04a9849fc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6052133e-a13c-4da6-95d5-eb81861f9da6", + "x-ms-client-request-id": "c239b7ddd16c3c31f6331f04a9849fc9", + "x-ms-correlation-request-id": "058d5e0a-17c0-4aaa-a75e-31a95edc341b", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "adbeba3d-b978-44e7-a6d4-73c0d1198863", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071942Z:058d5e0a-17c0-4aaa-a75e-31a95edc341b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3731eb181c766795afd3c298ffc0e884", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c2cb2663-1a31-458f-a744-9f24d0b64902", + "x-ms-client-request-id": "3731eb181c766795afd3c298ffc0e884", + "x-ms-correlation-request-id": "ae39d819-40b0-4710-b612-fb8eff1a670c", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "d0dd2a8b-de0b-44b8-8d22-529e516061f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071943Z:ae39d819-40b0-4710-b612-fb8eff1a670c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b11078887736479c72a6aebbb18d101", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "424b1db9-1477-4548-b52f-f3587e0efc81", + "x-ms-client-request-id": "5b11078887736479c72a6aebbb18d101", + "x-ms-correlation-request-id": "49afbd7e-0d79-4599-bfe7-e6e8a0fc653b", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "c960baac-0607-4ce5-8d91-3d005b7846c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071945Z:49afbd7e-0d79-4599-bfe7-e6e8a0fc653b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2421150ea00c03a21d213980e993d35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d038e9ad-356d-4cd0-b556-823635f98712", + "x-ms-client-request-id": "f2421150ea00c03a21d213980e993d35", + "x-ms-correlation-request-id": "06e5b8af-2ef3-4f29-9357-cc0d7ea43c51", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "e357183c-4acf-4c4f-b9ba-8f84093b1174", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071946Z:06e5b8af-2ef3-4f29-9357-cc0d7ea43c51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a17b9a4b4473905672cc704bb2a9ac96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0cec3561-6b11-4f71-88de-eb674c5d88bc", + "x-ms-client-request-id": "a17b9a4b4473905672cc704bb2a9ac96", + "x-ms-correlation-request-id": "79353736-b0da-42c2-a016-d1ecca67171d", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "bae4b63e-6119-46df-8a8f-016d54a6dd36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071947Z:79353736-b0da-42c2-a016-d1ecca67171d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed47c102f67e9e83cd5039a073e0562d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06ff8503-a5ce-462a-a5a3-0478d0ede13a", + "x-ms-client-request-id": "ed47c102f67e9e83cd5039a073e0562d", + "x-ms-correlation-request-id": "226eb798-4c33-4a34-942a-46f6ea90c36b", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "3d524a7d-980c-40d4-8f82-f039b3b47042", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071948Z:226eb798-4c33-4a34-942a-46f6ea90c36b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20a035ed2f9d0b8ebbb17f3479ee0e77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1fc064f1-978b-4c30-be23-bac12964bca5", + "x-ms-client-request-id": "20a035ed2f9d0b8ebbb17f3479ee0e77", + "x-ms-correlation-request-id": "432041c0-4acb-445d-86e3-7266e5e40aac", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "56577b6a-d77e-4d8d-8356-875e8562121a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071950Z:432041c0-4acb-445d-86e3-7266e5e40aac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d967c26505154b616dcd4220ab51c92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae019e72-e995-4c38-87ce-359f173f0b58", + "x-ms-client-request-id": "4d967c26505154b616dcd4220ab51c92", + "x-ms-correlation-request-id": "2a97bade-2677-4e49-afde-7f81009a3131", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "2a8f251b-1cbb-465c-aae5-2cd40220c1a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071951Z:2a97bade-2677-4e49-afde-7f81009a3131" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d5e43768b09d2f8323c32cd764f24de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2400b267-a6bd-401e-b31a-63fee00e52fd", + "x-ms-client-request-id": "7d5e43768b09d2f8323c32cd764f24de", + "x-ms-correlation-request-id": "1fc05b58-f742-4d92-9dab-09bef4ae817f", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "365881c9-a5ee-4f72-b260-f24a0cb6fd17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071952Z:1fc05b58-f742-4d92-9dab-09bef4ae817f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f77ac14209499cdb7e4b0ac05b6c0106", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f4c4e35-75f1-4052-b8a0-72fc2dd65b6b", + "x-ms-client-request-id": "f77ac14209499cdb7e4b0ac05b6c0106", + "x-ms-correlation-request-id": "58c8c422-2b2e-4084-94f2-b6e9e439c3d0", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "196b16a6-0538-4d50-9be0-e2130dead1ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071954Z:58c8c422-2b2e-4084-94f2-b6e9e439c3d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36bdec94918f9b6e83c41a151ee8dec6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "033f4867-7c0e-43bb-9b7d-ebbb9b542770", + "x-ms-client-request-id": "36bdec94918f9b6e83c41a151ee8dec6", + "x-ms-correlation-request-id": "c580f4fb-14b6-4aed-9526-796b7ac58b44", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "05c73bb2-fde1-4af7-8ec8-ef7bcf9779d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071955Z:c580f4fb-14b6-4aed-9526-796b7ac58b44" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49e0f5b8253a6d4967c1febd803877c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "464ccc6c-8cc2-4713-b7db-cdd88f010faa", + "x-ms-client-request-id": "49e0f5b8253a6d4967c1febd803877c6", + "x-ms-correlation-request-id": "54895e24-79a6-4b37-a701-6b67ba1cfb55", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "cbef968e-6e93-4a9b-88de-a9b9e595ecfb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071956Z:54895e24-79a6-4b37-a701-6b67ba1cfb55" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89392c3aed91b14e53df7385eec57e95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e232e0fb-2f71-4bd0-89a0-e69a30833e0b", + "x-ms-client-request-id": "89392c3aed91b14e53df7385eec57e95", + "x-ms-correlation-request-id": "bcc164f3-e660-4045-8473-137079142988", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "51aceb06-b004-4a12-9cc3-61897a8b07c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071957Z:bcc164f3-e660-4045-8473-137079142988" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6508436db88b6ecba350cfcd92b01a4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:19:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6be0d963-654b-48b6-b07a-1f50f45003eb", + "x-ms-client-request-id": "6508436db88b6ecba350cfcd92b01a4b", + "x-ms-correlation-request-id": "2d9b31a4-d920-45fa-9535-6c579997babf", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "756f7271-9686-4266-8835-d94f4b6e2d62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T071959Z:2d9b31a4-d920-45fa-9535-6c579997babf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1da544c54afca34a62ff55bb2c37ea1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3854280-307e-4df3-81f7-5e1306a34bc3", + "x-ms-client-request-id": "f1da544c54afca34a62ff55bb2c37ea1", + "x-ms-correlation-request-id": "4b21c7f3-72de-4504-953c-7817b45eb64e", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "1ee564c0-a844-4e3f-bfa7-fc9163737653", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072000Z:4b21c7f3-72de-4504-953c-7817b45eb64e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c506943122f823a60cbe5411e811ea2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f394cc66-5481-47af-9168-2bcae68f3738", + "x-ms-client-request-id": "3c506943122f823a60cbe5411e811ea2", + "x-ms-correlation-request-id": "dbd90cfd-3596-49e5-a456-fba407bb4a22", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "11d5f277-c555-4a53-96fe-db505adcfd56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072001Z:dbd90cfd-3596-49e5-a456-fba407bb4a22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "993827c48ceb18e60f3ebe5cc26fbbdf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69c3d502-c501-4d5b-9a6e-b1c9ba10559a", + "x-ms-client-request-id": "993827c48ceb18e60f3ebe5cc26fbbdf", + "x-ms-correlation-request-id": "72a1ee1c-1e57-43f1-8739-4b5456d28656", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "600a6ad1-f371-4efa-8dba-8f3b9ea0649d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072003Z:72a1ee1c-1e57-43f1-8739-4b5456d28656" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "298a2dd1dd5f3a1c1a5791e46ef3ac25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa1a4300-b1fa-429b-8cce-ab1a656c30ed", + "x-ms-client-request-id": "298a2dd1dd5f3a1c1a5791e46ef3ac25", + "x-ms-correlation-request-id": "0295e940-97ed-4152-8a36-bc2036c369c2", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "53a9795e-afff-4c5f-889e-8f7da69701cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072004Z:0295e940-97ed-4152-8a36-bc2036c369c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b975310e58bb6b683382df153dec0f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf96cf83-b5a6-4d5a-ab0a-7c755031c613", + "x-ms-client-request-id": "8b975310e58bb6b683382df153dec0f1", + "x-ms-correlation-request-id": "2d052139-6fda-460a-8d1e-ccae2ed1799a", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "e9bcc0ce-2753-48c8-a0eb-fce117951449", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072005Z:2d052139-6fda-460a-8d1e-ccae2ed1799a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f06f060ff5f6e6420afe7f93fb01a91b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "70465b40-9492-4d2d-9a25-01129cb51e68", + "x-ms-client-request-id": "f06f060ff5f6e6420afe7f93fb01a91b", + "x-ms-correlation-request-id": "4a94f93a-4b43-4824-a6bf-534ed3ed4f3d", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "e7c3d7ce-7779-4657-9e3b-86a9b7de1efa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072006Z:4a94f93a-4b43-4824-a6bf-534ed3ed4f3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e4b98912fd7ec5477d4a527b02ae63b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08baef3b-d038-4993-967b-c28d3cd79e74", + "x-ms-client-request-id": "6e4b98912fd7ec5477d4a527b02ae63b", + "x-ms-correlation-request-id": "fd37aefa-d6c6-4540-81c5-008a3e95fa0f", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "2c0ea543-4b42-4b60-85ce-3c053a503187", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072008Z:fd37aefa-d6c6-4540-81c5-008a3e95fa0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68d49f97bb841a2f10b0808c6522ba81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ed5c87b-3c7e-402e-923b-705c407b7c15", + "x-ms-client-request-id": "68d49f97bb841a2f10b0808c6522ba81", + "x-ms-correlation-request-id": "0e9918fd-acce-43b5-b2cd-8cd234f3ea8e", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "5fd097b9-e2f6-40ea-bae0-47c074208f2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072009Z:0e9918fd-acce-43b5-b2cd-8cd234f3ea8e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba5f118f5192e019b18378214f1b36df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57206769-7142-4c27-b6eb-277a1982dbcd", + "x-ms-client-request-id": "ba5f118f5192e019b18378214f1b36df", + "x-ms-correlation-request-id": "189befcc-7bcc-470e-acba-1a04f96adedb", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "828db0e9-2c4d-4f1b-90cd-5f6c400c352f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072010Z:189befcc-7bcc-470e-acba-1a04f96adedb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cfc4317402dd59769305e26afc88655", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1fb7c11c-2609-41a5-9174-553fd9b4438f", + "x-ms-client-request-id": "5cfc4317402dd59769305e26afc88655", + "x-ms-correlation-request-id": "e6aa6717-6f42-4a62-b2af-c8c3295e8a14", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "640c99a9-ede3-46ee-b719-042bb6520a1b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072012Z:e6aa6717-6f42-4a62-b2af-c8c3295e8a14" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e9824192ccb45a985f4b700430dcbf4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6eaef81-66df-4721-8699-1fb8ab96d6e1", + "x-ms-client-request-id": "9e9824192ccb45a985f4b700430dcbf4", + "x-ms-correlation-request-id": "f909cf7f-9343-49a9-9004-7c893f458ce9", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "c333636d-51ee-4ef2-bf0e-ae49129ff257", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072013Z:f909cf7f-9343-49a9-9004-7c893f458ce9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2274a07a5e264e537a895162f3f230e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c079281-16b4-478b-8dea-8f9348958001", + "x-ms-client-request-id": "2274a07a5e264e537a895162f3f230e9", + "x-ms-correlation-request-id": "074b17af-6aed-4c72-b77b-cc8b51188fe9", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "a2cf7587-8336-4615-96e7-95f5fc5eb8d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072014Z:074b17af-6aed-4c72-b77b-cc8b51188fe9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b0723fc9883eb149ab7d6398996925b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33e2a07e-2799-4f62-904b-7bb37c50557c", + "x-ms-client-request-id": "2b0723fc9883eb149ab7d6398996925b", + "x-ms-correlation-request-id": "c534b11d-8981-434c-bdf5-170848dd1a30", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "2c57944f-a451-49b3-8e82-bcd11cf4e1ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072015Z:c534b11d-8981-434c-bdf5-170848dd1a30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0eac69656453bb2fd0492341da475292", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ceae1308-9b1a-4945-97d9-b1d796aa74f0", + "x-ms-client-request-id": "0eac69656453bb2fd0492341da475292", + "x-ms-correlation-request-id": "7b54a760-82e8-4d22-b3a5-1510d202ee22", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "3ddcb600-83cf-482e-805d-9e9c3b586567", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072017Z:7b54a760-82e8-4d22-b3a5-1510d202ee22" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2004cdc39f05e2718c89876e871ac5e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "355c44cf-413b-4c06-9acf-6354b95b36d8", + "x-ms-client-request-id": "2004cdc39f05e2718c89876e871ac5e3", + "x-ms-correlation-request-id": "2c0bf712-46ea-4738-b257-e26857b1a37e", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "2ac2cfc6-8afe-453e-8781-2cd1636e737e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072018Z:2c0bf712-46ea-4738-b257-e26857b1a37e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89fcf5f722469896f44b5a3a74d21053", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0f91ded-7d5e-4ae2-87c7-02b3874f1632", + "x-ms-client-request-id": "89fcf5f722469896f44b5a3a74d21053", + "x-ms-correlation-request-id": "d7c92ee8-0133-4c26-ad52-f5e0515d96a4", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "a773a235-eb32-4b4c-be12-716db0646934", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072019Z:d7c92ee8-0133-4c26-ad52-f5e0515d96a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb7544657192c656f8c982cadcc034b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "677aebc8-a10d-42ea-b026-e6312ddb68ca", + "x-ms-client-request-id": "bb7544657192c656f8c982cadcc034b5", + "x-ms-correlation-request-id": "a4c3473c-8449-459a-ab0f-6df5d1d60100", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "e38ed8e1-3459-49c6-bcbd-18ba077e52c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072021Z:a4c3473c-8449-459a-ab0f-6df5d1d60100" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e54a4084c84aa04c376c2cb944366eb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6451c831-c811-4074-89f9-e608d82959c4", + "x-ms-client-request-id": "e54a4084c84aa04c376c2cb944366eb9", + "x-ms-correlation-request-id": "b6ca10b4-5d14-475a-9759-62a4a56c95d0", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "77427152-d58f-4cd4-8a64-5ba792b0522a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072022Z:b6ca10b4-5d14-475a-9759-62a4a56c95d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4309347809a585519f36907ca0cbbb33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a27a5c03-d3c8-490a-90c3-b5e06c8b09da", + "x-ms-client-request-id": "4309347809a585519f36907ca0cbbb33", + "x-ms-correlation-request-id": "0be07e42-007b-43d0-be01-697a3810e492", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "b5e169cb-c3ff-4ec2-a620-59613a36dbc1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072023Z:0be07e42-007b-43d0-be01-697a3810e492" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33b5a5172b889c08f7d48326459c81c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da938eba-4c9a-43a5-943a-d2eca555b10a", + "x-ms-client-request-id": "33b5a5172b889c08f7d48326459c81c1", + "x-ms-correlation-request-id": "4ef6942a-c4a3-4fde-8007-54bf37d1b5d8", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "dc11becd-9b46-4f82-86da-38b45829cdac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072024Z:4ef6942a-c4a3-4fde-8007-54bf37d1b5d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a851c85bf1b67a10efc5451438cf006b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "950236ab-d487-4ed7-8545-cf538cfe7a60", + "x-ms-client-request-id": "a851c85bf1b67a10efc5451438cf006b", + "x-ms-correlation-request-id": "83748127-2116-4873-939f-79193a82484d", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "6c39e5aa-0bac-4f4c-ad18-ba3f98c5be29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072026Z:83748127-2116-4873-939f-79193a82484d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fa2f8b13a814c312b6d4bd0862b3f03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e884956f-a355-4c92-b141-b56d16f2177d", + "x-ms-client-request-id": "9fa2f8b13a814c312b6d4bd0862b3f03", + "x-ms-correlation-request-id": "000e8d9f-5672-4307-b73b-28ca34f89312", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "3d54fd62-f045-423c-bfac-a18e32f6b88e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072027Z:000e8d9f-5672-4307-b73b-28ca34f89312" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d720ceb4127a257d943b44c2e5f46427", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2692e761-2885-4a22-9ab9-829e5e3d4390", + "x-ms-client-request-id": "d720ceb4127a257d943b44c2e5f46427", + "x-ms-correlation-request-id": "a752be33-e309-4b10-a79e-c716da1dca2d", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "2689812a-764d-4ff8-9ccb-e04469b3ac93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072028Z:a752be33-e309-4b10-a79e-c716da1dca2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d7417d4e2f9214097047c49a640f4c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "727ffc0a-a9f3-4033-9462-2d2d95026956", + "x-ms-client-request-id": "4d7417d4e2f9214097047c49a640f4c3", + "x-ms-correlation-request-id": "27bf399b-cf43-4c4f-8f05-6ce84d77b901", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "7a5c09cb-f9c8-427d-afdd-fb61b204c000", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072029Z:27bf399b-cf43-4c4f-8f05-6ce84d77b901" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "695f428528af9ef17a7c0a45f56e6737", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3aa1d9e4-fc0d-434d-9ef4-b4eaae555022", + "x-ms-client-request-id": "695f428528af9ef17a7c0a45f56e6737", + "x-ms-correlation-request-id": "4790194f-3c60-4f3c-a181-7fc70e38d966", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "a5021c60-2f0c-43e5-9fbe-47e1a8abfcb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072031Z:4790194f-3c60-4f3c-a181-7fc70e38d966" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6efb2309f2b6d2098dff407595347f53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3b99b26-030e-4b81-927f-878d78b36dd2", + "x-ms-client-request-id": "6efb2309f2b6d2098dff407595347f53", + "x-ms-correlation-request-id": "1bf790b4-c4ca-49a6-92a0-811f33fb6eee", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "04e0665c-df0b-4f81-b757-2f3ab3e344d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072032Z:1bf790b4-c4ca-49a6-92a0-811f33fb6eee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a23d8047fa94ac7826d6d27dd7fb2b28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c6391f2-23ea-44a8-b332-658dc7dcbbc0", + "x-ms-client-request-id": "a23d8047fa94ac7826d6d27dd7fb2b28", + "x-ms-correlation-request-id": "31105459-6f79-495b-a72a-149a81127766", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "7b65e346-b4b5-4ebb-aff7-32a4876943f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072034Z:31105459-6f79-495b-a72a-149a81127766" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "823f459d8545930d398ddcafe77c0846", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6844562b-a22d-4654-88a8-79567a091551", + "x-ms-client-request-id": "823f459d8545930d398ddcafe77c0846", + "x-ms-correlation-request-id": "658f382a-b3f4-4793-add8-68590751ce37", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "bc0915cd-b792-4742-976e-88cbb961a685", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072035Z:658f382a-b3f4-4793-add8-68590751ce37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74feb6fdc4310fa3aa4f48df208bfa92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47172f43-c00b-483b-89b7-d7a6f9735122", + "x-ms-client-request-id": "74feb6fdc4310fa3aa4f48df208bfa92", + "x-ms-correlation-request-id": "f71cab7a-809d-45bc-824b-681d2b6e4649", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "a5a4edff-8201-4375-b085-128073ef4b06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072036Z:f71cab7a-809d-45bc-824b-681d2b6e4649" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50d717d3fcf4c10e73aa69061ec9c4aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "19af2d11-c85f-457f-adb5-2b5d919f6831", + "x-ms-client-request-id": "50d717d3fcf4c10e73aa69061ec9c4aa", + "x-ms-correlation-request-id": "dbdab1fb-c9ca-4fce-9007-349b8a3fa337", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "0cd8b319-f1e1-489a-8870-c021e9b595b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072038Z:dbdab1fb-c9ca-4fce-9007-349b8a3fa337" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20808bceb7fcd9f7a130d7f63d2e72ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9706cc7-24bb-4037-a51e-2f39a214cd97", + "x-ms-client-request-id": "20808bceb7fcd9f7a130d7f63d2e72ad", + "x-ms-correlation-request-id": "0288640a-6ad0-4cff-9228-e2f2e108f007", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "377a5da9-cef2-4a9c-a6d5-ea601a7dc1fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072039Z:0288640a-6ad0-4cff-9228-e2f2e108f007" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0db4992b7a40051a83d01865a9cf1e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4419fc3a-2966-42cd-9919-0f48d7e4a06f", + "x-ms-client-request-id": "d0db4992b7a40051a83d01865a9cf1e1", + "x-ms-correlation-request-id": "b16e5df9-a6b1-4d7e-b255-12b3f365ac39", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "ea160c68-62c9-476c-ae52-64c55db7f8b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072040Z:b16e5df9-a6b1-4d7e-b255-12b3f365ac39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94119e8ada0b1c951ffeaec325188345", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5436ac0-2ddc-4d11-a1c0-d25f6f7721aa", + "x-ms-client-request-id": "94119e8ada0b1c951ffeaec325188345", + "x-ms-correlation-request-id": "e2e6a509-a179-40c2-9097-9ad378dcdd23", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "9074b34c-2b28-48a9-b680-b23af245fd7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072041Z:e2e6a509-a179-40c2-9097-9ad378dcdd23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d474bb37f3ed1606398078bfb5717e05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7d78057-817d-4652-8c20-2e56dd3fafd8", + "x-ms-client-request-id": "d474bb37f3ed1606398078bfb5717e05", + "x-ms-correlation-request-id": "24af4c98-295f-4ab9-a705-50d1e35514b3", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "0179894a-a561-4a17-823a-225d19dd47f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072043Z:24af4c98-295f-4ab9-a705-50d1e35514b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f6bf63fde1cb8a2b4beb0a5088dda8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2395c12a-2eac-4ac8-a421-c57645002412", + "x-ms-client-request-id": "9f6bf63fde1cb8a2b4beb0a5088dda8f", + "x-ms-correlation-request-id": "15a57557-7f9f-4771-8db4-f0ca4c5390ef", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "e57399fc-1dca-4d1e-b2fc-23a9deac6a6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072044Z:15a57557-7f9f-4771-8db4-f0ca4c5390ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f4fbcb91c2796f398fb5a8b62d667ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c76acab-2c26-46f9-a43c-bc812b0a4b86", + "x-ms-client-request-id": "9f4fbcb91c2796f398fb5a8b62d667ae", + "x-ms-correlation-request-id": "dc4980ef-6fcb-445f-89cc-e7840b75c28b", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "85cfe16e-2b95-46db-afc4-69be04c8a586", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072045Z:dc4980ef-6fcb-445f-89cc-e7840b75c28b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e84a980e4ad592819bc1f2f43600dac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81e67fd7-1405-402f-a2e3-df25537ac439", + "x-ms-client-request-id": "2e84a980e4ad592819bc1f2f43600dac", + "x-ms-correlation-request-id": "32b111aa-69ff-4613-afcb-25125fb2e369", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "badfb917-a28d-4b62-b198-4cf085b69e94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072047Z:32b111aa-69ff-4613-afcb-25125fb2e369" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f905e8a5df2122dd03d40721831655de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93731239-0112-4c6b-946b-64fb66365bc2", + "x-ms-client-request-id": "f905e8a5df2122dd03d40721831655de", + "x-ms-correlation-request-id": "274d46ad-821f-4b5e-aa38-b5991195ba97", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "9bc1c602-0356-4691-8028-c2b6b14f2327", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072048Z:274d46ad-821f-4b5e-aa38-b5991195ba97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f250157ac09d5e293f6866bfcc45337", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ece8e4c0-0af3-4c3e-b4aa-9df2a92f6530", + "x-ms-client-request-id": "5f250157ac09d5e293f6866bfcc45337", + "x-ms-correlation-request-id": "4d28f11c-175c-44c9-9dd5-5c3a16ee3668", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "2fefee86-a4ee-47ab-a3fb-03fb72c9cbe6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072049Z:4d28f11c-175c-44c9-9dd5-5c3a16ee3668" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ae6aeed6dd0a08ccb612bd8dc07d502", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8dd0e3d9-59a8-4eec-ac08-f5a1349d32a6", + "x-ms-client-request-id": "7ae6aeed6dd0a08ccb612bd8dc07d502", + "x-ms-correlation-request-id": "ba9f933a-a801-4caf-a289-23d93f614808", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "8ccd1df1-f753-4793-9b5a-90bc4fefeb7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072050Z:ba9f933a-a801-4caf-a289-23d93f614808" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41d74166ae3bf8a2052f652b5972253f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3bb398b5-4b49-40c8-83a7-cf24fb59d91b", + "x-ms-client-request-id": "41d74166ae3bf8a2052f652b5972253f", + "x-ms-correlation-request-id": "15670746-4f47-4d21-80df-45be7c33bbbb", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "71ccdf38-fb22-4fbe-a7f0-cf1c9c4f3adc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072052Z:15670746-4f47-4d21-80df-45be7c33bbbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d533cf80db30e90d748493a88109f98c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39da7685-ff97-4e45-ab93-9c68674fd037", + "x-ms-client-request-id": "d533cf80db30e90d748493a88109f98c", + "x-ms-correlation-request-id": "3f3a982d-e590-4714-8a44-b8729ac8ddf8", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "dc1dd5f0-bd70-4dc6-b9f3-65e880055f27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072053Z:3f3a982d-e590-4714-8a44-b8729ac8ddf8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb04832011ec3ffc0bed74a008614759", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "171cb8c0-6377-44e5-b7e7-326db02375cb", + "x-ms-client-request-id": "bb04832011ec3ffc0bed74a008614759", + "x-ms-correlation-request-id": "e168087f-6e31-41d5-b272-e1f04e78992f", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "7eb8ceee-2028-4ce4-af68-c26b0de6075f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072054Z:e168087f-6e31-41d5-b272-e1f04e78992f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d58ec3bffd38ad233edccb61bfa77fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee0a7e9a-f893-49f1-8d23-5eadacabbe02", + "x-ms-client-request-id": "0d58ec3bffd38ad233edccb61bfa77fb", + "x-ms-correlation-request-id": "52e8d354-d8cb-451e-8c9b-f631811fd162", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "92c64bbc-57cf-4bf3-97a7-e9555a4d161d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072055Z:52e8d354-d8cb-451e-8c9b-f631811fd162" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d50ad8366a6d6e52d3f4c942676de013", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "704c89bd-5fd5-407d-9106-a1c4869fda66", + "x-ms-client-request-id": "d50ad8366a6d6e52d3f4c942676de013", + "x-ms-correlation-request-id": "662ff6e3-ba4d-40f3-b567-84313e4e6050", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "e8ce4c8d-55ff-404b-8d12-339c5ce31297", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072057Z:662ff6e3-ba4d-40f3-b567-84313e4e6050" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "946c393cecb121b8b17a87fe45452411", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7bb4e50f-2bfe-4786-82db-7b6ccca6cd37", + "x-ms-client-request-id": "946c393cecb121b8b17a87fe45452411", + "x-ms-correlation-request-id": "1a83a3d7-180a-468f-a296-2a2e4011a189", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "0596facb-d9d5-4a97-88a5-c0b894546403", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072058Z:1a83a3d7-180a-468f-a296-2a2e4011a189" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f6979767256d1ec99e939df368f23c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:20:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dbc8850d-4994-4e28-9f74-4b387f5c4eb1", + "x-ms-client-request-id": "2f6979767256d1ec99e939df368f23c6", + "x-ms-correlation-request-id": "ab39274d-8aca-415e-bdb5-8ecf4367f8e9", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "5e136677-2eb8-451c-b6b4-b3f88e273f6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072059Z:ab39274d-8aca-415e-bdb5-8ecf4367f8e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e17ab90ce28d4a4920e923f2e253298d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1fa0a57-6049-40f7-89d4-ad86e15b2225", + "x-ms-client-request-id": "e17ab90ce28d4a4920e923f2e253298d", + "x-ms-correlation-request-id": "a3d9d231-7221-4001-9c2f-3c2440fd564c", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "978c5e16-d43b-4842-811e-e8ddf7cc9d90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072101Z:a3d9d231-7221-4001-9c2f-3c2440fd564c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eeccb7cfb103cabd4c9bfac8b2d8eb22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f79a58bc-55fd-48ec-97fc-e5dbaf273544", + "x-ms-client-request-id": "eeccb7cfb103cabd4c9bfac8b2d8eb22", + "x-ms-correlation-request-id": "9065a933-e04d-4a3c-81f9-ad6e723ba634", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "5aaf06f7-f7e5-4021-84d0-ce4a079054a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072102Z:9065a933-e04d-4a3c-81f9-ad6e723ba634" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bf1c15642cb93832f1f0f6c4ef9ee46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff263776-c65f-4230-8f0a-b6d16b6ccc36", + "x-ms-client-request-id": "8bf1c15642cb93832f1f0f6c4ef9ee46", + "x-ms-correlation-request-id": "2b6e9774-01da-4fdb-98f4-ebf84bac348b", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "f9c5501d-fd12-4d2e-bff6-59b2021f10db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072103Z:2b6e9774-01da-4fdb-98f4-ebf84bac348b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e0facbf35c25bc3fcaf94f2e7819847", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3120adde-a89f-4d6b-88e9-377575df3987", + "x-ms-client-request-id": "7e0facbf35c25bc3fcaf94f2e7819847", + "x-ms-correlation-request-id": "eb63e9ab-eba5-4cd6-9fdb-f56557fd9711", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "452c5e6f-40bc-4fc7-baec-97aac3601f37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072104Z:eb63e9ab-eba5-4cd6-9fdb-f56557fd9711" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "209c01fe9e618dc13439bee3a1507b52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea1f787b-b36b-498d-853a-a7d8bcb42a04", + "x-ms-client-request-id": "209c01fe9e618dc13439bee3a1507b52", + "x-ms-correlation-request-id": "b37191a6-0a36-402d-84b8-94e72d051372", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "67fd3688-a552-410a-a149-8dae4fa0f435", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072106Z:b37191a6-0a36-402d-84b8-94e72d051372" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0509b4ac6cc8205ffe968f1bad91abae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5739f84-6560-4729-8c03-df5021edb02f", + "x-ms-client-request-id": "0509b4ac6cc8205ffe968f1bad91abae", + "x-ms-correlation-request-id": "3b9779b6-28ef-454a-8876-b15c596204be", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "0f808f7d-45c1-47e1-94f0-137e4bf56355", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072107Z:3b9779b6-28ef-454a-8876-b15c596204be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c6ec887cd5d21e4eb824a8976dfbaac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96a87322-3805-4c2a-beba-3e0780ee89f9", + "x-ms-client-request-id": "4c6ec887cd5d21e4eb824a8976dfbaac", + "x-ms-correlation-request-id": "6039479c-e339-4b94-a94b-90302bd6a7ff", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "79a88c25-8a17-4c96-a99e-04ab1d2182c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072108Z:6039479c-e339-4b94-a94b-90302bd6a7ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "334542349277917ea27b22cb0fa5dfa2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b15139e-3816-4c76-bc9f-68de6d34f5ba", + "x-ms-client-request-id": "334542349277917ea27b22cb0fa5dfa2", + "x-ms-correlation-request-id": "18606642-db0b-4bbf-9a74-4a1cd06b0f2e", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "11e0b768-2ba5-45a1-ba4f-705b054294a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072109Z:18606642-db0b-4bbf-9a74-4a1cd06b0f2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d95c108d2ee2def5d0e81a4622d6aa1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ebc5458-98bb-4865-9e99-98f07e6f1ff5", + "x-ms-client-request-id": "d95c108d2ee2def5d0e81a4622d6aa1f", + "x-ms-correlation-request-id": "2f936c44-f5a0-40d4-8af6-882cd3d82f96", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "92a31f75-8e86-4936-b786-5f4b8ac1065b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072111Z:2f936c44-f5a0-40d4-8af6-882cd3d82f96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6be7e3db784bf43649dcaae1ab181146", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3605580b-e620-4b78-b212-b93422988116", + "x-ms-client-request-id": "6be7e3db784bf43649dcaae1ab181146", + "x-ms-correlation-request-id": "457a33ac-68ef-4ee6-acb5-9d84154e8f5b", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "5a1f970a-ff93-49c3-bf2d-243e8bd444e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072112Z:457a33ac-68ef-4ee6-acb5-9d84154e8f5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65fba7a2e18205c94c66638f78386ecb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36fb3c44-310d-4834-9216-b00a9e000bbf", + "x-ms-client-request-id": "65fba7a2e18205c94c66638f78386ecb", + "x-ms-correlation-request-id": "ab9a11b4-53c0-4ac8-8748-9b4e15c0b186", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "769002de-10c6-4ff9-bf57-09934ad63541", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072114Z:ab9a11b4-53c0-4ac8-8748-9b4e15c0b186" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bf003d174bd1456da688f05831333b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a7cca30c-a8b5-458f-913e-ace47c5dd09f", + "x-ms-client-request-id": "2bf003d174bd1456da688f05831333b7", + "x-ms-correlation-request-id": "3babd3c6-2a85-41e1-b766-68546941b4b8", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "4070ef6b-dc08-40fd-bb06-77b148acc2e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072115Z:3babd3c6-2a85-41e1-b766-68546941b4b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ba4d4d644dafa9c19e11ee515a67c11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f61e1703-86b9-482d-92ea-a99437a3304d", + "x-ms-client-request-id": "7ba4d4d644dafa9c19e11ee515a67c11", + "x-ms-correlation-request-id": "7efe0ef3-d5d9-442a-bda5-b61f3459c619", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-request-id": "d7595066-65b2-4596-be95-0997e9a4a32d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072116Z:7efe0ef3-d5d9-442a-bda5-b61f3459c619" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a810de6de6282d8850e68b1a51c48239", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4a511f9-b5cf-4ad5-8ad7-7036fe1c395a", + "x-ms-client-request-id": "a810de6de6282d8850e68b1a51c48239", + "x-ms-correlation-request-id": "e49bad4b-be51-43b1-94f9-727728276bfb", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-request-id": "4d1b3e6c-fc7e-4aa9-80f3-ef1e2bd7e621", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072117Z:e49bad4b-be51-43b1-94f9-727728276bfb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4b9ab33f3938cf166f512dc5671ff33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0074082-9569-40e4-9b51-3065d2289999", + "x-ms-client-request-id": "a4b9ab33f3938cf166f512dc5671ff33", + "x-ms-correlation-request-id": "8069a654-c4ca-4457-9d81-0fce34dacf8b", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-request-id": "592eb931-2be3-487b-a706-37a22fa9f47f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072119Z:8069a654-c4ca-4457-9d81-0fce34dacf8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5977eeb8b02f08e4c762af3b982a954", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f2ea065-a150-4e80-bebc-223e814edfe9", + "x-ms-client-request-id": "a5977eeb8b02f08e4c762af3b982a954", + "x-ms-correlation-request-id": "ed2ccd4d-1956-402c-975e-e6502365bb06", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-request-id": "2d6e9794-12bf-415f-81f8-d42f361da612", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072120Z:ed2ccd4d-1956-402c-975e-e6502365bb06" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "69b2e45fd8ec797ded844233d3abd7df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f10e0c1-b094-4031-a4a0-362a796e9e4a", + "x-ms-client-request-id": "69b2e45fd8ec797ded844233d3abd7df", + "x-ms-correlation-request-id": "f1956719-9fb6-41ba-b17a-8a4d88965db4", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-request-id": "d359f63a-ccb1-46fd-9e07-59c1dc35b7b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072121Z:f1956719-9fb6-41ba-b17a-8a4d88965db4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d32e57e7dc2ca7361dc9581dc9fed3e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2204e4f4-0e7e-448e-bc55-2a626bd4cc70", + "x-ms-client-request-id": "d32e57e7dc2ca7361dc9581dc9fed3e3", + "x-ms-correlation-request-id": "48ea1da4-12c9-498b-a7af-04167f0a716b", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-request-id": "b8a23f7c-bd25-468c-b618-de84fe714c1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072123Z:48ea1da4-12c9-498b-a7af-04167f0a716b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "717cbd4c95bf1346001eb87e495a1ca0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc004b1d-2f62-45d2-9a56-b6f001735b60", + "x-ms-client-request-id": "717cbd4c95bf1346001eb87e495a1ca0", + "x-ms-correlation-request-id": "7181c982-625a-4fd1-bbb6-51f680b80d7e", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-request-id": "1df8475c-813c-4256-87cd-3613ebd9f3da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072124Z:7181c982-625a-4fd1-bbb6-51f680b80d7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "610b4a9fd6538228ae0a4b238060b0ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "171854e7-56df-4e7b-b723-aa8b4e56e4a9", + "x-ms-client-request-id": "610b4a9fd6538228ae0a4b238060b0ee", + "x-ms-correlation-request-id": "2bc0ebef-7ecd-48c6-a277-735e4e61a985", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-request-id": "56e1560d-b67c-4f37-882d-a3cefaaf079b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072125Z:2bc0ebef-7ecd-48c6-a277-735e4e61a985" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15e75eb0662f511f101ad20e24b85ec2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20fbc338-c5c6-4762-bde4-b7ac5436b0e8", + "x-ms-client-request-id": "15e75eb0662f511f101ad20e24b85ec2", + "x-ms-correlation-request-id": "7061c410-baaf-43fc-831c-ac4ffec6561e", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-request-id": "dc27842e-368b-483b-9db8-d929d35d645b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072126Z:7061c410-baaf-43fc-831c-ac4ffec6561e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e7eb8ac72f2759095fac3b54a2393a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39c10a9d-2395-4d76-8573-e51000a9bf8d", + "x-ms-client-request-id": "7e7eb8ac72f2759095fac3b54a2393a0", + "x-ms-correlation-request-id": "63fa905c-7fb5-4202-9f28-64eb1dcffcf6", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-request-id": "90bda82b-087f-4c8c-8493-2a65e8c62154", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072128Z:63fa905c-7fb5-4202-9f28-64eb1dcffcf6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eacec96d077338702bba5138031a5df5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e66b3a4e-1f7b-44e8-a0ba-7e455be4e970", + "x-ms-client-request-id": "eacec96d077338702bba5138031a5df5", + "x-ms-correlation-request-id": "99810ed5-2742-487b-a1c0-e2df667e62ec", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-request-id": "7ea4b77e-0076-4be0-98ec-124231d433b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072129Z:99810ed5-2742-487b-a1c0-e2df667e62ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c87788ab31e23efcce718035a36a07ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e569f5b-726a-49c0-9102-890787e5694e", + "x-ms-client-request-id": "c87788ab31e23efcce718035a36a07ed", + "x-ms-correlation-request-id": "29615605-6ba7-416d-92cc-50b69dec964a", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-request-id": "d782096b-db0b-4e83-bf15-31da4fe7292d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072130Z:29615605-6ba7-416d-92cc-50b69dec964a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5ba0328773eaa54f474553382157727b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e515162d-5abe-446c-ab82-3b14803a6572", + "x-ms-client-request-id": "5ba0328773eaa54f474553382157727b", + "x-ms-correlation-request-id": "0011b2b8-9b5c-4201-b8e7-6bfe6a8e9fec", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-request-id": "c86ed42c-6e7e-481d-b8f6-ad2adbe426ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072131Z:0011b2b8-9b5c-4201-b8e7-6bfe6a8e9fec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c109cd9ccbac3cbdcd901c02873b95c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b55329c5-ce2f-4638-ab75-b5f21a183058", + "x-ms-client-request-id": "c109cd9ccbac3cbdcd901c02873b95c0", + "x-ms-correlation-request-id": "aba81e9c-a038-4dac-84a2-bd5b1f083b28", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-request-id": "114fabf0-6847-4600-99cd-1d50cf86f0e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072133Z:aba81e9c-a038-4dac-84a2-bd5b1f083b28" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1b163b20279370b39d1809cddc41d76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "982ffede-7cdb-4f82-a365-cae08d68e2e4", + "x-ms-client-request-id": "d1b163b20279370b39d1809cddc41d76", + "x-ms-correlation-request-id": "dba21a32-d46d-4cae-84cb-2b26b5ac8b17", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-request-id": "29296df0-b6ed-4266-9fd3-026066c7134b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072134Z:dba21a32-d46d-4cae-84cb-2b26b5ac8b17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d59904ff4660bc4074638e5a564d1d0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d36b620-4307-4085-93fd-d8888524a5d6", + "x-ms-client-request-id": "d59904ff4660bc4074638e5a564d1d0b", + "x-ms-correlation-request-id": "5e7ebdd0-5202-4378-b821-96eb833b10b2", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-request-id": "647167c1-56cf-4a15-8554-469378458f60", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072135Z:5e7ebdd0-5202-4378-b821-96eb833b10b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd8593afa0a59901c2d187da4a205f09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c8a4b59-e414-4c93-af06-c627daf90421", + "x-ms-client-request-id": "bd8593afa0a59901c2d187da4a205f09", + "x-ms-correlation-request-id": "f797d713-bc3e-4bb6-a3b8-b523beee2e38", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-request-id": "dd37fcc2-bb61-4055-9227-480983daaf2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072137Z:f797d713-bc3e-4bb6-a3b8-b523beee2e38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8203a572bfa26c6023f55c1574b0e1ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2274e72a-ff04-42ba-978c-920b0c77a48f", + "x-ms-client-request-id": "8203a572bfa26c6023f55c1574b0e1ec", + "x-ms-correlation-request-id": "ca6320d9-a410-4583-a3fe-262f82a03fc8", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-request-id": "57996d0c-6fee-40cb-bbf4-3ed85bb711dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072138Z:ca6320d9-a410-4583-a3fe-262f82a03fc8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4aec74b35f3e5ed002ff138ebe667153", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5dc63138-7e8b-4346-9f82-d691bf1384e4", + "x-ms-client-request-id": "4aec74b35f3e5ed002ff138ebe667153", + "x-ms-correlation-request-id": "71a1c6df-6c77-46e5-80aa-a81a7ada081e", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-request-id": "e3a9680e-7039-413a-a570-36b27fb66482", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072139Z:71a1c6df-6c77-46e5-80aa-a81a7ada081e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0e785049b4af069321899b044ec2411", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "498f300f-58bd-42d0-b49d-27db98f6373a", + "x-ms-client-request-id": "b0e785049b4af069321899b044ec2411", + "x-ms-correlation-request-id": "251bfb8d-1eb7-4387-bc03-8fce164c7a13", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-request-id": "83f928d1-b430-41ca-86c7-db2198f15516", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072140Z:251bfb8d-1eb7-4387-bc03-8fce164c7a13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5269bf0143413cad5a47fa2acd1aebc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3f7070f-ebe8-4cbf-b0a8-dc74d8fda714", + "x-ms-client-request-id": "d5269bf0143413cad5a47fa2acd1aebc", + "x-ms-correlation-request-id": "5a71b79f-d84a-4914-bb44-9acba3fb922b", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-request-id": "c0b5c702-107c-4d4d-a73d-399d2d6b686e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072142Z:5a71b79f-d84a-4914-bb44-9acba3fb922b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef11088330c918a20bfc1726c5201916", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65a33154-8185-494e-b1aa-8b19a3bcf95f", + "x-ms-client-request-id": "ef11088330c918a20bfc1726c5201916", + "x-ms-correlation-request-id": "cd9b3a34-57eb-485e-ac43-2abb65f0a6ff", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-request-id": "f418df19-6894-4d49-80a3-eaf9fac66c53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072143Z:cd9b3a34-57eb-485e-ac43-2abb65f0a6ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "229d01db9b3fef1fbad4dba51bc74361", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1c98602-d179-457b-a3ec-af9a59e23e1f", + "x-ms-client-request-id": "229d01db9b3fef1fbad4dba51bc74361", + "x-ms-correlation-request-id": "ac27def5-c3ab-40a1-bbd0-bf1c28126060", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-request-id": "b4c28c2e-e68e-4456-ab02-e3f1769c647c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072144Z:ac27def5-c3ab-40a1-bbd0-bf1c28126060" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b2ddc6934dbc047f90eca37fda34db4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5595e5e3-8e92-4bb6-96c9-f42052733273", + "x-ms-client-request-id": "3b2ddc6934dbc047f90eca37fda34db4", + "x-ms-correlation-request-id": "d0ecbb63-fc7a-46f8-b80d-847393711762", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-request-id": "9e30d6c4-e38a-4d93-9204-1070987afdef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072145Z:d0ecbb63-fc7a-46f8-b80d-847393711762" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aac7698a8c34e77de82134f554fcfc44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad4b9d7a-c46f-462b-8cff-cc95ea66787d", + "x-ms-client-request-id": "aac7698a8c34e77de82134f554fcfc44", + "x-ms-correlation-request-id": "46a4245e-bc63-4b3e-b12d-7048a00908e8", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-request-id": "9a69186a-a52f-4f90-be86-42bd2af6df54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072147Z:46a4245e-bc63-4b3e-b12d-7048a00908e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9bdb6b9def3a63bb9dc2931d1e8f217", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b65e87ed-cec9-4816-a4a1-87503dda0ca5", + "x-ms-client-request-id": "e9bdb6b9def3a63bb9dc2931d1e8f217", + "x-ms-correlation-request-id": "d115974e-c278-4854-a0ef-948e17e72fb2", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-request-id": "bbaa8553-ee2c-45dd-bd08-abf2b3a84cb4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072148Z:d115974e-c278-4854-a0ef-948e17e72fb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b21a26879800dd2d5f4552b900526cfc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3eb5b0f2-6529-4399-a09a-4fd4a7c97b69", + "x-ms-client-request-id": "b21a26879800dd2d5f4552b900526cfc", + "x-ms-correlation-request-id": "104cf396-d846-4feb-aee4-e4304d3a3dd9", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-request-id": "b094338c-0ddc-4ac3-af66-4f452f36141d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072149Z:104cf396-d846-4feb-aee4-e4304d3a3dd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "467d861164e6acc12d20f157624c1600", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a128d657-129c-44e8-a5af-826e3167f3ac", + "x-ms-client-request-id": "467d861164e6acc12d20f157624c1600", + "x-ms-correlation-request-id": "0b2bc62e-7f2c-4359-a209-55d177700185", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-request-id": "7335fb1a-c737-495f-ad08-38ce91174b9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072151Z:0b2bc62e-7f2c-4359-a209-55d177700185" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d6e1d2e4ae2204489df89ad8b81a667", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1a7b7962-6cf4-4a8c-a262-b50ae4de2a16", + "x-ms-client-request-id": "2d6e1d2e4ae2204489df89ad8b81a667", + "x-ms-correlation-request-id": "3f071723-fbbb-40cf-8708-27d90b75eec9", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-request-id": "bd4183a0-d002-4697-bb72-b38f19d6b766", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072152Z:3f071723-fbbb-40cf-8708-27d90b75eec9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b1f2c6fab6a2330646e84dfa7d57a13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b746e69-94cb-456f-a81e-85b1fc051e48", + "x-ms-client-request-id": "4b1f2c6fab6a2330646e84dfa7d57a13", + "x-ms-correlation-request-id": "760179bb-fd25-4d17-8fa4-5d13bb84057c", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-request-id": "f78cbb85-b2eb-46c1-95c8-9091d5777e53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072153Z:760179bb-fd25-4d17-8fa4-5d13bb84057c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e28b522e3fe4c71a415dbd06da1420ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4f8fc60-01c3-4cbd-8dfa-5d769a519e8c", + "x-ms-client-request-id": "e28b522e3fe4c71a415dbd06da1420ab", + "x-ms-correlation-request-id": "d945dd9c-61ac-4458-bd72-4ae3077895b3", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-request-id": "89e28c96-c0ae-4197-8763-39e976fba064", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072154Z:d945dd9c-61ac-4458-bd72-4ae3077895b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36e7897acb2c8296ec4bc874c56479b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3aad3154-f812-4918-a1ab-e61770f597c5", + "x-ms-client-request-id": "36e7897acb2c8296ec4bc874c56479b3", + "x-ms-correlation-request-id": "e699bf92-677e-4094-9af2-1ce7934290a8", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-request-id": "e4ad7c05-ca48-463b-a581-b1ceb38ccf00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072156Z:e699bf92-677e-4094-9af2-1ce7934290a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "397f7565c3f630831258090dee2a4850", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d6efe68-bfbf-4e08-a885-cc4eb026aa38", + "x-ms-client-request-id": "397f7565c3f630831258090dee2a4850", + "x-ms-correlation-request-id": "0654b15d-3391-4c11-bc62-47c73d93cda5", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-request-id": "30863fa5-c348-44f7-850f-9e1d5b825aa5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072157Z:0654b15d-3391-4c11-bc62-47c73d93cda5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1d64d94d44ee63e7bc08f59877a501dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32ebb716-b736-48c7-93d0-9ba1eb6d3ceb", + "x-ms-client-request-id": "1d64d94d44ee63e7bc08f59877a501dd", + "x-ms-correlation-request-id": "bde1b3f1-873c-49d4-8560-0b4780ed70d8", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-request-id": "e90477e1-b537-47bc-b48e-df78d516e2de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072158Z:bde1b3f1-873c-49d4-8560-0b4780ed70d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "64a10ae3e794b6b506b623d3c18894c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:21:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d7f359d-ce93-4ae0-90f3-d344c9cd0494", + "x-ms-client-request-id": "64a10ae3e794b6b506b623d3c18894c2", + "x-ms-correlation-request-id": "61c699e4-1582-44aa-89f9-1c8938ea8e60", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-request-id": "43d823ea-60af-465c-bbc0-81083b839810", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072159Z:61c699e4-1582-44aa-89f9-1c8938ea8e60" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec2777025bff21c48e1b7deecdeab96d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8aa60b08-4051-4c1c-bbbc-8a5b8cb6a04f", + "x-ms-client-request-id": "ec2777025bff21c48e1b7deecdeab96d", + "x-ms-correlation-request-id": "234683e6-0810-4323-bad4-43879550ecfe", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-request-id": "04973c44-161c-4aa3-8b71-4d6f56b915a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072201Z:234683e6-0810-4323-bad4-43879550ecfe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e32a2c57e38865bc23ad17372013a133", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91ad1d63-961d-464d-9818-c8b860a6cbda", + "x-ms-client-request-id": "e32a2c57e38865bc23ad17372013a133", + "x-ms-correlation-request-id": "7f29d711-4815-48ea-8cd5-65d1d59a72b0", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-request-id": "39ed4705-abab-46e2-83c0-671d6beefe9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072202Z:7f29d711-4815-48ea-8cd5-65d1d59a72b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00963373157e87dd457fd5786ac7e91c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86c7b9e3-5c92-4322-96e4-d4f23d9515c1", + "x-ms-client-request-id": "00963373157e87dd457fd5786ac7e91c", + "x-ms-correlation-request-id": "7c8262f4-4ec5-4ac5-b282-38232501b02c", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-request-id": "047bf790-4f86-423e-a21a-7bf094505dea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072203Z:7c8262f4-4ec5-4ac5-b282-38232501b02c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "957cb6fdb15e1f39bbc1c851448c007a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bffa1c6a-9dd1-4cc6-8a12-2e8a303615d0", + "x-ms-client-request-id": "957cb6fdb15e1f39bbc1c851448c007a", + "x-ms-correlation-request-id": "f8e5cdaf-4ad3-48fc-9fa6-9a139b576b19", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-request-id": "208b7d37-f229-451a-b41f-be1ff3e54e93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072205Z:f8e5cdaf-4ad3-48fc-9fa6-9a139b576b19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a7a497ab85441ee4ea29d090d43fb5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67cc5702-885f-4f07-8f62-324572e6e8a5", + "x-ms-client-request-id": "9a7a497ab85441ee4ea29d090d43fb5c", + "x-ms-correlation-request-id": "b47aed2e-e15f-4de6-8f63-416f9c714fab", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-request-id": "b3255007-920f-48b2-afa5-44e7a4af3818", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072206Z:b47aed2e-e15f-4de6-8f63-416f9c714fab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a39fbc40c97c1d5fa7645bc4c8b43b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1381b79d-d4b3-4cf9-8e28-fc4c44872b6c", + "x-ms-client-request-id": "6a39fbc40c97c1d5fa7645bc4c8b43b9", + "x-ms-correlation-request-id": "c696c87b-79f7-4743-b7bc-5ff5b99caa6f", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-request-id": "a48ffcab-6c69-4e15-a7a6-e30e8d1f745a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072207Z:c696c87b-79f7-4743-b7bc-5ff5b99caa6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20fe5a7f4f4c44c7c73a46bc13301177", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9a322b3-aa56-4e87-b906-374c86d1362f", + "x-ms-client-request-id": "20fe5a7f4f4c44c7c73a46bc13301177", + "x-ms-correlation-request-id": "405b9062-4ec8-4ef9-92b1-e62abdab00f3", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-request-id": "56978b33-6636-4871-85df-592864d98b13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072208Z:405b9062-4ec8-4ef9-92b1-e62abdab00f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "488d6bc695526de374b89fdd7331f4c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "563f42a7-43f1-4f48-90f9-524bdc4d5f9d", + "x-ms-client-request-id": "488d6bc695526de374b89fdd7331f4c3", + "x-ms-correlation-request-id": "549d5f7c-4513-4716-b817-6197f78a2ca1", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-request-id": "85508308-0579-42bf-8a1d-751a39ee2a9d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072210Z:549d5f7c-4513-4716-b817-6197f78a2ca1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b289e45eda44751033f5a35dc518aec9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "871db73f-824c-4bd0-b6b9-8bc2c64491e9", + "x-ms-client-request-id": "b289e45eda44751033f5a35dc518aec9", + "x-ms-correlation-request-id": "981a9eac-d1c2-4376-b0fb-09c46338af83", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-request-id": "b7b2733d-ff1f-4713-8aed-ea18b3238360", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072211Z:981a9eac-d1c2-4376-b0fb-09c46338af83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1f6cd65fafdea667790ac93afead195", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4a2cc84-3d0c-4ada-81cb-528e6db31df5", + "x-ms-client-request-id": "e1f6cd65fafdea667790ac93afead195", + "x-ms-correlation-request-id": "2a9b8988-815a-4444-bc42-0b218046bd8a", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-request-id": "ba9df9c5-8eac-47a5-8a18-429e7d49b623", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072212Z:2a9b8988-815a-4444-bc42-0b218046bd8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f5d83455ea6ec335b18155df186a85b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "616d8cbf-60c3-4a7c-90a6-bdc700334a7d", + "x-ms-client-request-id": "2f5d83455ea6ec335b18155df186a85b", + "x-ms-correlation-request-id": "22fe6b14-4444-42f4-84b7-e78bf83c2f76", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-request-id": "3fcffe7d-c13a-4c6e-86c4-495e79d39d5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072213Z:22fe6b14-4444-42f4-84b7-e78bf83c2f76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a678d60a133b64c57e9f3bb32d7dc548", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e4757a8-f69c-4df9-b099-f2752aafc8ab", + "x-ms-client-request-id": "a678d60a133b64c57e9f3bb32d7dc548", + "x-ms-correlation-request-id": "949004f4-0bcf-4ea8-af73-b1f80006d17f", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-request-id": "8dbba089-d615-460a-96c1-dbb4da824c09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072215Z:949004f4-0bcf-4ea8-af73-b1f80006d17f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42170e247fbb0622990a86e5e508f8f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86dfb259-f127-4a09-b06e-28356bc439d9", + "x-ms-client-request-id": "42170e247fbb0622990a86e5e508f8f1", + "x-ms-correlation-request-id": "f69f597c-b42e-4d28-a9b4-edf458e95f17", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-request-id": "8370fee7-54b6-4733-bd5c-98a6a3b21e19", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072216Z:f69f597c-b42e-4d28-a9b4-edf458e95f17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d88851e82a723159bdf9b1072380bedd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4fce9672-1e9f-417e-8722-4054283234c4", + "x-ms-client-request-id": "d88851e82a723159bdf9b1072380bedd", + "x-ms-correlation-request-id": "3c45661d-8b63-421c-89f9-38994345c2ca", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-request-id": "76f1d4da-ae72-45bc-9260-c883375522fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072217Z:3c45661d-8b63-421c-89f9-38994345c2ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e339cc52666e8ba0b3710c318ddf7e75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e63a6bff-9905-4908-849a-2fc9159caceb", + "x-ms-client-request-id": "e339cc52666e8ba0b3710c318ddf7e75", + "x-ms-correlation-request-id": "0baedfb1-2664-491d-b782-bcad3ce19240", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-request-id": "742af033-76c0-40d9-94a4-5894d166f968", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072219Z:0baedfb1-2664-491d-b782-bcad3ce19240" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dcca49a6edf5f9d6b4e684c1ce1ae319", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04e4e5cb-ccab-4f52-9ad0-b9f8d9bee84e", + "x-ms-client-request-id": "dcca49a6edf5f9d6b4e684c1ce1ae319", + "x-ms-correlation-request-id": "5653bb45-2512-4917-92b7-396c8714eacd", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-request-id": "339ac94e-0623-494d-ad85-87d62401a627", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072220Z:5653bb45-2512-4917-92b7-396c8714eacd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1893a84b14cf8182b0fc25011d28a3dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2fadc01b-f3c2-4263-bb0e-1c98158c92cf", + "x-ms-client-request-id": "1893a84b14cf8182b0fc25011d28a3dd", + "x-ms-correlation-request-id": "36ac8a9e-e1c3-480d-8dba-79e311e1fac3", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-request-id": "7d9a3eb0-c730-4abd-b894-033fa7a894d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072221Z:36ac8a9e-e1c3-480d-8dba-79e311e1fac3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9603b7ae1b565e8f63f2f88e1debd98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b586291-f27c-40c6-88da-f8b514114504", + "x-ms-client-request-id": "d9603b7ae1b565e8f63f2f88e1debd98", + "x-ms-correlation-request-id": "c224f61f-804c-4c8c-ae79-dbf8fa876176", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-request-id": "3f1d47b0-5b37-481f-9187-e6bf684eac40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072222Z:c224f61f-804c-4c8c-ae79-dbf8fa876176" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5e5f38e664c92a6c6492bf8c7d5dc8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea28be3d-502b-4d88-9140-8452e88db568", + "x-ms-client-request-id": "e5e5f38e664c92a6c6492bf8c7d5dc8c", + "x-ms-correlation-request-id": "ecf54c43-e6bf-4da3-ae44-1a4cb818b088", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-request-id": "0ce555a8-5359-4765-8193-41561f2b3950", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072224Z:ecf54c43-e6bf-4da3-ae44-1a4cb818b088" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9247a64209ba6a64c02e218fe4faa0d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48f6c8d3-06e8-4efa-93b9-3b663d728f80", + "x-ms-client-request-id": "9247a64209ba6a64c02e218fe4faa0d2", + "x-ms-correlation-request-id": "b5efe878-2c94-4cdb-88b9-a9ac93c94955", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-request-id": "9a5ef0d4-62d0-40be-9d58-8867ceabe55f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072225Z:b5efe878-2c94-4cdb-88b9-a9ac93c94955" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a728c3fbe42139195ce136cb5f09d21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "351baa66-f48b-46a8-a3b3-383f062f5f21", + "x-ms-client-request-id": "2a728c3fbe42139195ce136cb5f09d21", + "x-ms-correlation-request-id": "a4b1dff7-6c77-4ffe-b250-84473ad94e8b", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-request-id": "8ec96777-9b07-443c-ba0c-48b38fc66c81", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072226Z:a4b1dff7-6c77-4ffe-b250-84473ad94e8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a45a3632b9785de8e7b251d4416adcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "481ecb1d-c6e0-462a-9f7b-3e4f64b1af5e", + "x-ms-client-request-id": "3a45a3632b9785de8e7b251d4416adcc", + "x-ms-correlation-request-id": "b71422a6-7d2e-4482-8dff-5c1d48fcbb52", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-request-id": "e9da5965-5a57-4398-8b37-28e4eb04dfee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072228Z:b71422a6-7d2e-4482-8dff-5c1d48fcbb52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ab859a8b16284491533fcecf6f8b4cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e31dd223-2f0a-45f9-be6b-284c1efc8204", + "x-ms-client-request-id": "3ab859a8b16284491533fcecf6f8b4cf", + "x-ms-correlation-request-id": "18274f08-3595-4e63-bb6e-3170c0dbe439", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-request-id": "ecd5e0e1-4bbd-441d-86a2-ab470d775368", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072229Z:18274f08-3595-4e63-bb6e-3170c0dbe439" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "412b009165b4143aaeed9cc69973cf7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ceab9d83-b4c1-41c6-8f91-500f2f8d5330", + "x-ms-client-request-id": "412b009165b4143aaeed9cc69973cf7e", + "x-ms-correlation-request-id": "ba32d0f6-9b10-44d5-8145-ed87cf390a3c", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-request-id": "80fc9df7-08f9-48ac-a639-70702860a006", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072230Z:ba32d0f6-9b10-44d5-8145-ed87cf390a3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cc346206237b2bf59c125642ef28f96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca777951-e39f-4163-8b40-4d1e256a898f", + "x-ms-client-request-id": "5cc346206237b2bf59c125642ef28f96", + "x-ms-correlation-request-id": "92fb44f2-617b-4a5f-ad86-643f8923ff8d", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-request-id": "6e5a91a9-dbff-430a-a08a-e2ea5d743b89", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072231Z:92fb44f2-617b-4a5f-ad86-643f8923ff8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "448c55c66cea43171ea48c741582eaa1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e890988-2457-4f4b-88b8-29ec1d66e214", + "x-ms-client-request-id": "448c55c66cea43171ea48c741582eaa1", + "x-ms-correlation-request-id": "20a7bfb7-9bc4-40eb-ab08-d8b8023e6bdc", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-request-id": "dee6f468-3d32-45de-9053-c2ab5f6a3b5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072233Z:20a7bfb7-9bc4-40eb-ab08-d8b8023e6bdc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afcb7d6358352e984179e7f33fd6e5bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e42e6669-4a8c-4dbd-9f00-a5ecac8566a7", + "x-ms-client-request-id": "afcb7d6358352e984179e7f33fd6e5bb", + "x-ms-correlation-request-id": "0b351bb8-d78d-4618-bfe8-4acb2db55859", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-request-id": "b85da5e9-85a9-423a-8c8e-0ca63714bb8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072234Z:0b351bb8-d78d-4618-bfe8-4acb2db55859" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4300065e8ae7b3932f7f3d92d54a9cd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "236b5125-8f91-40c6-a540-a47ae564e12e", + "x-ms-client-request-id": "4300065e8ae7b3932f7f3d92d54a9cd6", + "x-ms-correlation-request-id": "cff29ce8-4fa4-4416-b375-1b44ed2e3f24", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-request-id": "74b7bd5d-4150-49c9-a7f2-6b70f789a537", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072235Z:cff29ce8-4fa4-4416-b375-1b44ed2e3f24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b00083d6df266e60bd5d037185240347", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aba5a064-3ac0-436c-9064-1b18912b426e", + "x-ms-client-request-id": "b00083d6df266e60bd5d037185240347", + "x-ms-correlation-request-id": "e4d3a2af-0d9e-429e-8eef-b88a0a37e8c1", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-request-id": "d5e33df1-c305-43ed-adf1-0efe271adac1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072237Z:e4d3a2af-0d9e-429e-8eef-b88a0a37e8c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f16d0bea782d9bae9187fb51a0558f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b34b5776-84f7-4d6f-9b1f-c6516d39d710", + "x-ms-client-request-id": "0f16d0bea782d9bae9187fb51a0558f6", + "x-ms-correlation-request-id": "f78f55d3-5907-41ef-80bc-beae2aa2fc2e", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-request-id": "0eb6f9be-5c09-4512-ad4b-ae565601aa1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072238Z:f78f55d3-5907-41ef-80bc-beae2aa2fc2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc1c10dc35d67e95a591868987222d0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1c147a9-3956-4f6d-bd30-c525ea1a89a4", + "x-ms-client-request-id": "bc1c10dc35d67e95a591868987222d0b", + "x-ms-correlation-request-id": "fad94d2f-cef0-48ba-98ae-d29784a0218a", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-request-id": "a32df9ac-0ef9-4fcf-8df6-fb42a3290cae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072239Z:fad94d2f-cef0-48ba-98ae-d29784a0218a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04d3f67c8d332f54c927c60e5fab54b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3320f9e6-c109-4835-af36-80c8e3064157", + "x-ms-client-request-id": "04d3f67c8d332f54c927c60e5fab54b7", + "x-ms-correlation-request-id": "8f28d4da-6121-4068-b28b-6d3d2c4c4061", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-request-id": "41b0035d-3e3d-4df6-a36f-ed1950bc61db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072240Z:8f28d4da-6121-4068-b28b-6d3d2c4c4061" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75940c05470789713b976af1203152c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "990b95fb-f34c-42d0-8bcb-69d2bf11f02f", + "x-ms-client-request-id": "75940c05470789713b976af1203152c7", + "x-ms-correlation-request-id": "7bae4dec-90dc-47a0-ae60-51b085dcb92f", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-request-id": "e317541a-3556-4e19-b2a2-13f4ecf45154", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072242Z:7bae4dec-90dc-47a0-ae60-51b085dcb92f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "243974ea54314fc2bcecf3ae6e871efa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "969e2bd8-99f5-4ab7-93ee-ef5af24b6562", + "x-ms-client-request-id": "243974ea54314fc2bcecf3ae6e871efa", + "x-ms-correlation-request-id": "797c23a9-f3e0-4164-898f-5717f2de8d69", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-request-id": "0d119376-7c97-4185-899d-934df23afd14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072243Z:797c23a9-f3e0-4164-898f-5717f2de8d69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a84ce3db88e34038449c99c23620e97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bef274c3-1d58-4f97-92c0-d1bcc773859d", + "x-ms-client-request-id": "7a84ce3db88e34038449c99c23620e97", + "x-ms-correlation-request-id": "cb9fcdfb-ac36-40f8-9979-88ce53f36a17", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-request-id": "69b3641a-e6f6-4a61-a1c7-0890d564c681", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072244Z:cb9fcdfb-ac36-40f8-9979-88ce53f36a17" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb23ffd43071b0854945b81b54c21bb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5de4e29b-51d6-4402-a7c0-490b6de959fe", + "x-ms-client-request-id": "eb23ffd43071b0854945b81b54c21bb4", + "x-ms-correlation-request-id": "fb7c90d7-66d9-44c5-9019-5a70aec43833", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-request-id": "f6827453-a35f-4129-805e-ee8fb659ebd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072246Z:fb7c90d7-66d9-44c5-9019-5a70aec43833" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51b47078d7ad313971049fe78a262c59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36863a3d-7744-4d0a-9af6-0ca821f4984e", + "x-ms-client-request-id": "51b47078d7ad313971049fe78a262c59", + "x-ms-correlation-request-id": "5c347bef-f1ba-4db1-82de-1159aa23c399", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-request-id": "3775e905-53c1-4458-8998-500b0cf19fdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072247Z:5c347bef-f1ba-4db1-82de-1159aa23c399" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fda5bdd33630c8849d33148ffe8e0c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "caab5ce4-d020-4b8c-b567-c83fb0fff40a", + "x-ms-client-request-id": "6fda5bdd33630c8849d33148ffe8e0c1", + "x-ms-correlation-request-id": "91ff7c6e-d8c1-43c2-8d3c-98e2b22b987e", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-request-id": "d92c319f-b843-47b6-ba95-4cfa6c0441cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072248Z:91ff7c6e-d8c1-43c2-8d3c-98e2b22b987e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b323142ebdaefdeac5f17a6c909e2523", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e74b93c-efb8-4fe8-afff-b6c45ab95e84", + "x-ms-client-request-id": "b323142ebdaefdeac5f17a6c909e2523", + "x-ms-correlation-request-id": "90bcdbc9-20e3-4268-8282-1431299b5634", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-request-id": "5601147e-9a7a-42f0-8236-1ae4df67d854", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072249Z:90bcdbc9-20e3-4268-8282-1431299b5634" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f83d5f19ace84551e7a708d9a6f03288", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "331105ba-76a5-4e85-a663-9097d3f6bd5c", + "x-ms-client-request-id": "f83d5f19ace84551e7a708d9a6f03288", + "x-ms-correlation-request-id": "85d73859-26e4-4ccd-a5f2-2a3070504906", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-request-id": "711a5cfb-ef26-4150-a7b0-99ae04b1cd0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072251Z:85d73859-26e4-4ccd-a5f2-2a3070504906" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76b9de24780220ab70dca972b91b7caa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f4e3c50-9335-437b-94cf-e74eb3dc8dd8", + "x-ms-client-request-id": "76b9de24780220ab70dca972b91b7caa", + "x-ms-correlation-request-id": "01916526-6c2b-47af-b1ec-064bfe465d39", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-request-id": "760a6ffe-f90c-42e8-b4b5-0459e788a883", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072252Z:01916526-6c2b-47af-b1ec-064bfe465d39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a02f0eade7ab82d8c3decb06b41057d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5bbba655-b371-44a6-b5a7-f370d611eb5f", + "x-ms-client-request-id": "a02f0eade7ab82d8c3decb06b41057d5", + "x-ms-correlation-request-id": "1fdcac27-74a3-46ce-aaa4-d6b138b884b8", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-request-id": "54790ebc-c29a-4f5a-ba27-2bda9342cb4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072253Z:1fdcac27-74a3-46ce-aaa4-d6b138b884b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b148f1bfafe4a020b41c870c03de8bcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c62d9f99-80a0-463a-860c-513ddbe84fde", + "x-ms-client-request-id": "b148f1bfafe4a020b41c870c03de8bcc", + "x-ms-correlation-request-id": "22582524-602f-437c-a300-066395f87ce2", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-request-id": "0c314c02-aef7-4105-9c8e-e3a1751a45bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072254Z:22582524-602f-437c-a300-066395f87ce2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "972c5d2b91c03cdd0537b323ada46c60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d93c7a1-e781-4744-b947-4151bcfdf49a", + "x-ms-client-request-id": "972c5d2b91c03cdd0537b323ada46c60", + "x-ms-correlation-request-id": "5c72505c-de9b-4528-8e25-293589dd935c", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-request-id": "5b822a39-7856-4957-977a-28ea987ed5cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072256Z:5c72505c-de9b-4528-8e25-293589dd935c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7b2d384cad2fdc5ed8fec8f60cc7fe4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "938b6c54-3219-4676-9f16-49d0451dba9c", + "x-ms-client-request-id": "c7b2d384cad2fdc5ed8fec8f60cc7fe4", + "x-ms-correlation-request-id": "837db59f-91bd-44b1-a271-207b7edca5db", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-request-id": "be4a4977-808c-4e88-ad5e-e62aa202846a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072257Z:837db59f-91bd-44b1-a271-207b7edca5db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "56dbff52bfe32d14140cacadfcfcf20f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "964a06e1-0402-42f2-91a4-d2f8f9a9e28f", + "x-ms-client-request-id": "56dbff52bfe32d14140cacadfcfcf20f", + "x-ms-correlation-request-id": "f7e186df-8c44-4d34-b0bc-312d0c452cb7", + "x-ms-ratelimit-remaining-subscription-reads": "11685", + "x-ms-request-id": "ebcd5e6c-fa55-4a76-bc59-bc8929ab4fab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072258Z:f7e186df-8c44-4d34-b0bc-312d0c452cb7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f8727afc42c60f9972ea931a54ddc39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:22:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a452725f-4ade-42bd-9ef8-a7e7dc7092db", + "x-ms-client-request-id": "2f8727afc42c60f9972ea931a54ddc39", + "x-ms-correlation-request-id": "3c2b4033-1309-4296-bf39-8e1c6b45aa32", + "x-ms-ratelimit-remaining-subscription-reads": "11684", + "x-ms-request-id": "f15dd0c6-6d35-4492-af3c-52fef102890a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072300Z:3c2b4033-1309-4296-bf39-8e1c6b45aa32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aed1ceb716c8c57cbe84b2c61e1801f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b912bc9-eb5a-402a-a415-40e56acc97b9", + "x-ms-client-request-id": "aed1ceb716c8c57cbe84b2c61e1801f1", + "x-ms-correlation-request-id": "94c00b2f-46e9-4688-993e-12b68c7e6859", + "x-ms-ratelimit-remaining-subscription-reads": "11683", + "x-ms-request-id": "47a4ade0-41ef-4904-85a8-7a488ae6fc7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072301Z:94c00b2f-46e9-4688-993e-12b68c7e6859" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38dfdc9c4f448eb8057bbeb515e388c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ba73050-8e12-49f2-b922-35091c817ea3", + "x-ms-client-request-id": "38dfdc9c4f448eb8057bbeb515e388c7", + "x-ms-correlation-request-id": "069539e0-7132-43b6-b2a3-bdfedef2d931", + "x-ms-ratelimit-remaining-subscription-reads": "11682", + "x-ms-request-id": "a9cc2ba7-58d5-4f14-b36d-da339b453c18", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072302Z:069539e0-7132-43b6-b2a3-bdfedef2d931" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2df6722f442b9946abc270a71132417f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "101d4c97-039e-4f4c-8d97-3d0145919b4a", + "x-ms-client-request-id": "2df6722f442b9946abc270a71132417f", + "x-ms-correlation-request-id": "8c8ae13f-114b-4759-84b7-2502c2bb1efc", + "x-ms-ratelimit-remaining-subscription-reads": "11681", + "x-ms-request-id": "c7ee4c40-2caa-4f78-a31b-ceb08c72813b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072303Z:8c8ae13f-114b-4759-84b7-2502c2bb1efc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c894b82da36d68f51643a84d57c7afdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91ba049c-674a-45c5-a03c-0b67cc49429a", + "x-ms-client-request-id": "c894b82da36d68f51643a84d57c7afdb", + "x-ms-correlation-request-id": "2b8f28d0-78bd-47d4-80d2-f3272107e8cb", + "x-ms-ratelimit-remaining-subscription-reads": "11680", + "x-ms-request-id": "59704fcb-6540-4714-8ccc-9551ed90f99e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072305Z:2b8f28d0-78bd-47d4-80d2-f3272107e8cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac97ebfcd32257c696468d82de107cd3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ce192f1-0c58-4198-aa82-9db7ee010184", + "x-ms-client-request-id": "ac97ebfcd32257c696468d82de107cd3", + "x-ms-correlation-request-id": "3498e657-ea1a-4810-b9ee-35c117e802ec", + "x-ms-ratelimit-remaining-subscription-reads": "11679", + "x-ms-request-id": "98cbb1d7-109f-449c-ab63-d045833091aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072306Z:3498e657-ea1a-4810-b9ee-35c117e802ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d873e39bf4f8b597d8d17e89cf841e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14f534f8-fc60-491f-abaa-579455795705", + "x-ms-client-request-id": "5d873e39bf4f8b597d8d17e89cf841e4", + "x-ms-correlation-request-id": "48eff176-6327-4677-b962-2aceb9d1d715", + "x-ms-ratelimit-remaining-subscription-reads": "11678", + "x-ms-request-id": "078bc34a-f358-4087-9c59-25861791a7ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072307Z:48eff176-6327-4677-b962-2aceb9d1d715" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26aa9513959b5a5df23c322716728905", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "059b8c53-ae2c-4466-afa5-ecb242a3a3f7", + "x-ms-client-request-id": "26aa9513959b5a5df23c322716728905", + "x-ms-correlation-request-id": "192009ae-6424-4098-88aa-0496c24c1dae", + "x-ms-ratelimit-remaining-subscription-reads": "11677", + "x-ms-request-id": "8c83fe8b-36e3-4349-9e3a-969b6b4fd124", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072309Z:192009ae-6424-4098-88aa-0496c24c1dae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1814d4c7513f3d8b920b2e94bbdeba9d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "72f06f3c-2d9e-472f-a7ef-e23352e48776", + "x-ms-client-request-id": "1814d4c7513f3d8b920b2e94bbdeba9d", + "x-ms-correlation-request-id": "8d2c9256-3ad3-4555-bce8-ce1bc4611715", + "x-ms-ratelimit-remaining-subscription-reads": "11676", + "x-ms-request-id": "7e1d8d4e-61d8-4944-a7e1-8c7fa3bb644d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072310Z:8d2c9256-3ad3-4555-bce8-ce1bc4611715" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "496ea9045566a438e02d6a128c31750a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "edde213d-b859-467e-893b-1d48d5a4f14a", + "x-ms-client-request-id": "496ea9045566a438e02d6a128c31750a", + "x-ms-correlation-request-id": "4f311771-a24a-4bf9-b6f8-8fc4cdc78514", + "x-ms-ratelimit-remaining-subscription-reads": "11675", + "x-ms-request-id": "d6a06bb0-3400-4aab-a9fc-b05095797074", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072311Z:4f311771-a24a-4bf9-b6f8-8fc4cdc78514" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c821110429e4c1a4096c938f66c99e14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa08d7a0-c4a0-474c-848f-aa17358ef548", + "x-ms-client-request-id": "c821110429e4c1a4096c938f66c99e14", + "x-ms-correlation-request-id": "c779acb0-8d08-4be6-95d7-553667c3ba63", + "x-ms-ratelimit-remaining-subscription-reads": "11674", + "x-ms-request-id": "60adc5e6-d3c0-4038-b362-1135653cca8c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072312Z:c779acb0-8d08-4be6-95d7-553667c3ba63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d2295824004719f9b703712e779b160", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75f9a234-9ff4-4013-b18c-542f436294d4", + "x-ms-client-request-id": "6d2295824004719f9b703712e779b160", + "x-ms-correlation-request-id": "0f7bf4cd-ff92-486d-9740-c2e575a39a4c", + "x-ms-ratelimit-remaining-subscription-reads": "11673", + "x-ms-request-id": "e52457f1-e610-460a-8d6d-3f819545209e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072314Z:0f7bf4cd-ff92-486d-9740-c2e575a39a4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa8f2495f2bcdbb804ad3ff9c1a83d17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37db1af1-5590-45df-b695-ade743b59fcb", + "x-ms-client-request-id": "aa8f2495f2bcdbb804ad3ff9c1a83d17", + "x-ms-correlation-request-id": "9dd3b585-3eda-44f1-a865-45de3548da3c", + "x-ms-ratelimit-remaining-subscription-reads": "11672", + "x-ms-request-id": "9ee9ed37-1b61-4c23-b393-c616e3d2aaf1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072315Z:9dd3b585-3eda-44f1-a865-45de3548da3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f68f568e080ec40671af2c74f191da8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc9b5f60-21a8-458f-9e50-8958fd06fcf9", + "x-ms-client-request-id": "f68f568e080ec40671af2c74f191da8f", + "x-ms-correlation-request-id": "5e7500f1-5bd2-41d3-afe3-d9600a52dfb1", + "x-ms-ratelimit-remaining-subscription-reads": "11671", + "x-ms-request-id": "d3f33495-382c-4a75-8fe4-a1291bb89896", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072316Z:5e7500f1-5bd2-41d3-afe3-d9600a52dfb1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42fa33bbf4398f57dd47685600a6aff3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91abdc62-cbba-4683-a8ea-2cf5bbeb14a2", + "x-ms-client-request-id": "42fa33bbf4398f57dd47685600a6aff3", + "x-ms-correlation-request-id": "c3ddac5d-4296-48d6-9870-ec462b670619", + "x-ms-ratelimit-remaining-subscription-reads": "11670", + "x-ms-request-id": "808e6d8e-b61e-4d9d-8cb5-1ab999d8d28f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072318Z:c3ddac5d-4296-48d6-9870-ec462b670619" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90842032bae98d511dcb380dc643ea73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3a1d541-9fd6-462f-b153-3d1fe31be66c", + "x-ms-client-request-id": "90842032bae98d511dcb380dc643ea73", + "x-ms-correlation-request-id": "c62a1f72-e866-4c10-b5e4-a922b7252f5a", + "x-ms-ratelimit-remaining-subscription-reads": "11669", + "x-ms-request-id": "3ebafd5a-9c59-43c0-98d5-9535fae69d9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072319Z:c62a1f72-e866-4c10-b5e4-a922b7252f5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e3dafd2faae9addfe0018c79fafc3cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f69b676-b5fb-4ed2-9460-9e6b1efb2801", + "x-ms-client-request-id": "8e3dafd2faae9addfe0018c79fafc3cb", + "x-ms-correlation-request-id": "528db1a8-870d-4f79-bf42-e7fed62d4e99", + "x-ms-ratelimit-remaining-subscription-reads": "11668", + "x-ms-request-id": "4ddf2989-9990-473b-bc49-0756bab72a45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072321Z:528db1a8-870d-4f79-bf42-e7fed62d4e99" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e919965e-6ee2-4f76-8b06-ad30056d2f46?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d0413900490d00a6e16c246dbb4ac99a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0a5641e-6eb8-4a05-ac0f-561ce4c390aa", + "x-ms-client-request-id": "d0413900490d00a6e16c246dbb4ac99a", + "x-ms-correlation-request-id": "300bc6cc-72ba-47bd-b7f6-5d3aa6c1f389", + "x-ms-ratelimit-remaining-subscription-reads": "11667", + "x-ms-request-id": "7e88a784-bd4e-4764-818e-94bd48db9cc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072322Z:300bc6cc-72ba-47bd-b7f6-5d3aa6c1f389" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5184f55c2068384442e991e9a28aee6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2600", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1299b543-8f21-425a-96fe-a88175267ee4", + "x-ms-client-request-id": "5184f55c2068384442e991e9a28aee6e", + "x-ms-correlation-request-id": "094919ee-3303-429c-8a42-dd541758df0d", + "x-ms-ratelimit-remaining-subscription-reads": "11666", + "x-ms-request-id": "23c5560e-b1c5-4d8f-a282-5edb821dc66b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072322Z:094919ee-3303-429c-8a42-dd541758df0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9777\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00225dcaad15-7d53-4004-8a4a-93936afb961c\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002274cc11e4-358e-4eb4-8f3f-eeeee8da5004\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet2809\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00225dcaad15-7d53-4004-8a4a-93936afb961c\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.246.248.82\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayDefaultSite\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d0c6c0819018965093dad42d570dfb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2600", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e295b9be-39dd-4ac3-b295-43f5496c02bc", + "x-ms-client-request-id": "8d0c6c0819018965093dad42d570dfb4", + "x-ms-correlation-request-id": "e7fbd3db-ee47-4714-842a-16cd6c021871", + "x-ms-ratelimit-remaining-subscription-reads": "11665", + "x-ms-request-id": "e9de9516-fcc2-46ce-be80-22b4c4b4e9d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072323Z:e7fbd3db-ee47-4714-842a-16cd6c021871" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9777\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00225dcaad15-7d53-4004-8a4a-93936afb961c\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002274cc11e4-358e-4eb4-8f3f-eeeee8da5004\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet2809\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00225dcaad15-7d53-4004-8a4a-93936afb961c\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.246.248.82\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022gatewayDefaultSite\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "2002", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ba96a7e6271f4df098e24b8bc5e567e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "virtualNetworkGateway1": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet2809", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "gatewayDefaultSite": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257" + }, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.0.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "localNetworkGateway2": { + "location": "westus2", + "tags": { + "test": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257", + "properties": { + "localNetworkAddressSpace": { + "addressPrefixes": [ + "192.168.0.0/16" + ] + }, + "gatewayIpAddress": "192.168.3.4" + } + }, + "connectionType": "IPsec", + "routingWeight": 3, + "sharedKey": "abc" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1312", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a56414ab-a2ea-4c3c-b7dd-1862f70a74ee", + "x-ms-client-request-id": "2ba96a7e6271f4df098e24b8bc5e567e", + "x-ms-correlation-request-id": "580db727-d9aa-4951-96c6-1a020260bb4d", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072328Z:580db727-d9aa-4951-96c6-1a020260bb4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1597\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022561e5e92-b8d1-4c9f-965b-674992388254\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002254ace16c-1461-469c-8a0a-b9c5cbaa36e2\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f23b2dd43440a972d98f78b41d04cde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ad3d0a5-75cd-4b27-86b4-f9b078cdcdb3", + "x-ms-client-request-id": "1f23b2dd43440a972d98f78b41d04cde", + "x-ms-correlation-request-id": "eea9c8f6-4906-473b-8d69-033aaeabb664", + "x-ms-ratelimit-remaining-subscription-reads": "11664", + "x-ms-request-id": "8b5c5709-de0a-4ebc-96ad-323d6e793e45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072329Z:eea9c8f6-4906-473b-8d69-033aaeabb664" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b1fc4567790e5fb27193029366bf2a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c52d107c-e5a1-4828-8300-c6c01655351a", + "x-ms-client-request-id": "0b1fc4567790e5fb27193029366bf2a7", + "x-ms-correlation-request-id": "9e5970fa-b477-4880-ad8d-5facf159e373", + "x-ms-ratelimit-remaining-subscription-reads": "11663", + "x-ms-request-id": "150d411d-0f56-4698-9859-39e8ab755c6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072330Z:9e5970fa-b477-4880-ad8d-5facf159e373" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0adb1abb373a7239cd440fa3a1b74e2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2589fd9f-7700-400a-abb9-b26dcac6608b", + "x-ms-client-request-id": "0adb1abb373a7239cd440fa3a1b74e2a", + "x-ms-correlation-request-id": "03f78377-d160-4dff-80aa-a9d9a615251a", + "x-ms-ratelimit-remaining-subscription-reads": "11662", + "x-ms-request-id": "e30fcdcf-a35e-44fa-bec8-c165d3843929", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072331Z:03f78377-d160-4dff-80aa-a9d9a615251a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e1d4dfbc6426579b73ef82a136dd3c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3acd7b65-2639-43ad-b5e9-5e6e2b836bdc", + "x-ms-client-request-id": "3e1d4dfbc6426579b73ef82a136dd3c2", + "x-ms-correlation-request-id": "4e2ddf1b-82db-4e93-86e8-67982f4058f6", + "x-ms-ratelimit-remaining-subscription-reads": "11661", + "x-ms-request-id": "17376450-092d-4b01-83df-235caec7e661", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072333Z:4e2ddf1b-82db-4e93-86e8-67982f4058f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27cf50a642f51fa48aad3e4c67574470", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f75e5c39-fb4b-4ffe-9960-ad58074601c8", + "x-ms-client-request-id": "27cf50a642f51fa48aad3e4c67574470", + "x-ms-correlation-request-id": "4f9e8665-0ff4-4161-aad4-e9325d75624c", + "x-ms-ratelimit-remaining-subscription-reads": "11660", + "x-ms-request-id": "8f44f570-1eb2-4711-91cb-e0b92e20b80a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072334Z:4f9e8665-0ff4-4161-aad4-e9325d75624c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e92d06cbb44df564a07553fb3e0e5f60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb18e320-85e3-43f2-9dc6-94a1e0e6cf57", + "x-ms-client-request-id": "e92d06cbb44df564a07553fb3e0e5f60", + "x-ms-correlation-request-id": "20bf6a71-a96a-4f06-9370-85bf307a7127", + "x-ms-ratelimit-remaining-subscription-reads": "11659", + "x-ms-request-id": "50d9ee2f-ff5f-4438-bd5e-836caf065d87", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072335Z:20bf6a71-a96a-4f06-9370-85bf307a7127" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50fc4d7027e7b934a8feb395882dfe5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dab0cc8d-979c-4672-90fd-ac57e9b6aa4d", + "x-ms-client-request-id": "50fc4d7027e7b934a8feb395882dfe5f", + "x-ms-correlation-request-id": "27e9ad16-588b-46d1-a790-b64dad48ab9f", + "x-ms-ratelimit-remaining-subscription-reads": "11658", + "x-ms-request-id": "10ce8e16-8e82-4440-ad00-392661b787ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072336Z:27e9ad16-588b-46d1-a790-b64dad48ab9f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d5f87fae93ff274ecda8680eea8e07b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "11ed56ca-503a-4212-8677-1363b4351ede", + "x-ms-client-request-id": "0d5f87fae93ff274ecda8680eea8e07b", + "x-ms-correlation-request-id": "2e0e138c-a4d7-480e-a89a-5a071b41430f", + "x-ms-ratelimit-remaining-subscription-reads": "11657", + "x-ms-request-id": "37423232-e577-460c-bc09-d4ed40136a0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072338Z:2e0e138c-a4d7-480e-a89a-5a071b41430f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19dbde4ef35ba389d174414f00ce6d72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ffbd6aeb-ea6b-4a69-9449-81721f6a939a", + "x-ms-client-request-id": "19dbde4ef35ba389d174414f00ce6d72", + "x-ms-correlation-request-id": "044913c2-3204-47c1-9258-691fe3210788", + "x-ms-ratelimit-remaining-subscription-reads": "11656", + "x-ms-request-id": "2511a8ab-1018-4270-b0ab-c9806ece9734", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072339Z:044913c2-3204-47c1-9258-691fe3210788" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b601f47651af8620d90a630ca0b3ca00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d0e9bc8c-d1ce-4275-b242-ec8976eabc81", + "x-ms-client-request-id": "b601f47651af8620d90a630ca0b3ca00", + "x-ms-correlation-request-id": "5771a43d-4d9f-41dc-81c7-5b908c030224", + "x-ms-ratelimit-remaining-subscription-reads": "11655", + "x-ms-request-id": "34f5d0b1-9b67-428b-84fc-b47f0e2364c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072340Z:5771a43d-4d9f-41dc-81c7-5b908c030224" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa47381ee4520604febc3bcba824f11d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cad2a970-787c-4514-b7ca-870dcdea2825", + "x-ms-client-request-id": "aa47381ee4520604febc3bcba824f11d", + "x-ms-correlation-request-id": "fb2bb565-cb39-4bd9-987f-e30cfe246d66", + "x-ms-ratelimit-remaining-subscription-reads": "11654", + "x-ms-request-id": "225e64f6-b38b-48c1-bd01-3a556603d868", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072342Z:fb2bb565-cb39-4bd9-987f-e30cfe246d66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa0a146d29a7fcccbd544050907c021e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96c5733d-6e27-4611-8413-9414791a81d7", + "x-ms-client-request-id": "fa0a146d29a7fcccbd544050907c021e", + "x-ms-correlation-request-id": "9211a368-aca4-4b7d-9322-744ee8603969", + "x-ms-ratelimit-remaining-subscription-reads": "11653", + "x-ms-request-id": "4c95fc05-ad62-4bf6-8efa-6c19cb6f5598", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072343Z:9211a368-aca4-4b7d-9322-744ee8603969" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c83140a9c287911feffab8f31655ddb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28eeface-54a8-4dda-898a-e6240f9831b1", + "x-ms-client-request-id": "c83140a9c287911feffab8f31655ddb4", + "x-ms-correlation-request-id": "82fb022d-42d9-4371-a44a-a1eefa6deeec", + "x-ms-ratelimit-remaining-subscription-reads": "11652", + "x-ms-request-id": "c4b3f9e5-5f4b-49de-a292-28eac40671f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072344Z:82fb022d-42d9-4371-a44a-a1eefa6deeec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c9f4618cfa9f4586b4becfda4b37682", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d349eb3f-095b-4c4f-9437-8576c57be912", + "x-ms-client-request-id": "8c9f4618cfa9f4586b4becfda4b37682", + "x-ms-correlation-request-id": "ee32c2fe-c8b2-4abf-9b04-482df8dc501c", + "x-ms-ratelimit-remaining-subscription-reads": "11651", + "x-ms-request-id": "3c4307dd-4235-4df3-ba43-88f93f057447", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072345Z:ee32c2fe-c8b2-4abf-9b04-482df8dc501c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67211db929f3aa96f4780aac71d8e568", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "009d17de-3a2f-4da1-ae12-179d06d40c7f", + "x-ms-client-request-id": "67211db929f3aa96f4780aac71d8e568", + "x-ms-correlation-request-id": "33602b8a-aa1c-4d92-b327-dcbd0db69fe3", + "x-ms-ratelimit-remaining-subscription-reads": "11650", + "x-ms-request-id": "b07bf523-198b-4799-950f-3ccc46675505", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072347Z:33602b8a-aa1c-4d92-b327-dcbd0db69fe3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a388b7676dcda74e83c5c3cd621ed3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0be96daa-4efc-4791-9731-62aac008308b", + "x-ms-client-request-id": "4a388b7676dcda74e83c5c3cd621ed3c", + "x-ms-correlation-request-id": "df59b968-7fc7-41c8-be45-a2b6a3975552", + "x-ms-ratelimit-remaining-subscription-reads": "11649", + "x-ms-request-id": "26e6528f-bb38-4710-8696-ffadcde5a61c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072348Z:df59b968-7fc7-41c8-be45-a2b6a3975552" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f93a35847533eec1aff59731c4ac8392", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce361cc3-25c5-4303-b45c-0bb52a461c44", + "x-ms-client-request-id": "f93a35847533eec1aff59731c4ac8392", + "x-ms-correlation-request-id": "f6b9a15d-b063-468f-8632-4b44cae6b947", + "x-ms-ratelimit-remaining-subscription-reads": "11648", + "x-ms-request-id": "83605c2f-b4be-4e7a-867d-cfda54927bf1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072349Z:f6b9a15d-b063-468f-8632-4b44cae6b947" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "198783652c7a42a5a8477fb6cc59d3d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bf1bde4-99ad-402f-8852-1b4b5fb9b809", + "x-ms-client-request-id": "198783652c7a42a5a8477fb6cc59d3d2", + "x-ms-correlation-request-id": "3d36f763-702e-4881-99c0-78374d5844ad", + "x-ms-ratelimit-remaining-subscription-reads": "11647", + "x-ms-request-id": "681a1cdb-5b13-4279-a531-23cd303e3764", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072350Z:3d36f763-702e-4881-99c0-78374d5844ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b27ce8aec9e0034c9499ae6df43153b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08547c07-ff4b-452b-8c03-2b6d7fab2077", + "x-ms-client-request-id": "3b27ce8aec9e0034c9499ae6df43153b", + "x-ms-correlation-request-id": "ec045e7a-bef9-4060-ad3c-c254a4e67e96", + "x-ms-ratelimit-remaining-subscription-reads": "11646", + "x-ms-request-id": "a8be8354-5316-4e01-bccf-a1a1f81bb372", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072352Z:ec045e7a-bef9-4060-ad3c-c254a4e67e96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52d6c9b9d49a58c290f750ecf50b2255", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff3bf9d4-9f6d-49f0-9504-bfa69837c90e", + "x-ms-client-request-id": "52d6c9b9d49a58c290f750ecf50b2255", + "x-ms-correlation-request-id": "023d3042-380c-4ae4-86db-5058a3aee510", + "x-ms-ratelimit-remaining-subscription-reads": "11645", + "x-ms-request-id": "b4783a0d-1e09-4e7e-b58c-16faa8749396", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072353Z:023d3042-380c-4ae4-86db-5058a3aee510" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6a6c421488478f44f864f3091be6264", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4cb99176-7f69-4740-bf63-1d2690526e42", + "x-ms-client-request-id": "f6a6c421488478f44f864f3091be6264", + "x-ms-correlation-request-id": "1c25ded5-80ef-416b-a783-bf480fa17629", + "x-ms-ratelimit-remaining-subscription-reads": "11644", + "x-ms-request-id": "8302421b-3c48-46a7-a4fa-e8e2cc1a88df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072354Z:1c25ded5-80ef-416b-a783-bf480fa17629" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02fd44318183b6380bcfaaa69b470abe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc37b74b-eee8-44b4-9cf6-0e5cde7c261e", + "x-ms-client-request-id": "02fd44318183b6380bcfaaa69b470abe", + "x-ms-correlation-request-id": "008b258c-ea73-4ebc-9bd3-cdb91c69c5b1", + "x-ms-ratelimit-remaining-subscription-reads": "11643", + "x-ms-request-id": "960ca31f-5b44-44ee-a7fa-fe0018dea0af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072356Z:008b258c-ea73-4ebc-9bd3-cdb91c69c5b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bc444271e9d70b6d55e03148491c6d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1204a6b9-5a37-4a6f-8261-8b25fcf35fab", + "x-ms-client-request-id": "1bc444271e9d70b6d55e03148491c6d1", + "x-ms-correlation-request-id": "6e34f354-fac1-455b-ac84-4c6cd1588cfd", + "x-ms-ratelimit-remaining-subscription-reads": "11642", + "x-ms-request-id": "19e176c4-628b-41f8-a761-79e987cdd4f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072357Z:6e34f354-fac1-455b-ac84-4c6cd1588cfd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1bbec951f0da0d28cefeab59d4ddc07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "620225ab-09e2-42ca-908c-83279c78e9ad", + "x-ms-client-request-id": "b1bbec951f0da0d28cefeab59d4ddc07", + "x-ms-correlation-request-id": "2bf191c5-c037-4152-8a3c-4e5ee7f74789", + "x-ms-ratelimit-remaining-subscription-reads": "11641", + "x-ms-request-id": "9b828b2c-b53f-4381-97da-3336cd1c60f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072358Z:2bf191c5-c037-4152-8a3c-4e5ee7f74789" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e9123dbe-fa2b-4c41-86bd-0b4e0dfebcf3?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d08907b47f913c78d8c2d247e23317a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:23:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ffb6e5b1-d49e-42fc-a05c-ca587ec66bd2", + "x-ms-client-request-id": "4d08907b47f913c78d8c2d247e23317a", + "x-ms-correlation-request-id": "1d2dfe3b-5ff2-4444-8f01-316ae1ccb85a", + "x-ms-ratelimit-remaining-subscription-reads": "11640", + "x-ms-request-id": "27e9691d-7bd4-4d5c-b240-098e35744a62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072359Z:1d2dfe3b-5ff2-4444-8f01-316ae1ccb85a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af11d909598c08b071248ead3301d388", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1349", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a247fcc-ac93-4a52-a564-2a25a5547d07", + "x-ms-client-request-id": "af11d909598c08b071248ead3301d388", + "x-ms-correlation-request-id": "55f25660-ebef-46a6-b84d-3962fb4f7b84", + "x-ms-ratelimit-remaining-subscription-reads": "11639", + "x-ms-request-id": "a9562ae1-962c-443a-9eaf-5853432a0a79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072400Z:55f25660-ebef-46a6-b84d-3962fb4f7b84" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1597\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002205d92600-923f-4ab4-8224-8fb2dd855536\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002254ace16c-1461-469c-8a0a-b9c5cbaa36e2\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f498fb8178884dd725a72481f2ae2268", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1349", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "286da008-99aa-4fb1-a30e-8b9e634cff03", + "x-ms-client-request-id": "f498fb8178884dd725a72481f2ae2268", + "x-ms-correlation-request-id": "0cf6a076-75fe-408a-b726-4a4492c273b3", + "x-ms-ratelimit-remaining-subscription-reads": "11638", + "x-ms-request-id": "7536d9aa-a2ee-4d49-9407-b3afb8f762ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072401Z:0cf6a076-75fe-408a-b726-4a4492c273b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1597\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002205d92600-923f-4ab4-8224-8fb2dd855536\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002254ace16c-1461-469c-8a0a-b9c5cbaa36e2\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "1373", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3ac70bd2c3b227adf00dbd5b819df8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet2809", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.0.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2712", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c664013e-e88f-4662-bca5-7cabc1b8df3d", + "x-ms-client-request-id": "c3ac70bd2c3b227adf00dbd5b819df8b", + "x-ms-correlation-request-id": "e3941969-5f38-4966-a5ea-66187c231e74", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "12c79c51-f43f-4e43-9f49-8bb4ca6e2c35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072404Z:e3941969-5f38-4966-a5ea-66187c231e74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9777\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022c52b0eeb-def6-4d35-82e4-14d2f79eb7de\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002274cc11e4-358e-4eb4-8f3f-eeeee8da5004\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet2809\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022c52b0eeb-def6-4d35-82e4-14d2f79eb7de\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022OpenVPN\u0022,\r\n", + " \u0022IkeV2\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.246.248.82\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2f026010f55544c817614889c01950b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6eb47183-7b80-4a4c-a1dc-68c21dc6455f", + "x-ms-client-request-id": "c2f026010f55544c817614889c01950b", + "x-ms-correlation-request-id": "e723be3f-4269-4ef2-851f-33fc3908cc9a", + "x-ms-ratelimit-remaining-subscription-reads": "11637", + "x-ms-request-id": "bd9c10a6-1ea8-47c7-96e7-8664ad496322", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072404Z:e723be3f-4269-4ef2-851f-33fc3908cc9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dc998c7a00b7fdc7f1bc178a295edb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc7c9785-da69-421a-b527-7c4a9d2e4441", + "x-ms-client-request-id": "4dc998c7a00b7fdc7f1bc178a295edb0", + "x-ms-correlation-request-id": "7f1182b3-ce32-4b21-a631-d32d8a6f8738", + "x-ms-ratelimit-remaining-subscription-reads": "11636", + "x-ms-request-id": "233952da-ea14-48c2-94a5-6e4a64d36834", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072405Z:7f1182b3-ce32-4b21-a631-d32d8a6f8738" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92d418e91c29a835584e00152968f300", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d7cfc3cd-b92f-4411-86de-c5100912e835", + "x-ms-client-request-id": "92d418e91c29a835584e00152968f300", + "x-ms-correlation-request-id": "9643a5c7-5124-47ee-aa48-669aa5ce3dbf", + "x-ms-ratelimit-remaining-subscription-reads": "11635", + "x-ms-request-id": "0f24c740-41fe-465a-88e8-3681c69d6c12", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072407Z:9643a5c7-5124-47ee-aa48-669aa5ce3dbf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c1d7e2ec96661b8497043394dd4b2ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8365f82b-32ba-40d9-a28f-dcb6920dc033", + "x-ms-client-request-id": "9c1d7e2ec96661b8497043394dd4b2ec", + "x-ms-correlation-request-id": "124cd54b-98fa-41a1-b33c-687537236df3", + "x-ms-ratelimit-remaining-subscription-reads": "11634", + "x-ms-request-id": "eadab2a9-beed-42d9-9916-099d0039f87b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072408Z:124cd54b-98fa-41a1-b33c-687537236df3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "849f6488022dabe26220f5bd9fc75616", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "061e61e8-a518-4807-8b69-74576c21736c", + "x-ms-client-request-id": "849f6488022dabe26220f5bd9fc75616", + "x-ms-correlation-request-id": "e3299480-7ece-4507-b819-98a856de5c04", + "x-ms-ratelimit-remaining-subscription-reads": "11633", + "x-ms-request-id": "40a7be0b-e9a0-40dc-9bd9-b8ef5b76fb59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072409Z:e3299480-7ece-4507-b819-98a856de5c04" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "234ac1285177204a607348b8d8fb5a84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bcd798ac-da9f-4507-bb63-3413a7082b43", + "x-ms-client-request-id": "234ac1285177204a607348b8d8fb5a84", + "x-ms-correlation-request-id": "a62a928e-0e19-417d-a712-91d7104bc03a", + "x-ms-ratelimit-remaining-subscription-reads": "11632", + "x-ms-request-id": "8936e4a3-46a5-4411-b930-56d8e6d7bbf5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072410Z:a62a928e-0e19-417d-a712-91d7104bc03a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c48c149b6ec92bd29c723945d3fbc181", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80215cd4-0e4b-4564-9b1d-f7691748dfef", + "x-ms-client-request-id": "c48c149b6ec92bd29c723945d3fbc181", + "x-ms-correlation-request-id": "cb7db6ff-b5d1-4354-b6aa-868fb14e80e7", + "x-ms-ratelimit-remaining-subscription-reads": "11631", + "x-ms-request-id": "66f4435f-26ee-4775-aee2-f455296e5a2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072412Z:cb7db6ff-b5d1-4354-b6aa-868fb14e80e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c112d198f8937741a7e24baba29d266", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4662695a-17fe-4b97-8246-971852218e23", + "x-ms-client-request-id": "8c112d198f8937741a7e24baba29d266", + "x-ms-correlation-request-id": "15346d30-d1b4-4543-ba50-daa019b3ef50", + "x-ms-ratelimit-remaining-subscription-reads": "11630", + "x-ms-request-id": "37cf61da-dbf6-4c9a-a00a-720480d3bbd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072413Z:15346d30-d1b4-4543-ba50-daa019b3ef50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a2171c5923bb94cee1f870517044c65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee07f50f-28b1-4a94-a78d-5f18bda6adec", + "x-ms-client-request-id": "8a2171c5923bb94cee1f870517044c65", + "x-ms-correlation-request-id": "acc9477e-3f3e-4103-9fac-7be676bb51a7", + "x-ms-ratelimit-remaining-subscription-reads": "11629", + "x-ms-request-id": "4d1761f2-4652-44b8-a8d0-622d46f86783", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072414Z:acc9477e-3f3e-4103-9fac-7be676bb51a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab9fc6b1ceea0cfaa055aa4b4a187072", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "741e8572-c763-45ca-a61f-2b2adead89d6", + "x-ms-client-request-id": "ab9fc6b1ceea0cfaa055aa4b4a187072", + "x-ms-correlation-request-id": "60c41338-bf58-4241-b7c0-288319ec1e3b", + "x-ms-ratelimit-remaining-subscription-reads": "11628", + "x-ms-request-id": "b25935c9-2fd9-4d7c-b605-116ad56f7e4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072416Z:60c41338-bf58-4241-b7c0-288319ec1e3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6280d2a036d98746e1579d6a076e2015", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb16f237-93fd-4db6-9a5d-67ff42e8255f", + "x-ms-client-request-id": "6280d2a036d98746e1579d6a076e2015", + "x-ms-correlation-request-id": "2d7c9a01-04da-4ed2-aaea-8a10e756ef5c", + "x-ms-ratelimit-remaining-subscription-reads": "11627", + "x-ms-request-id": "ed29bd6e-08df-4cab-9cee-882b0409a790", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072417Z:2d7c9a01-04da-4ed2-aaea-8a10e756ef5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f308bf322689f67c7615e9e5e7016fd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d4e6a9e-6369-41df-b925-0fcc610e6670", + "x-ms-client-request-id": "f308bf322689f67c7615e9e5e7016fd6", + "x-ms-correlation-request-id": "158bad20-7d1e-4fc3-9a4a-f9095424fb6f", + "x-ms-ratelimit-remaining-subscription-reads": "11626", + "x-ms-request-id": "b0488279-b50e-460b-b04f-e0f5b29899a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072418Z:158bad20-7d1e-4fc3-9a4a-f9095424fb6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "446514aee9837a8b8018c992318f0432", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "594562a6-c058-466a-beeb-4182d371bdda", + "x-ms-client-request-id": "446514aee9837a8b8018c992318f0432", + "x-ms-correlation-request-id": "92156aec-4db1-4a36-9294-2595e0d1fe83", + "x-ms-ratelimit-remaining-subscription-reads": "11625", + "x-ms-request-id": "2ae778e2-3954-481c-a08f-8ee528b72b2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072419Z:92156aec-4db1-4a36-9294-2595e0d1fe83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b1894347d1079e85689ebc44d609fe0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1e14ca8-e29a-495d-a4f6-b5344505aa22", + "x-ms-client-request-id": "8b1894347d1079e85689ebc44d609fe0", + "x-ms-correlation-request-id": "01bf2619-94bf-4145-b8d3-ad3cc6819c23", + "x-ms-ratelimit-remaining-subscription-reads": "11624", + "x-ms-request-id": "46c800fb-16df-4bb9-acc6-45f8d1b68cf0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072421Z:01bf2619-94bf-4145-b8d3-ad3cc6819c23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3bcc6e8db094892338d73715de9c5e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3991f7a2-eff9-4c10-b427-595fd1bc16bb", + "x-ms-client-request-id": "f3bcc6e8db094892338d73715de9c5e6", + "x-ms-correlation-request-id": "1a5644f4-04bf-4b8d-bbe6-a2ae88521df1", + "x-ms-ratelimit-remaining-subscription-reads": "11623", + "x-ms-request-id": "f6ff2f6a-b608-489a-a1af-e164171e04df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072422Z:1a5644f4-04bf-4b8d-bbe6-a2ae88521df1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52b0b710e3e830c62bebedfafec72d1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8c6584b-febe-46a7-813d-76c88921c692", + "x-ms-client-request-id": "52b0b710e3e830c62bebedfafec72d1f", + "x-ms-correlation-request-id": "bad8af09-2551-426f-9564-cfab1b3408e8", + "x-ms-ratelimit-remaining-subscription-reads": "11622", + "x-ms-request-id": "51e0ecd1-79c8-46fe-9fdf-9216133e935e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072423Z:bad8af09-2551-426f-9564-cfab1b3408e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6aaae97911d3592902d058820a771c6d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d032b92c-45c2-43e6-a7e3-7a757426a8ef", + "x-ms-client-request-id": "6aaae97911d3592902d058820a771c6d", + "x-ms-correlation-request-id": "ca9606d0-d76f-42ac-81dd-58608d926c53", + "x-ms-ratelimit-remaining-subscription-reads": "11621", + "x-ms-request-id": "cfa76140-9719-4d7c-91e2-5dbb0034252c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072424Z:ca9606d0-d76f-42ac-81dd-58608d926c53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95b304c34caf04f7008bc71ded984a6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91ebe012-fcda-42a6-9f86-a131399af5e5", + "x-ms-client-request-id": "95b304c34caf04f7008bc71ded984a6b", + "x-ms-correlation-request-id": "d542647a-97ea-4059-aebc-496c9768c0a3", + "x-ms-ratelimit-remaining-subscription-reads": "11620", + "x-ms-request-id": "bef487e3-c587-4642-967b-ca8679b14dfd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072426Z:d542647a-97ea-4059-aebc-496c9768c0a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73f8535f5b3ffe138e5750188b4426b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49d167d5-ad3d-4795-b4c0-2df136ec5db1", + "x-ms-client-request-id": "73f8535f5b3ffe138e5750188b4426b4", + "x-ms-correlation-request-id": "82aadc64-4ef1-4aab-8c68-4d4491299b2e", + "x-ms-ratelimit-remaining-subscription-reads": "11619", + "x-ms-request-id": "574d7d9b-66c2-4a49-bfa3-02695b963680", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072427Z:82aadc64-4ef1-4aab-8c68-4d4491299b2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f93680cf98142c6ff2a56a484a0c6b6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff516fae-1c76-4300-9180-2318fb05e463", + "x-ms-client-request-id": "f93680cf98142c6ff2a56a484a0c6b6a", + "x-ms-correlation-request-id": "e3e06b41-fcdf-485a-a374-438620e851ff", + "x-ms-ratelimit-remaining-subscription-reads": "11618", + "x-ms-request-id": "1c64573b-1fa0-49bc-a5a2-45698d725949", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072428Z:e3e06b41-fcdf-485a-a374-438620e851ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b622ec86a97f682df1b40758fbdf79bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff7b393f-cac4-4850-adf6-49bc6dc26fe1", + "x-ms-client-request-id": "b622ec86a97f682df1b40758fbdf79bc", + "x-ms-correlation-request-id": "52a8dde4-cb48-4a0d-9a80-1bf823919b67", + "x-ms-ratelimit-remaining-subscription-reads": "11617", + "x-ms-request-id": "6ef826b7-2771-48ae-86c7-1f34b7676629", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072430Z:52a8dde4-cb48-4a0d-9a80-1bf823919b67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c4d12655062c757e4cb819af1cab481", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c75a8a33-e41f-4cec-a161-949140c1d261", + "x-ms-client-request-id": "6c4d12655062c757e4cb819af1cab481", + "x-ms-correlation-request-id": "db62a83f-3515-4636-8fcf-b66ac2ca39e0", + "x-ms-ratelimit-remaining-subscription-reads": "11616", + "x-ms-request-id": "d7e02591-e445-496c-a27e-18a83a23dd57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072431Z:db62a83f-3515-4636-8fcf-b66ac2ca39e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e91e6ec6f21263453cd085f90173012", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a2200ba7-c9cd-4135-9ae7-cfe38afe27cb", + "x-ms-client-request-id": "9e91e6ec6f21263453cd085f90173012", + "x-ms-correlation-request-id": "53e9c279-d19f-44e2-b683-34ee32b5a66a", + "x-ms-ratelimit-remaining-subscription-reads": "11615", + "x-ms-request-id": "c9992904-a75b-4265-bef0-d79a04967ccf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072432Z:53e9c279-d19f-44e2-b683-34ee32b5a66a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37e3ad2bfebe3508955bd2b328937726", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4200974b-9225-4577-a8c0-03eea9ebb86f", + "x-ms-client-request-id": "37e3ad2bfebe3508955bd2b328937726", + "x-ms-correlation-request-id": "1fdf27c2-866e-4ec2-aeda-a601545028d9", + "x-ms-ratelimit-remaining-subscription-reads": "11614", + "x-ms-request-id": "c3256568-af19-4c05-8587-56db4f84b089", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072433Z:1fdf27c2-866e-4ec2-aeda-a601545028d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "156c8500da4df69ade26199448f736cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b4672d1-00fe-48ca-8b65-6be018f76308", + "x-ms-client-request-id": "156c8500da4df69ade26199448f736cd", + "x-ms-correlation-request-id": "fc22c9f9-1d61-421b-a53b-d8fe01f53316", + "x-ms-ratelimit-remaining-subscription-reads": "11613", + "x-ms-request-id": "956a3285-e8a7-4217-865d-feefd0bc797b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072435Z:fc22c9f9-1d61-421b-a53b-d8fe01f53316" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "436e6e9a7de7edc3de5b08c69c81fec0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26359f0d-2afb-4d49-8d6b-c8f9d204255c", + "x-ms-client-request-id": "436e6e9a7de7edc3de5b08c69c81fec0", + "x-ms-correlation-request-id": "8a54d0c3-058e-4346-b3ad-7ac6e805ff6a", + "x-ms-ratelimit-remaining-subscription-reads": "11612", + "x-ms-request-id": "832065a9-2525-48dc-aa85-3f17f68804d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072436Z:8a54d0c3-058e-4346-b3ad-7ac6e805ff6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b5fe1561baa50c512ec5997e473ed9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "431e33f4-ce22-4394-9df5-3b2b628f8dc8", + "x-ms-client-request-id": "0b5fe1561baa50c512ec5997e473ed9e", + "x-ms-correlation-request-id": "8d7de2b2-84d5-4307-9797-00e9be982846", + "x-ms-ratelimit-remaining-subscription-reads": "11611", + "x-ms-request-id": "7906c11c-0655-4a92-af47-d8db4e0478a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072437Z:8d7de2b2-84d5-4307-9797-00e9be982846" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b91904243324823fc27e37f1d2d4595c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddf5a081-e64e-4524-8990-fd0f0ffa7d33", + "x-ms-client-request-id": "b91904243324823fc27e37f1d2d4595c", + "x-ms-correlation-request-id": "4d895ac7-89b4-4dbf-883b-b11e078ac37d", + "x-ms-ratelimit-remaining-subscription-reads": "11610", + "x-ms-request-id": "dfe8a4f0-7e8a-4aad-86c0-3a2af29ae40a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072438Z:4d895ac7-89b4-4dbf-883b-b11e078ac37d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "673e59282b977f22a91e30fa232b086a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36029ed9-4986-4a3c-b526-48b2683e1f99", + "x-ms-client-request-id": "673e59282b977f22a91e30fa232b086a", + "x-ms-correlation-request-id": "dd0b9a4e-daea-470a-a2e6-e85da1575ea3", + "x-ms-ratelimit-remaining-subscription-reads": "11609", + "x-ms-request-id": "2d324e14-0123-41c4-bc89-e1f35b31d41b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072440Z:dd0b9a4e-daea-470a-a2e6-e85da1575ea3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97a16a6e4468229ba1dc482ce4d37e3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d0e93c9-732e-4d80-80ad-71ad9429c920", + "x-ms-client-request-id": "97a16a6e4468229ba1dc482ce4d37e3d", + "x-ms-correlation-request-id": "c1f04788-1141-4a12-b86e-7a823b6d5fd8", + "x-ms-ratelimit-remaining-subscription-reads": "11608", + "x-ms-request-id": "038d2670-4b12-474a-bacc-ad79304a0899", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072441Z:c1f04788-1141-4a12-b86e-7a823b6d5fd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b6ffc938535f807e299100603445e96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a78435f5-4f2b-4ee9-86f2-88e22f716d10", + "x-ms-client-request-id": "8b6ffc938535f807e299100603445e96", + "x-ms-correlation-request-id": "6fd93c73-162f-42ab-9455-0643f4305d28", + "x-ms-ratelimit-remaining-subscription-reads": "11607", + "x-ms-request-id": "36a43f7f-6a26-4fd6-a804-e3bc2b56d6c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072442Z:6fd93c73-162f-42ab-9455-0643f4305d28" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6882cc76c133e3f4bd1cc5bae2f69ad5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d0d79f0a-7e27-46d5-9821-6c4d4ccb5f6d", + "x-ms-client-request-id": "6882cc76c133e3f4bd1cc5bae2f69ad5", + "x-ms-correlation-request-id": "a99fb0b7-154b-4675-8c70-abdb0298ad30", + "x-ms-ratelimit-remaining-subscription-reads": "11606", + "x-ms-request-id": "f036f211-2768-4b0b-b889-23f68fb0ce97", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072444Z:a99fb0b7-154b-4675-8c70-abdb0298ad30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2767f29f7dbce83562a8b5ce34951f5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6695df6c-69cf-421f-a793-a24022fab7a9", + "x-ms-client-request-id": "2767f29f7dbce83562a8b5ce34951f5c", + "x-ms-correlation-request-id": "9379a9e8-9491-45c9-b3ad-bc831309b7f0", + "x-ms-ratelimit-remaining-subscription-reads": "11605", + "x-ms-request-id": "c5f926b3-5d57-4f35-93de-165989790261", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072445Z:9379a9e8-9491-45c9-b3ad-bc831309b7f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18b6b27e1650d20a078bcd19c04c16ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2d23d3b-a76f-410e-ba6f-b361b688f5eb", + "x-ms-client-request-id": "18b6b27e1650d20a078bcd19c04c16ec", + "x-ms-correlation-request-id": "5fbe6c32-9547-49fc-bbb3-c9fda77c86c2", + "x-ms-ratelimit-remaining-subscription-reads": "11604", + "x-ms-request-id": "42e49d07-e193-4368-8ee2-eff2524b2425", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072446Z:5fbe6c32-9547-49fc-bbb3-c9fda77c86c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10663bfe37ddf8da969a058a0b26af28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28b9957e-1ce2-42d3-b1dd-c71a8767909e", + "x-ms-client-request-id": "10663bfe37ddf8da969a058a0b26af28", + "x-ms-correlation-request-id": "4edea47b-6350-42c5-a31f-3e7a579d99fe", + "x-ms-ratelimit-remaining-subscription-reads": "11603", + "x-ms-request-id": "0440e813-55e8-49ec-8c39-601f9fe13715", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072447Z:4edea47b-6350-42c5-a31f-3e7a579d99fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "303c68fd823f8984e7941f30af1c2816", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b47b70a9-4517-4063-bb51-4731b1c86ace", + "x-ms-client-request-id": "303c68fd823f8984e7941f30af1c2816", + "x-ms-correlation-request-id": "0b07b13c-0ce3-43bb-bbce-87b18ba6174a", + "x-ms-ratelimit-remaining-subscription-reads": "11602", + "x-ms-request-id": "1ce53094-71f9-4684-b698-dda8604999b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072449Z:0b07b13c-0ce3-43bb-bbce-87b18ba6174a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8cfc8920e2f467fd7bd81b61180c6e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66d450c9-31c6-452a-836c-c160e96341f0", + "x-ms-client-request-id": "f8cfc8920e2f467fd7bd81b61180c6e1", + "x-ms-correlation-request-id": "a64df7ba-19f1-4dc2-8079-c940108e7d52", + "x-ms-ratelimit-remaining-subscription-reads": "11601", + "x-ms-request-id": "18a27568-f841-4293-aebb-5acbd53b5f70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072450Z:a64df7ba-19f1-4dc2-8079-c940108e7d52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "571ca5dce5107bacb6dd284817aa487a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c79fc888-0629-46e5-a8ad-4decf546c1fb", + "x-ms-client-request-id": "571ca5dce5107bacb6dd284817aa487a", + "x-ms-correlation-request-id": "2c38a452-4f7e-4a69-8d07-683694f3d0d6", + "x-ms-ratelimit-remaining-subscription-reads": "11600", + "x-ms-request-id": "e6e6499d-0b37-4fdc-9224-2a022d3161f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072452Z:2c38a452-4f7e-4a69-8d07-683694f3d0d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43f7ef71b656eef9e9f5588201ce7867", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08463737-eaea-4b89-90ae-507f430b7687", + "x-ms-client-request-id": "43f7ef71b656eef9e9f5588201ce7867", + "x-ms-correlation-request-id": "fb061da6-f18f-49d7-a4cf-2c424e79860e", + "x-ms-ratelimit-remaining-subscription-reads": "11599", + "x-ms-request-id": "ea5b3a4d-41ba-4890-8c25-b00106679afb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072453Z:fb061da6-f18f-49d7-a4cf-2c424e79860e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a543eced1ffac051b534251e6362f2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b237df3d-fd27-45c6-8cfd-cef609ef12db", + "x-ms-client-request-id": "0a543eced1ffac051b534251e6362f2d", + "x-ms-correlation-request-id": "939b698d-5211-4bf0-9f13-9a969cc14332", + "x-ms-ratelimit-remaining-subscription-reads": "11598", + "x-ms-request-id": "fe317496-71f2-43f5-a5da-cd4d7f735e83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072454Z:939b698d-5211-4bf0-9f13-9a969cc14332" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "224406748388258aac2d6e1a8d2a7ae8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e689092-5ed1-43a3-9501-4e299e0bd6f9", + "x-ms-client-request-id": "224406748388258aac2d6e1a8d2a7ae8", + "x-ms-correlation-request-id": "56310f59-ff85-4e23-aecb-a5a51a2f3cfb", + "x-ms-ratelimit-remaining-subscription-reads": "11597", + "x-ms-request-id": "6ea6d608-0830-49fd-8b33-abf5d2befaa3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072456Z:56310f59-ff85-4e23-aecb-a5a51a2f3cfb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d97ac0653e56a07ae94b270274a708b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c10d825-324e-4eec-894f-42c0c5d8d759", + "x-ms-client-request-id": "d97ac0653e56a07ae94b270274a708b2", + "x-ms-correlation-request-id": "6e55e900-1654-4758-b5c1-cb35fdca1f3e", + "x-ms-ratelimit-remaining-subscription-reads": "11596", + "x-ms-request-id": "0f05f431-021b-4f62-8161-e295251c6c4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072457Z:6e55e900-1654-4758-b5c1-cb35fdca1f3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb0d2bc655894bdeb32e5ed263ea1ff1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6549fddc-d33e-4ce2-b643-8ba1db13ba51", + "x-ms-client-request-id": "fb0d2bc655894bdeb32e5ed263ea1ff1", + "x-ms-correlation-request-id": "5d16a4ef-25f6-4a1e-9fa4-b496f6823405", + "x-ms-ratelimit-remaining-subscription-reads": "11595", + "x-ms-request-id": "602eb128-5da6-4ee2-bd14-f31af629f02f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072458Z:5d16a4ef-25f6-4a1e-9fa4-b496f6823405" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25ec59d956bc36d78ba4383d5b87b004", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:24:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b54a1fdd-32c3-4bc9-807d-70bd0614668f", + "x-ms-client-request-id": "25ec59d956bc36d78ba4383d5b87b004", + "x-ms-correlation-request-id": "9c52d05a-6f0a-4534-9b2d-99dafd87aff9", + "x-ms-ratelimit-remaining-subscription-reads": "11594", + "x-ms-request-id": "dd7a13f5-b82d-4dd2-9c1c-082fb66f00bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072459Z:9c52d05a-6f0a-4534-9b2d-99dafd87aff9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6154bb257e1d0f5ee22e2527dfa83dfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "095f3f37-a3bb-48d3-954f-5c83b82722af", + "x-ms-client-request-id": "6154bb257e1d0f5ee22e2527dfa83dfe", + "x-ms-correlation-request-id": "2fe471fc-73ef-4b06-936b-9d2decac7b21", + "x-ms-ratelimit-remaining-subscription-reads": "11593", + "x-ms-request-id": "b0dceaa8-1e29-470a-b1ce-b5ddbcf32042", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072501Z:2fe471fc-73ef-4b06-936b-9d2decac7b21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a29362be3ba70f654d66fe51da1ef2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c957ba8-b34d-4afb-8c99-d23922b802a1", + "x-ms-client-request-id": "1a29362be3ba70f654d66fe51da1ef2b", + "x-ms-correlation-request-id": "d66f5568-dfab-4baf-bee0-0c04dd1e6f15", + "x-ms-ratelimit-remaining-subscription-reads": "11592", + "x-ms-request-id": "a476717a-5bb7-45e8-beda-3cfd7881e387", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072502Z:d66f5568-dfab-4baf-bee0-0c04dd1e6f15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7ac5a7dbd965ad3fadd438d30af57e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7fc91b05-0d40-4062-87e9-f78aeaee1c9a", + "x-ms-client-request-id": "a7ac5a7dbd965ad3fadd438d30af57e2", + "x-ms-correlation-request-id": "2d1deca1-673a-4517-ac18-b1abab52cf0f", + "x-ms-ratelimit-remaining-subscription-reads": "11591", + "x-ms-request-id": "84b4c0fe-9d87-4610-814b-802055e0c6a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072503Z:2d1deca1-673a-4517-ac18-b1abab52cf0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25113a67965e4249c4e40d470e79f240", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3d5cff7-f089-4e2b-9c8b-b712f6a4e038", + "x-ms-client-request-id": "25113a67965e4249c4e40d470e79f240", + "x-ms-correlation-request-id": "fdae6e4d-289e-406b-84bf-570dd9d52005", + "x-ms-ratelimit-remaining-subscription-reads": "11590", + "x-ms-request-id": "7840c63f-fa83-4fb7-9d02-dd849993df5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072504Z:fdae6e4d-289e-406b-84bf-570dd9d52005" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85aaf93f95fb6e6862ce1fdda0683fa5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "213b87ee-b323-423a-a79c-8948f5817167", + "x-ms-client-request-id": "85aaf93f95fb6e6862ce1fdda0683fa5", + "x-ms-correlation-request-id": "0a072d24-71a1-4182-b92b-0dab7db506c9", + "x-ms-ratelimit-remaining-subscription-reads": "11589", + "x-ms-request-id": "1ee4dbac-9a8c-4bd1-b915-a7b4d89abccd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072506Z:0a072d24-71a1-4182-b92b-0dab7db506c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e37d8d7eca90e7cd106ae2b1af8c4c81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6061d8d3-aaa9-435a-a7d1-d37f20c5358d", + "x-ms-client-request-id": "e37d8d7eca90e7cd106ae2b1af8c4c81", + "x-ms-correlation-request-id": "d96cc8e3-8c38-4da3-85aa-6bc942dd8c6d", + "x-ms-ratelimit-remaining-subscription-reads": "11588", + "x-ms-request-id": "db7f4a8f-7e94-4962-8f17-710230b3d7c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072507Z:d96cc8e3-8c38-4da3-85aa-6bc942dd8c6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "374e02ead205d1e7d1a2c390766ba15b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3cb6877e-c5aa-41e9-9fd5-2377559b2230", + "x-ms-client-request-id": "374e02ead205d1e7d1a2c390766ba15b", + "x-ms-correlation-request-id": "c71917a5-ba35-4432-84fa-fa130da095d3", + "x-ms-ratelimit-remaining-subscription-reads": "11587", + "x-ms-request-id": "aee34718-f01e-4d01-846e-9407fbbe87ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072508Z:c71917a5-ba35-4432-84fa-fa130da095d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81c868a40ffc75b02cc27590b2b7bed6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e944f465-0a90-4cfc-ab00-14c954cb8106", + "x-ms-client-request-id": "81c868a40ffc75b02cc27590b2b7bed6", + "x-ms-correlation-request-id": "a0bd0a38-5bd3-4de5-95b8-e38f996b08cf", + "x-ms-ratelimit-remaining-subscription-reads": "11586", + "x-ms-request-id": "076f1d4a-80cc-4738-8043-805270e4d725", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072510Z:a0bd0a38-5bd3-4de5-95b8-e38f996b08cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9df39e82081aaca0a6ab11ed063d70a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "380c0ca1-b6f6-4c0d-8ecb-11dea5542d97", + "x-ms-client-request-id": "9df39e82081aaca0a6ab11ed063d70a4", + "x-ms-correlation-request-id": "8dc8ef10-d3e2-4b15-b225-49b58ae979ea", + "x-ms-ratelimit-remaining-subscription-reads": "11585", + "x-ms-request-id": "5875cbea-1a8e-4122-b54c-3d0f31729e70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072511Z:8dc8ef10-d3e2-4b15-b225-49b58ae979ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "470c87c8cac3db8552d90a425d561f1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57b7ee36-38ac-48d8-9efb-4d39a522cfb9", + "x-ms-client-request-id": "470c87c8cac3db8552d90a425d561f1a", + "x-ms-correlation-request-id": "ba5cf282-9ad2-47cd-892d-89e313880fee", + "x-ms-ratelimit-remaining-subscription-reads": "11584", + "x-ms-request-id": "fbd37f9c-c285-4644-a128-ac4d8e322523", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072512Z:ba5cf282-9ad2-47cd-892d-89e313880fee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d70dece304789c41c81bdb50fdc36eef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "caf66c13-4814-4e2f-a7d0-b4d9f0414398", + "x-ms-client-request-id": "d70dece304789c41c81bdb50fdc36eef", + "x-ms-correlation-request-id": "22ffd9d9-5b3d-441a-a7d8-bb9a04566b31", + "x-ms-ratelimit-remaining-subscription-reads": "11583", + "x-ms-request-id": "a58be27b-ec31-45a0-bcb3-8b58be277c5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072513Z:22ffd9d9-5b3d-441a-a7d8-bb9a04566b31" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bc7d05277aab71219174b41fd5d4f4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ea7e374-58b0-41f0-b117-ffccee15f021", + "x-ms-client-request-id": "2bc7d05277aab71219174b41fd5d4f4f", + "x-ms-correlation-request-id": "bf7a4aba-3368-4029-aa31-773fa8516867", + "x-ms-ratelimit-remaining-subscription-reads": "11582", + "x-ms-request-id": "fa57fc63-dda8-47db-9d44-91f39b4eb97d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072515Z:bf7a4aba-3368-4029-aa31-773fa8516867" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a09f78c982fc42b45707ea7ee35dd8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "352f1575-b92f-4c48-88a2-fe1e598046d0", + "x-ms-client-request-id": "1a09f78c982fc42b45707ea7ee35dd8e", + "x-ms-correlation-request-id": "7502b25f-25be-4df8-b9cc-68687b202cbb", + "x-ms-ratelimit-remaining-subscription-reads": "11581", + "x-ms-request-id": "741fd9b7-b413-4834-b054-47b62c7b4bf1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072516Z:7502b25f-25be-4df8-b9cc-68687b202cbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cf01b6af48e6b6fda55be61b9ff9e6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cf12888-cb22-4665-aaab-69366c620341", + "x-ms-client-request-id": "8cf01b6af48e6b6fda55be61b9ff9e6a", + "x-ms-correlation-request-id": "2ac7639a-7759-4069-86e0-87a07ea4988c", + "x-ms-ratelimit-remaining-subscription-reads": "11580", + "x-ms-request-id": "05b44ed4-eee6-47bd-b181-3af408d60211", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072517Z:2ac7639a-7759-4069-86e0-87a07ea4988c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06c38bcc54b9b9bfa403e53af96ac9e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "895cb07d-7d6a-4b5b-84a6-155931cc7f54", + "x-ms-client-request-id": "06c38bcc54b9b9bfa403e53af96ac9e4", + "x-ms-correlation-request-id": "7e1758a7-f841-4e29-81e0-c5439545d64c", + "x-ms-ratelimit-remaining-subscription-reads": "11579", + "x-ms-request-id": "c782928a-85b1-4a6d-947a-eb242b9b7d0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072519Z:7e1758a7-f841-4e29-81e0-c5439545d64c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1d6bc39c26d98c1879d3fd9daca0b46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c44474e4-83c8-4753-9308-ee2bb0064566", + "x-ms-client-request-id": "e1d6bc39c26d98c1879d3fd9daca0b46", + "x-ms-correlation-request-id": "62272960-a8d3-4cfd-8fe4-51e216179671", + "x-ms-ratelimit-remaining-subscription-reads": "11578", + "x-ms-request-id": "f58bc6a1-5ef4-478b-b6ef-81c2c13b4ffd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072520Z:62272960-a8d3-4cfd-8fe4-51e216179671" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63db14d1d77116d45c37e88b0e35726f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd0492a7-a53a-4bfe-9737-746c3bace300", + "x-ms-client-request-id": "63db14d1d77116d45c37e88b0e35726f", + "x-ms-correlation-request-id": "c18dcfbc-a678-4fc6-843e-2f8b62b2a218", + "x-ms-ratelimit-remaining-subscription-reads": "11577", + "x-ms-request-id": "31343c5c-e37d-48ce-96de-d438e6f7e260", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072522Z:c18dcfbc-a678-4fc6-843e-2f8b62b2a218" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc27d98cbd2809fcca2b7f1c14e6deda", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52ddd63c-1e81-4c42-b3a1-61cdc4be7231", + "x-ms-client-request-id": "fc27d98cbd2809fcca2b7f1c14e6deda", + "x-ms-correlation-request-id": "13699e25-1e41-4e6a-956d-f333857e0d76", + "x-ms-ratelimit-remaining-subscription-reads": "11576", + "x-ms-request-id": "10cf7638-cb2c-42a5-b169-ad9dfeb0654c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072523Z:13699e25-1e41-4e6a-956d-f333857e0d76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5699ff7658f6273e7c08536da368952", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fabedbf-e89d-40cf-8bf8-40752e42789a", + "x-ms-client-request-id": "e5699ff7658f6273e7c08536da368952", + "x-ms-correlation-request-id": "c036ea4d-0ed4-4873-9853-908fe9b20f15", + "x-ms-ratelimit-remaining-subscription-reads": "11575", + "x-ms-request-id": "bba2fc58-0e49-4233-bee4-f0f63869280a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072524Z:c036ea4d-0ed4-4873-9853-908fe9b20f15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "004ccf2a0fa2141d17d2984558b80275", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "061bb4e5-43a1-4f27-b1cc-7ed94a9e2d5c", + "x-ms-client-request-id": "004ccf2a0fa2141d17d2984558b80275", + "x-ms-correlation-request-id": "62beda45-8866-49bd-83c4-25a23c2f7c47", + "x-ms-ratelimit-remaining-subscription-reads": "11574", + "x-ms-request-id": "305f4376-07b8-4cc7-828c-b641c2d31236", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072526Z:62beda45-8866-49bd-83c4-25a23c2f7c47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f930e588dcb26e066c5146837c62e93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14b81570-c75f-4d87-b7b5-6aaaf63abba0", + "x-ms-client-request-id": "6f930e588dcb26e066c5146837c62e93", + "x-ms-correlation-request-id": "eff677f7-bd10-44b4-9468-bb2139610363", + "x-ms-ratelimit-remaining-subscription-reads": "11573", + "x-ms-request-id": "b42dd54a-ee37-4906-9bb7-02993dd4e16a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072527Z:eff677f7-bd10-44b4-9468-bb2139610363" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44f12da2dd99e8378255cebccc2d092e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eafcdb49-8296-4c79-8e10-51e02885a2b7", + "x-ms-client-request-id": "44f12da2dd99e8378255cebccc2d092e", + "x-ms-correlation-request-id": "1656995e-0f5b-441f-ba8f-428ad6175d4e", + "x-ms-ratelimit-remaining-subscription-reads": "11572", + "x-ms-request-id": "c1b580b9-ef7d-41ac-88e7-5ec7636a5f95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072528Z:1656995e-0f5b-441f-ba8f-428ad6175d4e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccdd0fbe1aa39d86ef2599dcfab4dc50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "349affc9-c581-4f18-9f94-655b19da454a", + "x-ms-client-request-id": "ccdd0fbe1aa39d86ef2599dcfab4dc50", + "x-ms-correlation-request-id": "ed18fb1d-e87c-4b5e-8fbc-9968451a9eee", + "x-ms-ratelimit-remaining-subscription-reads": "11571", + "x-ms-request-id": "1584ca67-6257-4765-abb8-2d5747e1cc8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072529Z:ed18fb1d-e87c-4b5e-8fbc-9968451a9eee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2aa305a3bdc77adcd6aaec76bf235939", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b1639e9-24bc-4402-8511-fc7a8c7db4b5", + "x-ms-client-request-id": "2aa305a3bdc77adcd6aaec76bf235939", + "x-ms-correlation-request-id": "1bd10089-ddf5-4671-884f-59deb039bafd", + "x-ms-ratelimit-remaining-subscription-reads": "11570", + "x-ms-request-id": "604e7158-7368-4973-a3d6-964e849176a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072531Z:1bd10089-ddf5-4671-884f-59deb039bafd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27aae5bb62e887f0a7545573445aeece", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fde7ade7-91f5-4bfd-be66-e60b33773c2a", + "x-ms-client-request-id": "27aae5bb62e887f0a7545573445aeece", + "x-ms-correlation-request-id": "5778f587-6a6a-48d5-8727-8433ce3a69c4", + "x-ms-ratelimit-remaining-subscription-reads": "11569", + "x-ms-request-id": "f371b5d1-d5b6-4778-b8a1-097648e7afa5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072532Z:5778f587-6a6a-48d5-8727-8433ce3a69c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7197d78df8900673363f5f82d0fddcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ba04193-9f51-4344-a4a0-269a523b6295", + "x-ms-client-request-id": "c7197d78df8900673363f5f82d0fddcb", + "x-ms-correlation-request-id": "6e160ff1-16db-42d3-95d8-c312abfc63b0", + "x-ms-ratelimit-remaining-subscription-reads": "11568", + "x-ms-request-id": "e66090ff-23fc-4cc2-b7d8-d69ff0daaad0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072533Z:6e160ff1-16db-42d3-95d8-c312abfc63b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14205fcbb4094168141c83726768367b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb87548b-eb2b-4c6b-89a6-a5b1fa1f444f", + "x-ms-client-request-id": "14205fcbb4094168141c83726768367b", + "x-ms-correlation-request-id": "3cf0bb17-f785-4ff4-af2c-11437314a607", + "x-ms-ratelimit-remaining-subscription-reads": "11567", + "x-ms-request-id": "f2bddbe5-0353-48a5-aa92-44b1a83d2b67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072535Z:3cf0bb17-f785-4ff4-af2c-11437314a607" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42fd1ebc920adcb07da9f4856cf75997", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f33dc95c-c9fb-4891-982e-c8774a10ef07", + "x-ms-client-request-id": "42fd1ebc920adcb07da9f4856cf75997", + "x-ms-correlation-request-id": "bd024f73-b0d5-4c51-8fb7-0e270d0de911", + "x-ms-ratelimit-remaining-subscription-reads": "11566", + "x-ms-request-id": "c54fcafe-3ffb-4a05-9de1-83e61c1b3be3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072536Z:bd024f73-b0d5-4c51-8fb7-0e270d0de911" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4a88976d93ac4c414d8b26d5bf599ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c94e3e3c-4f22-400e-97f6-8eda5af06b0e", + "x-ms-client-request-id": "e4a88976d93ac4c414d8b26d5bf599ca", + "x-ms-correlation-request-id": "8e96d33b-d524-4933-9dca-05350a5b25a8", + "x-ms-ratelimit-remaining-subscription-reads": "11565", + "x-ms-request-id": "535835f0-49b7-4e9a-9d64-a9d36a1ad0cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072537Z:8e96d33b-d524-4933-9dca-05350a5b25a8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f3c7a2c9b1139c1af439660bfe3d41c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6699077-8422-4048-a7c2-83237533610d", + "x-ms-client-request-id": "0f3c7a2c9b1139c1af439660bfe3d41c", + "x-ms-correlation-request-id": "b0b355f0-c41d-44f0-94cf-6068bd4f031e", + "x-ms-ratelimit-remaining-subscription-reads": "11564", + "x-ms-request-id": "49912b2c-8532-40aa-8584-584b33981195", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072539Z:b0b355f0-c41d-44f0-94cf-6068bd4f031e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddfbebc252c0e2415a392d31df438188", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "beb00a77-028b-44af-958a-f18bad242bb0", + "x-ms-client-request-id": "ddfbebc252c0e2415a392d31df438188", + "x-ms-correlation-request-id": "e3a2ff50-31b0-42fd-8c4d-b0ecf691f447", + "x-ms-ratelimit-remaining-subscription-reads": "11563", + "x-ms-request-id": "12e72d4a-a9a0-461a-ac7a-8caababbd176", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072540Z:e3a2ff50-31b0-42fd-8c4d-b0ecf691f447" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2592a104abbdb86c86e34f642630431", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff385a50-30ce-432a-b13a-1c28588bb59a", + "x-ms-client-request-id": "f2592a104abbdb86c86e34f642630431", + "x-ms-correlation-request-id": "9509b3f7-a6ba-4685-be74-ec0aecfe501f", + "x-ms-ratelimit-remaining-subscription-reads": "11562", + "x-ms-request-id": "a04a1b64-2d3a-4d19-aec3-30f9931783f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072541Z:9509b3f7-a6ba-4685-be74-ec0aecfe501f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6faa9503bbf9d90a3859b4d76d905a6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed1963db-9b86-4eac-81be-0e61576860a4", + "x-ms-client-request-id": "6faa9503bbf9d90a3859b4d76d905a6b", + "x-ms-correlation-request-id": "41838c02-d295-4661-a761-26c4ae31a3dd", + "x-ms-ratelimit-remaining-subscription-reads": "11561", + "x-ms-request-id": "a478588c-2764-468c-b0e7-0edb28ff2f9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072542Z:41838c02-d295-4661-a761-26c4ae31a3dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "954f0ec2e2897761652015521d4aa0f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ee1706e-d7cb-43a5-8c24-fdfc2b26e5b2", + "x-ms-client-request-id": "954f0ec2e2897761652015521d4aa0f6", + "x-ms-correlation-request-id": "b051b822-c2b5-4122-9317-205d0c668f6d", + "x-ms-ratelimit-remaining-subscription-reads": "11560", + "x-ms-request-id": "39eeab61-9ca6-4481-97f5-bb855cc29613", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072544Z:b051b822-c2b5-4122-9317-205d0c668f6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "492dfc351199558e1f7fb96295ae6e38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "193cbae0-3554-409a-adfa-a6be50d80772", + "x-ms-client-request-id": "492dfc351199558e1f7fb96295ae6e38", + "x-ms-correlation-request-id": "7355aff5-7586-4370-9ad8-7b362e1a350f", + "x-ms-ratelimit-remaining-subscription-reads": "11559", + "x-ms-request-id": "79bc337e-6cfa-4edb-b6ad-719e9a81cce5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072545Z:7355aff5-7586-4370-9ad8-7b362e1a350f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3433c9146e1421a734320ad9a5b8bcee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36636173-37d0-473c-af4d-6f4507685988", + "x-ms-client-request-id": "3433c9146e1421a734320ad9a5b8bcee", + "x-ms-correlation-request-id": "13b365a6-385e-4e9a-ac20-c0b2c9c40a11", + "x-ms-ratelimit-remaining-subscription-reads": "11558", + "x-ms-request-id": "0f3c92af-63da-4cd8-8df7-1292f5038bf9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072546Z:13b365a6-385e-4e9a-ac20-c0b2c9c40a11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71a2beb81062b1d27ffa750a28fee1b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1037f755-9031-4b41-92c3-b8c8e7a15ffc", + "x-ms-client-request-id": "71a2beb81062b1d27ffa750a28fee1b6", + "x-ms-correlation-request-id": "e30102e7-3af2-4539-90b3-9b024964c27f", + "x-ms-ratelimit-remaining-subscription-reads": "11557", + "x-ms-request-id": "f29330ec-960b-457e-94d3-6583a11a84e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072548Z:e30102e7-3af2-4539-90b3-9b024964c27f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "543eddb16c16c6e2540b146606b5b067", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22f78973-28ee-47b0-84ea-6b46f140d50d", + "x-ms-client-request-id": "543eddb16c16c6e2540b146606b5b067", + "x-ms-correlation-request-id": "9724a581-0c6d-4209-8a24-6944f4f426d8", + "x-ms-ratelimit-remaining-subscription-reads": "11556", + "x-ms-request-id": "88d14f99-0044-4203-ab13-7bcfe9701fee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072549Z:9724a581-0c6d-4209-8a24-6944f4f426d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7a9cbc3fd0c03d5f682b41af99cf935", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be5259f4-a098-457c-8578-ac5bb560d23a", + "x-ms-client-request-id": "d7a9cbc3fd0c03d5f682b41af99cf935", + "x-ms-correlation-request-id": "a583b390-834f-42ef-b40e-51ee6ec2ab83", + "x-ms-ratelimit-remaining-subscription-reads": "11555", + "x-ms-request-id": "340eb56e-d494-47e9-bd91-94809881ddbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072550Z:a583b390-834f-42ef-b40e-51ee6ec2ab83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c727545067794cd7dbdb1c56fb6caac9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b95f3091-3e4b-479e-8c21-3564c17a5fe4", + "x-ms-client-request-id": "c727545067794cd7dbdb1c56fb6caac9", + "x-ms-correlation-request-id": "eff2b01a-2b7a-4cf9-be1e-a31fbedfaf81", + "x-ms-ratelimit-remaining-subscription-reads": "11554", + "x-ms-request-id": "9b90c535-d662-4804-b79f-7fa5397b1544", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072551Z:eff2b01a-2b7a-4cf9-be1e-a31fbedfaf81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d470d490a55b4a9073a5d94b7c7cdb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4e91026-368a-4d3f-a2ab-5898c0717fe3", + "x-ms-client-request-id": "5d470d490a55b4a9073a5d94b7c7cdb7", + "x-ms-correlation-request-id": "33e17da7-43eb-4e0d-a857-1b3c8e6ac215", + "x-ms-ratelimit-remaining-subscription-reads": "11553", + "x-ms-request-id": "43668a27-b376-4a8d-ab95-b8d7bb30a508", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072553Z:33e17da7-43eb-4e0d-a857-1b3c8e6ac215" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b215df12e88d5bedf45cfb30e07e078a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e5656cdf-abc3-41a6-8134-f324817fb0d1", + "x-ms-client-request-id": "b215df12e88d5bedf45cfb30e07e078a", + "x-ms-correlation-request-id": "8649381b-0e20-4264-a385-ddfad47f3f78", + "x-ms-ratelimit-remaining-subscription-reads": "11552", + "x-ms-request-id": "59cd02ed-dd2c-4611-bafb-b20481571a41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072554Z:8649381b-0e20-4264-a385-ddfad47f3f78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ebd0ebd89c5546e0aa73bf3e0a429514", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3916a127-0907-4054-95f1-6d8d5bb83776", + "x-ms-client-request-id": "ebd0ebd89c5546e0aa73bf3e0a429514", + "x-ms-correlation-request-id": "6dd6ba47-fb41-4555-abb8-c5dd7b12b886", + "x-ms-ratelimit-remaining-subscription-reads": "11551", + "x-ms-request-id": "3bdccc35-60c2-4f98-a139-9d74e1ba6582", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072555Z:6dd6ba47-fb41-4555-abb8-c5dd7b12b886" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c44650ef756613c1fec68f80e78d489", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "210efd75-6798-4b9f-8386-239ed4f812ea", + "x-ms-client-request-id": "1c44650ef756613c1fec68f80e78d489", + "x-ms-correlation-request-id": "38f53c0a-7ac4-4388-9610-ca3b13833582", + "x-ms-ratelimit-remaining-subscription-reads": "11550", + "x-ms-request-id": "60f9b534-bcf0-409f-8acd-f62c3829fb82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072557Z:38f53c0a-7ac4-4388-9610-ca3b13833582" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ccbcd333e2f77662fecf081a28ae51b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db9e24b1-d5ae-4f1b-b5f7-842443d50940", + "x-ms-client-request-id": "ccbcd333e2f77662fecf081a28ae51b1", + "x-ms-correlation-request-id": "857bbcbc-e80b-49e7-8ab4-4d24de974798", + "x-ms-ratelimit-remaining-subscription-reads": "11549", + "x-ms-request-id": "5c85a0fa-253b-4bab-996c-08f1a8d7c770", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072558Z:857bbcbc-e80b-49e7-8ab4-4d24de974798" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b22e7c7ea3ae033ae6fcb6833e83831", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:25:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d5032b5-8be7-4fb6-b7ec-88ee5c6fe2ea", + "x-ms-client-request-id": "7b22e7c7ea3ae033ae6fcb6833e83831", + "x-ms-correlation-request-id": "703df444-f5df-47af-b6c4-82fd1083e6b0", + "x-ms-ratelimit-remaining-subscription-reads": "11548", + "x-ms-request-id": "ef444d44-30d6-4e30-9e4e-679264e7b941", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072559Z:703df444-f5df-47af-b6c4-82fd1083e6b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "360b369fc9862c1c03ce1e86ef213971", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2cbe2ed1-a936-44ee-8ea2-0bd7097a5425", + "x-ms-client-request-id": "360b369fc9862c1c03ce1e86ef213971", + "x-ms-correlation-request-id": "709279de-f752-4e45-b178-8ac23841ef71", + "x-ms-ratelimit-remaining-subscription-reads": "11547", + "x-ms-request-id": "0a47515b-51bb-4694-bd85-8db1e982ed26", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072600Z:709279de-f752-4e45-b178-8ac23841ef71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2631b69b5956494fa0db1d8816f94216", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56170104-c782-4357-b56b-9047bf04deec", + "x-ms-client-request-id": "2631b69b5956494fa0db1d8816f94216", + "x-ms-correlation-request-id": "6bd14510-de4f-443d-a600-6eea78c1f072", + "x-ms-ratelimit-remaining-subscription-reads": "11546", + "x-ms-request-id": "44f53eef-c5d9-40c1-aba6-b15a04f23c6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072602Z:6bd14510-de4f-443d-a600-6eea78c1f072" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f17bd6971aa3fd2bcbf6786ccbacf08c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b021560a-a85c-4051-8853-a74c1bb3b138", + "x-ms-client-request-id": "f17bd6971aa3fd2bcbf6786ccbacf08c", + "x-ms-correlation-request-id": "b35996a2-174c-401d-9dd1-e48ddfa4d133", + "x-ms-ratelimit-remaining-subscription-reads": "11545", + "x-ms-request-id": "e48553c8-b984-481c-9136-054c7b8fdb1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072603Z:b35996a2-174c-401d-9dd1-e48ddfa4d133" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7dcd5a3611b745dbe7c196aaac941509", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e72cca75-e3a0-43da-8b25-d5b238d9b2d0", + "x-ms-client-request-id": "7dcd5a3611b745dbe7c196aaac941509", + "x-ms-correlation-request-id": "30f8a04a-ace1-44cb-90ca-45bac92fc102", + "x-ms-ratelimit-remaining-subscription-reads": "11544", + "x-ms-request-id": "6b0dc3ad-bb41-4d50-844c-78d7e9d5690f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072604Z:30f8a04a-ace1-44cb-90ca-45bac92fc102" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18ef088b47a680cd8a335b60e0e37df3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a952dd5c-b76c-4fd0-8309-011d81ad11c3", + "x-ms-client-request-id": "18ef088b47a680cd8a335b60e0e37df3", + "x-ms-correlation-request-id": "c6915de1-620c-400b-ae5b-2b44f222a54a", + "x-ms-ratelimit-remaining-subscription-reads": "11543", + "x-ms-request-id": "08411de5-ac17-4332-b8d8-4b1a2e87dd3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072606Z:c6915de1-620c-400b-ae5b-2b44f222a54a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc5290eac52b855efb350ae284815136", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "62b228b0-54e5-4405-ab94-ef25a37ddb86", + "x-ms-client-request-id": "bc5290eac52b855efb350ae284815136", + "x-ms-correlation-request-id": "3101a626-79c1-43ab-8507-c39fe8ed5c21", + "x-ms-ratelimit-remaining-subscription-reads": "11542", + "x-ms-request-id": "02ca5ef7-9bac-4003-afe7-2d2ed3b0858f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072607Z:3101a626-79c1-43ab-8507-c39fe8ed5c21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3e06ee0d7bdeee58c4df284b67a6404", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0646751-925d-43fa-9f97-ea1b88fa7bbd", + "x-ms-client-request-id": "c3e06ee0d7bdeee58c4df284b67a6404", + "x-ms-correlation-request-id": "7782c814-eb84-415c-b336-9298d12db503", + "x-ms-ratelimit-remaining-subscription-reads": "11541", + "x-ms-request-id": "bf759c77-b1ac-4fdc-91e2-10e40b594a69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072608Z:7782c814-eb84-415c-b336-9298d12db503" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bbfa2435842c5dea96a1d713debfb09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "149dfded-ef80-42f4-abcc-41d198444393", + "x-ms-client-request-id": "1bbfa2435842c5dea96a1d713debfb09", + "x-ms-correlation-request-id": "8e92a01c-4b36-44ca-9f69-6e9fbf449de2", + "x-ms-ratelimit-remaining-subscription-reads": "11540", + "x-ms-request-id": "4fff82ad-dba0-4709-a607-c5492750af0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072610Z:8e92a01c-4b36-44ca-9f69-6e9fbf449de2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "727f24e1ba021236aa632fded3dace80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a22b82dd-af8c-4a4e-b4c1-6f8fc5578222", + "x-ms-client-request-id": "727f24e1ba021236aa632fded3dace80", + "x-ms-correlation-request-id": "3a55e978-8171-4358-9c2a-130bb4c56022", + "x-ms-ratelimit-remaining-subscription-reads": "11539", + "x-ms-request-id": "52b84544-48d2-44ec-b909-545c7b347cc8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072611Z:3a55e978-8171-4358-9c2a-130bb4c56022" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e19e05d036c187f4901a1953ba74b1a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f8268c7-bf8f-4cde-a0ab-fac4242916d5", + "x-ms-client-request-id": "e19e05d036c187f4901a1953ba74b1a1", + "x-ms-correlation-request-id": "3b90f1e6-33c3-4596-8092-b1d632624c5a", + "x-ms-ratelimit-remaining-subscription-reads": "11538", + "x-ms-request-id": "5add3687-3fb5-48ec-8427-4b1bf4e3a20c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072612Z:3b90f1e6-33c3-4596-8092-b1d632624c5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92a2e851f2fa89026cac70de29fff2ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb3cdbf1-82f8-49fb-b8d1-de1c5518ec76", + "x-ms-client-request-id": "92a2e851f2fa89026cac70de29fff2ce", + "x-ms-correlation-request-id": "95e62319-a6db-461e-96b0-4341555a3b8a", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "7cb3a528-7dd6-414e-b0f3-b0f83fb35bdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072614Z:95e62319-a6db-461e-96b0-4341555a3b8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37a19d9b194dab482ff8e2e7a0e25836", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d3c42c3-76dd-4596-a441-95277b333f44", + "x-ms-client-request-id": "37a19d9b194dab482ff8e2e7a0e25836", + "x-ms-correlation-request-id": "348a86fd-9c22-46aa-a112-bf08fc4a721d", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "99e06806-0a76-4672-ad3c-0270e485d8d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072615Z:348a86fd-9c22-46aa-a112-bf08fc4a721d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb8d8eb23c38dd8503147514c5155e90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f555e019-5960-4cf4-ac76-167df5042c78", + "x-ms-client-request-id": "eb8d8eb23c38dd8503147514c5155e90", + "x-ms-correlation-request-id": "ca304873-eb90-433d-ba4d-e9f55141c8b5", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "aa986f05-6735-4526-9ead-b96121a9a4a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072616Z:ca304873-eb90-433d-ba4d-e9f55141c8b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1db74a2879d337549ff762020f1ae989", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e13d580c-b7fb-4ec4-a331-d218270f6ce6", + "x-ms-client-request-id": "1db74a2879d337549ff762020f1ae989", + "x-ms-correlation-request-id": "337c820e-9cba-4461-8777-a77bcf68a73c", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "fc705763-f75a-4a85-86c6-68de5cd37b9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072617Z:337c820e-9cba-4461-8777-a77bcf68a73c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b2c3a5406725f9617c33438a434e51a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c11a497-6799-4beb-81f7-4caad0a83edb", + "x-ms-client-request-id": "9b2c3a5406725f9617c33438a434e51a", + "x-ms-correlation-request-id": "93d1e11a-abdd-46bd-89fa-51489fb0c05b", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "5f61cb6d-dff2-4c2d-aaa3-ddfdc910631d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072619Z:93d1e11a-abdd-46bd-89fa-51489fb0c05b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55bf51993b2b386339554c41d983cde9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3c2b0d0-e8de-4b8a-960a-492bad9de9f1", + "x-ms-client-request-id": "55bf51993b2b386339554c41d983cde9", + "x-ms-correlation-request-id": "b6514f01-780e-41c5-852e-d526cb3a9b4a", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "c8a83395-d17f-464b-a3e5-352a62a6215a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072620Z:b6514f01-780e-41c5-852e-d526cb3a9b4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bbfeb2bc3e9211eb458050f451b936a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee3b637b-b284-451a-9a7d-88026eadd061", + "x-ms-client-request-id": "8bbfeb2bc3e9211eb458050f451b936a", + "x-ms-correlation-request-id": "587a2cae-48f0-49d9-a645-a49b1dcec6b0", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "4d176f03-1ea4-4727-a8d7-2b423c15d92a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072621Z:587a2cae-48f0-49d9-a645-a49b1dcec6b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be684811935a195ed6f4611dba558594", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74e0d7a3-00cd-4607-bff2-46ff266149e1", + "x-ms-client-request-id": "be684811935a195ed6f4611dba558594", + "x-ms-correlation-request-id": "91b9508c-c925-4839-89ea-48c2dae10320", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "d0d6a0fd-0a82-4a28-887f-30c66ecb0784", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072623Z:91b9508c-c925-4839-89ea-48c2dae10320" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b80d4bf55a74d630339ea1d23553f31e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ea8e52b-0236-4347-a6d9-4033c9ffcb66", + "x-ms-client-request-id": "b80d4bf55a74d630339ea1d23553f31e", + "x-ms-correlation-request-id": "e85fc18c-0e26-4e76-9da1-7a4a34d701a3", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "85d2552f-395e-4e00-a44f-9592707a326e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072624Z:e85fc18c-0e26-4e76-9da1-7a4a34d701a3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9130e1c10f1a978e8ca6b4f46101665e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "00283db8-8c94-4e24-aef0-cd9d894b5a38", + "x-ms-client-request-id": "9130e1c10f1a978e8ca6b4f46101665e", + "x-ms-correlation-request-id": "557d2c33-90da-44ed-8dff-4cfbbd93787d", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "43dd82e9-2222-499e-83d5-6510c76489b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072625Z:557d2c33-90da-44ed-8dff-4cfbbd93787d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f91a71d3da0eb6f617918abcf28be383", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e2db67c-7158-49d9-940a-f4737b51a06f", + "x-ms-client-request-id": "f91a71d3da0eb6f617918abcf28be383", + "x-ms-correlation-request-id": "e446d4cc-0c9c-45f2-9e4c-461eb742c43d", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "ffb6e694-7ae4-4740-a44a-c17c8db98705", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072626Z:e446d4cc-0c9c-45f2-9e4c-461eb742c43d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/12c79c51-f43f-4e43-9f49-8bb4ca6e2c35?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d95b4300f425e579bd762bcda63c7532", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a96486ab-e620-4428-ba6c-e3576698e9d6", + "x-ms-client-request-id": "d95b4300f425e579bd762bcda63c7532", + "x-ms-correlation-request-id": "9da3b81f-fd6f-42c4-abdf-ebb936665295", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "cbaf04a0-3818-443b-8790-8ac94178e886", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072628Z:9da3b81f-fd6f-42c4-abdf-ebb936665295" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3ff4237f939e710ea79798884d1a501", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2411", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2423485-f0d9-499b-aa7a-f76e9fc301b9", + "x-ms-client-request-id": "c3ff4237f939e710ea79798884d1a501", + "x-ms-correlation-request-id": "81faf62d-37b8-4fbd-95d3-284f5670b3e9", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "14434cdc-92b8-48d3-a6fa-eb3a4fb55975", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072628Z:81faf62d-37b8-4fbd-95d3-284f5670b3e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9777\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00229fda7453-1be2-447a-a18f-651925bad421\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002274cc11e4-358e-4eb4-8f3f-eeeee8da5004\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet2809\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00229fda7453-1be2-447a-a18f-651925bad421\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.246.248.82\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1df331c28da5de39f8343c97ae2810db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2411", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cbf0fe43-b9b0-4673-9735-e06d2b5c50e9", + "x-ms-client-request-id": "1df331c28da5de39f8343c97ae2810db", + "x-ms-correlation-request-id": "31cc2777-8372-4f18-8605-2dd964e9319e", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "25333ab6-7770-47ae-8b72-9dac10ecead6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072628Z:31cc2777-8372-4f18-8605-2dd964e9319e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet9777\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00229fda7453-1be2-447a-a18f-651925bad421\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002274cc11e4-358e-4eb4-8f3f-eeeee8da5004\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet2809\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00229fda7453-1be2-447a-a18f-651925bad421\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.0.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.0.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.246.248.82\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "1835", + "Content-Type": "application/json", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af85581c208c06493374eeab7af060eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "virtualNetworkGateway1": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet2809", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworks/azsmnet2603/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/publicIPAddresses/azsmnet1247" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.0.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777/ipConfigurations/azsmnet2809", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "localNetworkGateway2": { + "location": "westus2", + "tags": { + "test": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257", + "properties": { + "localNetworkAddressSpace": { + "addressPrefixes": [ + "192.168.0.0/16" + ] + }, + "gatewayIpAddress": "192.168.3.4" + } + }, + "connectionType": "IPsec", + "routingWeight": 4, + "sharedKey": "abc" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1312", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9fd844f6-80b0-43bc-b7db-1f2ae5cc80d5", + "x-ms-client-request-id": "af85581c208c06493374eeab7af060eb", + "x-ms-correlation-request-id": "1b46dee2-b5fc-4f98-961e-cc7da5996151", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "bf784f3c-3159-4c9e-9b63-b92c9b818bfe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072631Z:1b46dee2-b5fc-4f98-961e-cc7da5996151" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1597\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00228d39574a-2207-43c7-b892-a87245e688b4\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002254ace16c-1461-469c-8a0a-b9c5cbaa36e2\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c6c9d69f54ca274e7edea319e8d6407", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d5d5e1d-7e0a-4964-bd5c-f1f6918b9802", + "x-ms-client-request-id": "2c6c9d69f54ca274e7edea319e8d6407", + "x-ms-correlation-request-id": "35d9f1b5-788f-4d0f-b05f-95808bee8d28", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "6265d756-07e3-475f-be80-91c758e3cb49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072632Z:35d9f1b5-788f-4d0f-b05f-95808bee8d28" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83c750d39a1dc493cbdba66c544449bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16361c9c-6f00-4a10-94e6-791becb66190", + "x-ms-client-request-id": "83c750d39a1dc493cbdba66c544449bb", + "x-ms-correlation-request-id": "c2575260-48a1-4fa2-b241-41b2d16a54cd", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "cf10a69e-c9ce-4f59-bc65-a790f9b19aa7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072633Z:c2575260-48a1-4fa2-b241-41b2d16a54cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd422d3b3484db9fb6678d5b6c5b0c7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7a26802-7821-4d8e-9982-66572f08f8d7", + "x-ms-client-request-id": "dd422d3b3484db9fb6678d5b6c5b0c7b", + "x-ms-correlation-request-id": "6f70f52f-3288-4e0c-bf28-9fa38674681e", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "4fe3f9b3-b50a-47ab-8051-f28cfb19774f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072634Z:6f70f52f-3288-4e0c-bf28-9fa38674681e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6c31c4bcb5b0cea30aa760714e074ea3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf44dbe5-c591-4272-af07-bfd43da18674", + "x-ms-client-request-id": "6c31c4bcb5b0cea30aa760714e074ea3", + "x-ms-correlation-request-id": "c2771f20-cfa3-40f2-ad0a-e5b0c3b82dfe", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "231a5884-8382-4f93-ad71-b91dfbcbc201", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072635Z:c2771f20-cfa3-40f2-ad0a-e5b0c3b82dfe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71f52ea4864b9e82b1ebccb60c38586f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5777d9f-51b2-4a04-b400-af19c14ab7a1", + "x-ms-client-request-id": "71f52ea4864b9e82b1ebccb60c38586f", + "x-ms-correlation-request-id": "36a6bef6-e554-4d1f-88cd-b5e5236a8a58", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "46ec7eb4-da46-4ea5-912c-29aa797933e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072637Z:36a6bef6-e554-4d1f-88cd-b5e5236a8a58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90b02bcfdc12860a8973d2dcd32d8cae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d8b3d86-d15f-4ebd-ada5-26fa338bb1f5", + "x-ms-client-request-id": "90b02bcfdc12860a8973d2dcd32d8cae", + "x-ms-correlation-request-id": "f57a057a-1b31-433c-87f6-3df5037098a6", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "4a137c57-0bd7-4fd9-a3f8-8d9170829ea8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072638Z:f57a057a-1b31-433c-87f6-3df5037098a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3db7ea199a66352f4193bbc4e8edc1d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae6d149e-83ea-45c6-a1f8-6d00cf763595", + "x-ms-client-request-id": "3db7ea199a66352f4193bbc4e8edc1d2", + "x-ms-correlation-request-id": "8d5b15ed-9cef-4766-ba58-b85c3043ea77", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "a60880cf-5760-4046-aa0d-99d6334c7bde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072639Z:8d5b15ed-9cef-4766-ba58-b85c3043ea77" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23a2f04fbe57c791246ee7d8b4a6ca83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86d63929-7d8e-4a34-945d-ed1f4c4f4d0a", + "x-ms-client-request-id": "23a2f04fbe57c791246ee7d8b4a6ca83", + "x-ms-correlation-request-id": "00c77b41-f1bd-4d2e-b62c-9e059a678e7d", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "eb6ab066-1c4d-4027-93aa-24d610448e5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072641Z:00c77b41-f1bd-4d2e-b62c-9e059a678e7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "229c1e5f1a813409fc7a4e7f21459e9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "621e4425-0dc7-4c50-a871-ca3e41ca7b9b", + "x-ms-client-request-id": "229c1e5f1a813409fc7a4e7f21459e9b", + "x-ms-correlation-request-id": "346e1ffe-e72f-465f-b67a-f396ec0a5e09", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "397418f4-11b3-46a9-a9f0-8536015ba29c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072642Z:346e1ffe-e72f-465f-b67a-f396ec0a5e09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e28d00b1698b5b5659ef19f8b356809b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "225b3f92-877d-4253-9990-19d875247615", + "x-ms-client-request-id": "e28d00b1698b5b5659ef19f8b356809b", + "x-ms-correlation-request-id": "face8569-60fa-4764-a8cd-3992e6bd13e3", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "7d42ccba-fac7-488d-a03c-fad52e6e56ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072643Z:face8569-60fa-4764-a8cd-3992e6bd13e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c96537c89f513551e76d26dc6f12a6de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8c79ef4-2a75-4776-97e8-a08da5bccbde", + "x-ms-client-request-id": "c96537c89f513551e76d26dc6f12a6de", + "x-ms-correlation-request-id": "9f392dbc-44df-45a1-a06e-e4d564dedebd", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "a32b05be-9aea-4a76-a2a4-ed17e2e62298", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072644Z:9f392dbc-44df-45a1-a06e-e4d564dedebd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4264ccfe719f6f7c740c991001080a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "498a8546-4346-4b06-a465-0a6f1fcc7506", + "x-ms-client-request-id": "b4264ccfe719f6f7c740c991001080a5", + "x-ms-correlation-request-id": "48ed1f11-0903-4400-83a9-e089d9345ac2", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "34126c55-9ff2-4f4c-896e-bb276dca2565", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072646Z:48ed1f11-0903-4400-83a9-e089d9345ac2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9b6b3fad4e01149ae57fb1e427aec46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f54b1227-0adc-4824-85c0-0100f96efebd", + "x-ms-client-request-id": "e9b6b3fad4e01149ae57fb1e427aec46", + "x-ms-correlation-request-id": "6f68c385-6fdd-484c-8a53-d53dce3b83a7", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "7e98d289-500d-4925-bd15-0f7596579d45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072647Z:6f68c385-6fdd-484c-8a53-d53dce3b83a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66283a49cc2fe0823f6f0210d6bf35d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a9a4f0f-e382-407e-a696-d4b526adbed7", + "x-ms-client-request-id": "66283a49cc2fe0823f6f0210d6bf35d6", + "x-ms-correlation-request-id": "61a35d52-33ff-4b36-970d-5886cba09546", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "b87c690b-b8fa-43c6-aad2-74950e063cce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072648Z:61a35d52-33ff-4b36-970d-5886cba09546" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbe281ecbc5bfbfe021505c1ecd9b34d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "10eed452-3346-46d3-9c86-a97e8939bd3e", + "x-ms-client-request-id": "bbe281ecbc5bfbfe021505c1ecd9b34d", + "x-ms-correlation-request-id": "96978c4c-57f0-4f53-80f6-83d794273fb0", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "7c6502d5-859c-4496-80fa-91806550d305", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072650Z:96978c4c-57f0-4f53-80f6-83d794273fb0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c54882541ae82d7531d6aa70d1393bef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14fe39bf-0e8e-4f8c-a435-ff0a3b4a9181", + "x-ms-client-request-id": "c54882541ae82d7531d6aa70d1393bef", + "x-ms-correlation-request-id": "06b3038c-9fa9-41f5-8c0d-e6dbf946bebb", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "ae51abfd-3edd-4413-82e1-adb05ca295f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072651Z:06b3038c-9fa9-41f5-8c0d-e6dbf946bebb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c131242230978ceb3c2c641ac6c0f365", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "036b3094-9b1d-4aeb-a989-e7e319f5cc3f", + "x-ms-client-request-id": "c131242230978ceb3c2c641ac6c0f365", + "x-ms-correlation-request-id": "67fa311a-56b8-4dc5-a927-235274035cde", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "97ed0a3d-80b6-4f79-96c4-6673a695de9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072652Z:67fa311a-56b8-4dc5-a927-235274035cde" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53bbb5bb6f76d2ed0bb58a84118d29c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5dfdd38a-6655-4e2a-9753-af104c3a5497", + "x-ms-client-request-id": "53bbb5bb6f76d2ed0bb58a84118d29c9", + "x-ms-correlation-request-id": "fc58308a-2231-4e4a-84d7-f0ddf76d382c", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "a2226383-b8fd-43da-b3d5-c90f608789d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072653Z:fc58308a-2231-4e4a-84d7-f0ddf76d382c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c89e15d9f2a824b597bc88bcb55a6670", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65fd343d-8365-4d39-963e-e8adc2cddb85", + "x-ms-client-request-id": "c89e15d9f2a824b597bc88bcb55a6670", + "x-ms-correlation-request-id": "a5fede80-9be5-4b4c-ba42-145a0a81cb51", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "71d28f2f-cd42-4f8e-b7f8-b1fdc698844a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072655Z:a5fede80-9be5-4b4c-ba42-145a0a81cb51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1cb544e3e77db379365eb5e2a5667aae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cdd4f656-4336-4271-89b8-da8d16d9ee03", + "x-ms-client-request-id": "1cb544e3e77db379365eb5e2a5667aae", + "x-ms-correlation-request-id": "d08d8e9b-a1a4-498f-b946-8401efd54745", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "958993e7-dd58-448c-87c5-002f18b68def", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072656Z:d08d8e9b-a1a4-498f-b946-8401efd54745" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1419a032a22c9bdff97bcbae6311cb1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "01955743-794e-42ee-aaae-daf24b540a2b", + "x-ms-client-request-id": "b1419a032a22c9bdff97bcbae6311cb1", + "x-ms-correlation-request-id": "6f364296-aa9a-4334-a434-592346f02177", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "83e0775b-4ca6-4948-b37b-4e6bb08f8872", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072657Z:6f364296-aa9a-4334-a434-592346f02177" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cda11a4e0dd8f14b9ceb924a3dd37f30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ecc7372-8c7d-4117-8b54-a8176adbc69a", + "x-ms-client-request-id": "cda11a4e0dd8f14b9ceb924a3dd37f30", + "x-ms-correlation-request-id": "70db8539-7404-4cea-8fb0-6c77a07ef13b", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "16ddee2c-6c72-4eeb-ab65-9d8c9b8e0782", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072658Z:70db8539-7404-4cea-8fb0-6c77a07ef13b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bf784f3c-3159-4c9e-9b63-b92c9b818bfe?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bb8da41b519b84e87eb1ce62bbecc04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:26:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "367ec83c-e5bb-44f6-979f-ebd6b583dcbe", + "x-ms-client-request-id": "1bb8da41b519b84e87eb1ce62bbecc04", + "x-ms-correlation-request-id": "bf5421fc-ebb9-4cf0-a12e-8b1da3fe6f25", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "0208bbf4-51df-4f43-b41c-e8c3d1aa0296", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072700Z:bf5421fc-ebb9-4cf0-a12e-8b1da3fe6f25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b930341adc5f6d64e4f143798728c2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1349", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:27:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "247216ea-2436-4bfb-ba70-6b9690eaa507", + "x-ms-client-request-id": "8b930341adc5f6d64e4f143798728c2c", + "x-ms-correlation-request-id": "b8e3a67a-7755-4d02-9286-328eed4fa281", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "724ee9df-2b33-4cd8-9d01-b56ba30898dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072700Z:b8e3a67a-7755-4d02-9286-328eed4fa281" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1597\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f2c15df4-9bd0-45b8-a740-59d3dc4212ab\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002254ace16c-1461-469c-8a0a-b9c5cbaa36e2\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c788c1801799897cce845ecf065c6dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1349", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:27:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "058a462c-dad5-4ddc-9b3f-e7a2915b0007", + "x-ms-client-request-id": "0c788c1801799897cce845ecf065c6dd", + "x-ms-correlation-request-id": "519c0e7c-0f45-43da-baec-7715d1039700", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "9c406d33-4dd7-490b-9838-99dc8b44ad29", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072701Z:519c0e7c-0f45-43da-baec-7715d1039700" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet1597\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f2c15df4-9bd0-45b8-a740-59d3dc4212ab\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002254ace16c-1461-469c-8a0a-b9c5cbaa36e2\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022sharedKey\u0022: \u0022abc\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39088d1ef33f936a03c2cccaa1161f14", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1437", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 24 Aug 2021 07:27:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66263471-1c92-4a9b-963e-af0ac22bc0c8", + "x-ms-client-request-id": "39088d1ef33f936a03c2cccaa1161f14", + "x-ms-correlation-request-id": "137053d9-e7e6-499c-8ab9-4a81ae0e9822", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "86a45a4f-ea37-4add-aaa3-9c5e36086e1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210824T072701Z:137053d9-e7e6-499c-8ab9-4a81ae0e9822" + }, + "ResponseBody": [ + "{\r\n", + " \u0022value\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet1597\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/connections/azsmnet1597\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f2c15df4-9bd0-45b8-a740-59d3dc4212ab\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002254ace16c-1461-469c-8a0a-b9c5cbaa36e2\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9777\u0022\r\n", + " },\r\n", + " \u0022localNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg688/providers/Microsoft.Network/localNetworkGateways/azsmnet4257\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022IPsec\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 4,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + " }\r\n", + " ]\r\n", + "}" + ] + } + ], + "Variables": { + "LOCATION": "westus2", + "RandomSeed": "1190283890", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionVnetToVnetTestAsync.json b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionVnetToVnetTestAsync.json new file mode 100644 index 000000000000..fef33e3fcda3 --- /dev/null +++ b/sdk/network/Azure.ResourceManager.Network/tests/SessionRecords/GatewayOperationsTests/VnetGatewayConnectionVnetToVnetTestAsync.json @@ -0,0 +1,60812 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|671726b9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f795898b3c90d29fcc0710ed5560acb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e174e421-451b-450f-9766-0dd7f857bb8f", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "e174e421-451b-450f-9766-0dd7f857bb8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032008Z:e174e421-451b-450f-9766-0dd7f857bb8f" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/csmrg3646?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "21", + "Content-Type": "application/json", + "traceparent": "00-b2d78fd9b503d14d8492c846903031a3-6fc484429e64e348-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9fdf318fef7e10149bc45bcdc89c49a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "eastus" + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "215", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "773847d2-a60b-4537-b9f1-eade65810781", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "773847d2-a60b-4537-b9f1-eade65810781", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032011Z:773847d2-a60b-4537-b9f1-eade65810781" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646", + "name": "csmrg3646", + "type": "Microsoft.Resources/resourceGroups", + "location": "eastus", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "191", + "Content-Type": "application/json", + "Request-Id": "|671726ba-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01b07c704202d71bfadb61d4c335f452", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "eastus", + "id": null, + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.54.0.0/16" + ] + }, + "subnets": [ + { + "name": "GatewaySubnet", + "id": null, + "properties": { + "addressPrefix": "10.54.0.0/24" + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/add1f26e-3949-4125-8347-80f6700f4f6a?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1231", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "3", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86bbb88e-f71e-4d53-87f3-304f152f3819", + "x-ms-client-request-id": "01b07c704202d71bfadb61d4c335f452", + "x-ms-correlation-request-id": "edcc5956-c09e-4ecb-8372-e26011b8bf64", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "add1f26e-3949-4125-8347-80f6700f4f6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032019Z:edcc5956-c09e-4ecb-8372-e26011b8bf64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet276\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022aa365608-4262-4348-8101-b761f62d4979\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022c154dae0-f930-457f-91a7-d1e1c3775fe7\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.54.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022aa365608-4262-4348-8101-b761f62d4979\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.54.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/add1f26e-3949-4125-8347-80f6700f4f6a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726bb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30ef08522406b116e112fc23a00d8686", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37cc7551-3966-4f23-a133-395bcf36584b", + "x-ms-client-request-id": "30ef08522406b116e112fc23a00d8686", + "x-ms-correlation-request-id": "0f5f1c97-af13-4823-85fe-592da415b832", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "71b2975a-3a61-4ba2-aca2-f7d307c53f2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032019Z:0f5f1c97-af13-4823-85fe-592da415b832" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/add1f26e-3949-4125-8347-80f6700f4f6a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726bc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd876a50ad76dc41f11debbbc2c2c10b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d384dc4d-f034-477b-9826-e2122c529412", + "x-ms-client-request-id": "fd876a50ad76dc41f11debbbc2c2c10b", + "x-ms-correlation-request-id": "bdf4503e-b5e2-431f-9f4f-112298fd40a4", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "30871622-f509-40bb-b89a-2e6265bef9f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032021Z:bdf4503e-b5e2-431f-9f4f-112298fd40a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/add1f26e-3949-4125-8347-80f6700f4f6a?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726bd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb81155dc446314b759c0af99767f208", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cdce4127-cc58-46bd-a951-ebb98d55abc0", + "x-ms-client-request-id": "bb81155dc446314b759c0af99767f208", + "x-ms-correlation-request-id": "fddc8c55-aed9-421d-8f3f-8b677e55a136", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "f0b73fc4-3b75-4fa9-b604-869bc3d1fc79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032022Z:fddc8c55-aed9-421d-8f3f-8b677e55a136" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726be-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab08f9c08068a5d4c6133ee9385aef1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1233", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:21 GMT", + "ETag": "W/\u00221442abe8-2c5a-4daa-932e-1b329c583e8d\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e526ba39-5459-44e4-ade4-1e2dc31486fb", + "x-ms-client-request-id": "ab08f9c08068a5d4c6133ee9385aef1f", + "x-ms-correlation-request-id": "8fc72ebd-3efa-41ee-b585-d46d743de390", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "04a96afb-7fd3-408c-98ac-a4f5a144ee20", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032022Z:8fc72ebd-3efa-41ee-b585-d46d743de390" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet276\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221442abe8-2c5a-4daa-932e-1b329c583e8d\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022c154dae0-f930-457f-91a7-d1e1c3775fe7\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.54.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221442abe8-2c5a-4daa-932e-1b329c583e8d\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.54.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|671726bf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ac5f150ca8b8c401e5687daa247458a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1233", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:22 GMT", + "ETag": "W/\u00221442abe8-2c5a-4daa-932e-1b329c583e8d\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6f3d923-e10d-413c-84b6-a14ab9a74bdb", + "x-ms-client-request-id": "8ac5f150ca8b8c401e5687daa247458a", + "x-ms-correlation-request-id": "d6f25427-73b9-40de-9ce7-64cef5169404", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "6748bf5e-ceee-46ac-b388-f369f2e53583", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032023Z:d6f25427-73b9-40de-9ce7-64cef5169404" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet276\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221442abe8-2c5a-4daa-932e-1b329c583e8d\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022c154dae0-f930-457f-91a7-d1e1c3775fe7\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.54.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00221442abe8-2c5a-4daa-932e-1b329c583e8d\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.54.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276/subnets/GatewaySubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|671726c0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8fbe22a15b9dda341dcf4328662f81b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "538", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:22 GMT", + "ETag": "W/\u0022fd9df0ab-8a80-4123-a703-e677dc1d2853\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dcb86277-b59b-4280-97b9-558277304b77", + "x-ms-client-request-id": "c8fbe22a15b9dda341dcf4328662f81b", + "x-ms-correlation-request-id": "2b6e2ea5-896b-4303-a471-731e7f9e27ba", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "f4e2b5ca-8d46-46a1-9d5a-d63fe146b9dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032023Z:2b6e2ea5-896b-4303-a471-731e7f9e27ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022fd9df0ab-8a80-4123-a703-e677dc1d2853\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.54.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "154", + "Content-Type": "application/json", + "Request-Id": "|671726c1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67a2a6a9f57d7cb98d11f9fa027fceb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "eastus", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "publicIPAllocationMethod": "Dynamic", + "dnsSettings": { + "domainNameLabel": "azsmnet1734" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/d02f6a4f-7dc6-44ba-8b9e-b3a7baa8c046?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "794", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "1", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba1c767f-9629-4fec-8f42-e1a77b20c064", + "x-ms-client-request-id": "67a2a6a9f57d7cb98d11f9fa027fceb3", + "x-ms-correlation-request-id": "9892099a-c140-473d-9214-f4fe28827889", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "d02f6a4f-7dc6-44ba-8b9e-b3a7baa8c046", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032028Z:9892099a-c140-473d-9214-f4fe28827889" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3921\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002245781c95-9dde-45e0-8817-4451ba53bc08\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022c0f01804-a68f-4ed7-a55a-e101422f6b7b\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet1734\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet1734.eastus.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/d02f6a4f-7dc6-44ba-8b9e-b3a7baa8c046?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726c2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e9eb72cc2e705650e3d8891e446d975", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee17726b-1e79-42ae-8861-4737e7c63d38", + "x-ms-client-request-id": "9e9eb72cc2e705650e3d8891e446d975", + "x-ms-correlation-request-id": "964a67b3-2632-4985-b26b-069bb3eab28f", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "7da93ed3-8c09-4a15-ba27-517c0b57f73c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032028Z:964a67b3-2632-4985-b26b-069bb3eab28f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726c3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2a3d26486bc6e8558ba1ece1fac76d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "795", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:27 GMT", + "ETag": "W/\u0022dbda5007-3feb-489e-8390-8680a83e5c28\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a499c562-c3c0-48e9-98fd-4689b2822f63", + "x-ms-client-request-id": "a2a3d26486bc6e8558ba1ece1fac76d1", + "x-ms-correlation-request-id": "42a8df2c-d832-45f3-92ab-0a0ee2a417ad", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "131ef072-f870-45b9-a6d6-ad36d33bd021", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032028Z:42a8df2c-d832-45f3-92ab-0a0ee2a417ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3921\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022dbda5007-3feb-489e-8390-8680a83e5c28\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022c0f01804-a68f-4ed7-a55a-e101422f6b7b\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet1734\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet1734.eastus.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|671726c4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bce8db42fe0fccbf0591928b2bc0303", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "795", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:28 GMT", + "ETag": "W/\u0022dbda5007-3feb-489e-8390-8680a83e5c28\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f48c6ffd-b675-4431-95b1-fbfb41d01c4d", + "x-ms-client-request-id": "4bce8db42fe0fccbf0591928b2bc0303", + "x-ms-correlation-request-id": "d9dbeacd-aed6-498a-b7d9-15d1a1e2a5aa", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "6e0b00c8-6fb2-413d-92f3-b8bc4c795613", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032029Z:d9dbeacd-aed6-498a-b7d9-15d1a1e2a5aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3921\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022dbda5007-3feb-489e-8390-8680a83e5c28\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022c0f01804-a68f-4ed7-a55a-e101422f6b7b\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet1734\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet1734.eastus.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "570", + "Content-Type": "application/json", + "Request-Id": "|671726c5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb1832a9a6ae2f32462ca497e661c6b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "eastus", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet705", + "id": null, + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "enableBgp": false + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2530", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6c2a670-9d21-4beb-b167-89aab67221e7", + "x-ms-client-request-id": "bb1832a9a6ae2f32462ca497e661c6b6", + "x-ms-correlation-request-id": "346f835a-2fd3-4c6a-a51d-ccf6af581e40", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "7894ebee-5541-43a7-a834-e6f7b19f5f6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032033Z:346f835a-2fd3-4c6a-a51d-ccf6af581e40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6086\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00229e47e28b-598b-4683-99ac-8f47801aafe9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002213b44b85-f79d-4d90-88c2-0e52c7ca6fd7\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet705\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086/ipConfigurations/azsmnet705\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u00229e47e28b-598b-4683-99ac-8f47801aafe9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022SSTP\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 0,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086/ipConfigurations/azsmnet705\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [],\r\n", + " \u0022customBgpIpAddresses\u0022: []\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726c6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4403bef8f8b927de19b0e89f575872b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4ce4636-ec70-4283-9157-f54cc0d4c078", + "x-ms-client-request-id": "4403bef8f8b927de19b0e89f575872b7", + "x-ms-correlation-request-id": "842e2ac5-5e83-43e7-90e5-6836645c528d", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "6fad86b5-c3e9-418d-87be-79b86a72e85b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032033Z:842e2ac5-5e83-43e7-90e5-6836645c528d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726c7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acdffb62478b74cc2b71094a39d673ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fda11a4e-8ba1-4ef7-af6d-6131f2ccb66c", + "x-ms-client-request-id": "acdffb62478b74cc2b71094a39d673ab", + "x-ms-correlation-request-id": "98e7b998-1b23-492e-9bb6-0e0dbadc39eb", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "588b4180-d9b2-4a37-8db0-0ee0f773a58d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032034Z:98e7b998-1b23-492e-9bb6-0e0dbadc39eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726c8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "289e8975815ee4fd775075e44c674f59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4175aa9d-f21a-4576-9710-282389e35861", + "x-ms-client-request-id": "289e8975815ee4fd775075e44c674f59", + "x-ms-correlation-request-id": "82a4c2ca-5b90-4b2c-8ece-6c68a17d9cc4", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "fbb870e8-e2ac-493a-a851-bf6d53037841", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032036Z:82a4c2ca-5b90-4b2c-8ece-6c68a17d9cc4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726c9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1f9b5f10bbbb18ff18f1847ef94ee43", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b509406a-c01c-4866-9669-f4c7dd7c80af", + "x-ms-client-request-id": "c1f9b5f10bbbb18ff18f1847ef94ee43", + "x-ms-correlation-request-id": "684f2dd0-f9c9-41a8-acb8-cdcbdf7424ec", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "7aac451f-ef24-4505-bdf3-001137c17746", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032037Z:684f2dd0-f9c9-41a8-acb8-cdcbdf7424ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726ca-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd293c3d49bae059fdfb343ad2e727c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38cfe2ea-8a27-4b7f-898b-3ccf05a8596f", + "x-ms-client-request-id": "cd293c3d49bae059fdfb343ad2e727c3", + "x-ms-correlation-request-id": "b2bf2c10-3bd6-41a5-8569-510869dbd322", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "d9359f34-62c9-4d24-9e3e-e7391ae40beb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032038Z:b2bf2c10-3bd6-41a5-8569-510869dbd322" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726cb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8359b021b2dc6af0faed36ce69b6f5e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6acbfee-ac4c-485f-80e4-dee82b3f4784", + "x-ms-client-request-id": "8359b021b2dc6af0faed36ce69b6f5e3", + "x-ms-correlation-request-id": "3b32b111-2080-4c9c-b6ed-24953aa82aeb", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "caf40246-0c62-47bc-bb0c-1129d87af2a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032040Z:3b32b111-2080-4c9c-b6ed-24953aa82aeb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726cc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fa73262823ea79f5c18c3c0d654de09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f8d2c06-237d-46ee-8c01-5e3f98ab4911", + "x-ms-client-request-id": "0fa73262823ea79f5c18c3c0d654de09", + "x-ms-correlation-request-id": "9c180bd6-3c1d-4ab6-9ca0-eab78459824f", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "7f68726f-1b11-48d2-b8c7-adb9ab2dd6b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032041Z:9c180bd6-3c1d-4ab6-9ca0-eab78459824f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726cd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f2654676a3b8a664cbfd3cc138a7747", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9cd513f9-7ebe-423c-9b45-f58722d5e9b7", + "x-ms-client-request-id": "3f2654676a3b8a664cbfd3cc138a7747", + "x-ms-correlation-request-id": "069c6497-7dbd-4d78-b5b5-5c69430f420b", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "26de9cdb-3e2f-428d-9b54-a6fedba056dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032042Z:069c6497-7dbd-4d78-b5b5-5c69430f420b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726ce-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0d8500617409f8511b127c3ee2f93a5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31a9297d-9b14-4ffe-8b6e-bf1062040db8", + "x-ms-client-request-id": "a0d8500617409f8511b127c3ee2f93a5", + "x-ms-correlation-request-id": "5b2981cc-2fc0-4d53-91c7-e3329663e280", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "509111b0-73ef-40cb-b948-74c36b60265b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032044Z:5b2981cc-2fc0-4d53-91c7-e3329663e280" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726cf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14662c0eb68ff7a8cb1cc27eaed294d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a57a4b78-4616-4ea0-8bcf-4b8d9384ea8d", + "x-ms-client-request-id": "14662c0eb68ff7a8cb1cc27eaed294d1", + "x-ms-correlation-request-id": "66800a60-3a78-40c3-b659-9674319f1f52", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "0a68a12d-bbd2-4bc1-8a56-3523fbe1e655", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032045Z:66800a60-3a78-40c3-b659-9674319f1f52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726d0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86ba7ca13e7c50c9ce872e8943a39c1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ff07bd0-5581-45df-ac0f-6680945859ef", + "x-ms-client-request-id": "86ba7ca13e7c50c9ce872e8943a39c1c", + "x-ms-correlation-request-id": "0cc0e573-db3f-42bf-8b15-5bf43c0e3596", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "9ef4e616-c0d0-4a19-ac0c-fa4eae0aed08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032046Z:0cc0e573-db3f-42bf-8b15-5bf43c0e3596" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726d1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6bd2d2c622350b7a8e1d4245407f03e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1e20992-5af9-4598-8f35-8331322e6f70", + "x-ms-client-request-id": "e6bd2d2c622350b7a8e1d4245407f03e", + "x-ms-correlation-request-id": "76287071-0ae1-4ed3-8b5e-300b60164e95", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "b9e26543-70c8-427c-ae91-8c7f7d13f387", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032048Z:76287071-0ae1-4ed3-8b5e-300b60164e95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726d2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7121551c0d75cf2963164508871eb328", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b68d041f-5ec4-4c31-a203-d42919855769", + "x-ms-client-request-id": "7121551c0d75cf2963164508871eb328", + "x-ms-correlation-request-id": "92a82a15-bc2e-4c74-a21d-da78438aedb2", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "ddcaae32-156d-4169-a38f-5fdaba47a890", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032049Z:92a82a15-bc2e-4c74-a21d-da78438aedb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726d3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8051a67fae143fadc56add9b6aa4fbc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "792da98a-f13c-4869-9627-12ec5fe527f6", + "x-ms-client-request-id": "8051a67fae143fadc56add9b6aa4fbc7", + "x-ms-correlation-request-id": "fcb124fc-d33e-4325-875a-ebc4ebb4f56e", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "3d08e783-9c43-4098-8581-d7c96b7e4f1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032050Z:fcb124fc-d33e-4325-875a-ebc4ebb4f56e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726d4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed6def962b811fa704ee820d1cafc889", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c7427e3-992c-4639-b1db-0aeaa52ff371", + "x-ms-client-request-id": "ed6def962b811fa704ee820d1cafc889", + "x-ms-correlation-request-id": "e0a221c5-30b7-4b36-9131-eb06095e94d5", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "428c1466-366f-41db-b996-14715e9da029", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032052Z:e0a221c5-30b7-4b36-9131-eb06095e94d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726d5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aea5ac2d6fb56e2aa7e2ac0b2f8e65be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7a62fb1-addd-418c-a569-88bdf2d551cf", + "x-ms-client-request-id": "aea5ac2d6fb56e2aa7e2ac0b2f8e65be", + "x-ms-correlation-request-id": "a34c0e84-6be8-496b-a5c8-241451abd025", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "c65dec6f-e1f3-4a9f-b331-9cc0bf5671d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032053Z:a34c0e84-6be8-496b-a5c8-241451abd025" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726d6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98727e1bc6b153a6fe327c262ba02215", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a78ce18-613e-4f85-917c-16a70667d223", + "x-ms-client-request-id": "98727e1bc6b153a6fe327c262ba02215", + "x-ms-correlation-request-id": "ff208bc3-0378-4186-9657-7160e30fcb50", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "175e0982-a6a8-40a3-9bfa-c63fdb5c3652", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032054Z:ff208bc3-0378-4186-9657-7160e30fcb50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726d7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be6d54a24cff2611c5fe469e7e9cef76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16568337-8574-4c12-8ec5-8a716b64bd2b", + "x-ms-client-request-id": "be6d54a24cff2611c5fe469e7e9cef76", + "x-ms-correlation-request-id": "c5f00782-7cf6-40d4-aea2-9d7e37fe6695", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "f850f8f4-8f0d-4533-a2fe-b4e10421ed68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032056Z:c5f00782-7cf6-40d4-aea2-9d7e37fe6695" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726d8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ef2c3882f3d67d80551b083f3034307", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de9c8312-1435-4073-b80d-0fa75dcfd325", + "x-ms-client-request-id": "9ef2c3882f3d67d80551b083f3034307", + "x-ms-correlation-request-id": "86fc25a6-7d6b-4f8d-aec8-a0296c6a9dba", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "5d632dea-103a-4f82-9d41-351b5fed8bee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032057Z:86fc25a6-7d6b-4f8d-aec8-a0296c6a9dba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726d9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db6996c0a720cebf6c4bd2b27f07d562", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3dda7df7-2d85-4185-8fa6-d85009694a58", + "x-ms-client-request-id": "db6996c0a720cebf6c4bd2b27f07d562", + "x-ms-correlation-request-id": "9460fcc8-a095-4330-a985-afdfd6f6e424", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "8362fbb4-7d51-4361-9b88-4e0c8898eed3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032058Z:9460fcc8-a095-4330-a985-afdfd6f6e424" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726da-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "679d054283ae72d87b06b8ad9c8d32c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:20:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "541551b9-3f9a-444f-9bed-9987b15ae42b", + "x-ms-client-request-id": "679d054283ae72d87b06b8ad9c8d32c1", + "x-ms-correlation-request-id": "5252757e-0e6f-47d5-85fb-8e192e7e4da9", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "ff1e64fc-2034-4b6f-beff-5ae883f412d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032059Z:5252757e-0e6f-47d5-85fb-8e192e7e4da9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726db-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8de3ebb1432e156042332f15d25e7fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af5a0a8a-149e-4c43-bb31-19d616d1e852", + "x-ms-client-request-id": "e8de3ebb1432e156042332f15d25e7fd", + "x-ms-correlation-request-id": "05f29a8b-ef5f-4cfc-8094-34b43c2036d8", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "6fe93d1b-c81b-408e-a4ad-ced7513d0ca0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032101Z:05f29a8b-ef5f-4cfc-8094-34b43c2036d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726dc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee414d7cdb663d59bef65f19ee1232de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "388010ca-f2aa-4626-acb2-92b80a4aadd0", + "x-ms-client-request-id": "ee414d7cdb663d59bef65f19ee1232de", + "x-ms-correlation-request-id": "477f51fb-6653-4835-98f9-cc4af17d3f32", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "77dbc38f-1e77-4552-bfd5-14f28d33ff4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032102Z:477f51fb-6653-4835-98f9-cc4af17d3f32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726dd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41f61119ec292d2fafbb638a51e61556", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5429018-2ff8-433a-94b1-5aecfc458484", + "x-ms-client-request-id": "41f61119ec292d2fafbb638a51e61556", + "x-ms-correlation-request-id": "850759f3-2a6c-4127-975e-042235ff62b1", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "5925353c-e262-497a-80e3-e5aee3b56332", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032103Z:850759f3-2a6c-4127-975e-042235ff62b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726de-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e31bb1f444cdf5be4a1293cb53cf3f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b8eadb3-0646-4483-a135-379c2d1b127d", + "x-ms-client-request-id": "4e31bb1f444cdf5be4a1293cb53cf3f2", + "x-ms-correlation-request-id": "4abfbebc-b394-40d8-9ed1-cb338340abc3", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "2a7c7bee-37cf-45ff-b2eb-cbdf85832834", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032105Z:4abfbebc-b394-40d8-9ed1-cb338340abc3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726df-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4cd853f1a52e8fd41e133faa78cfebd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2f140f1-3514-49d8-8306-67953572500b", + "x-ms-client-request-id": "4cd853f1a52e8fd41e133faa78cfebd7", + "x-ms-correlation-request-id": "fa4357fe-e24c-4b85-bf44-b73239d188c5", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "529ff25a-c871-4753-a522-711a536a76d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032106Z:fa4357fe-e24c-4b85-bf44-b73239d188c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726e0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33fa09e1e3e0d491b5175c88c2f37872", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0c78cf0-3966-4f4e-83e9-e58b2166948f", + "x-ms-client-request-id": "33fa09e1e3e0d491b5175c88c2f37872", + "x-ms-correlation-request-id": "11f3acbf-4d37-4e1b-b3e4-0b62e9e5d304", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "1d45ab00-cce4-46a4-a65c-8ae5cf6ad05d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032108Z:11f3acbf-4d37-4e1b-b3e4-0b62e9e5d304" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726e1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe9971c8c90e7927e6a1303904b06715", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39a5e458-dd86-4c9a-b06f-3d153a0b0bb0", + "x-ms-client-request-id": "fe9971c8c90e7927e6a1303904b06715", + "x-ms-correlation-request-id": "21d8b582-be62-40b1-a9b6-4d9a2f100dfc", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "08cd3d81-84f7-411c-ad3b-c936bcb77427", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032109Z:21d8b582-be62-40b1-a9b6-4d9a2f100dfc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726e2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac5a52b5bf420d11c1039617494ccc2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6bf46cb-7f2a-48cc-9827-5792c6cccbca", + "x-ms-client-request-id": "ac5a52b5bf420d11c1039617494ccc2a", + "x-ms-correlation-request-id": "a089af6e-ac1f-4152-acd8-20559b347243", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "86754a42-b8e5-4c02-b74a-e19b90f9824d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032110Z:a089af6e-ac1f-4152-acd8-20559b347243" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726e3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07e2cc9aed3618c9e1804c3eb358d005", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2168661c-45dd-480d-86b0-13b4cf18970b", + "x-ms-client-request-id": "07e2cc9aed3618c9e1804c3eb358d005", + "x-ms-correlation-request-id": "79ca85f5-9537-4ac7-927b-4f134bfbca09", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "be52bdd2-1266-4df6-977e-491e8086eede", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032112Z:79ca85f5-9537-4ac7-927b-4f134bfbca09" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726e4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "70d246b0cc9808305f8b3c0a320f309a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5cd21085-0d11-429a-b36c-528ae0d21bf8", + "x-ms-client-request-id": "70d246b0cc9808305f8b3c0a320f309a", + "x-ms-correlation-request-id": "3566a591-29f4-4621-b903-e737e55cf2e6", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "574baa9b-c420-4b29-a757-b05c3b82aff8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032113Z:3566a591-29f4-4621-b903-e737e55cf2e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726e5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "389f05d55fcec7df8842cac173d25a69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c3cd80c-84b9-403f-b7e2-850564b00e8c", + "x-ms-client-request-id": "389f05d55fcec7df8842cac173d25a69", + "x-ms-correlation-request-id": "0364bfb2-0f16-4c7a-af75-27f7f543c7b0", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "4c18fbd3-189a-4d9b-83ad-f5d5d40324e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032114Z:0364bfb2-0f16-4c7a-af75-27f7f543c7b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726e6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "026790335c79ce919cd9a8aab1bfe5d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "789a8ef0-c7a4-4029-946b-dabac8d6e6bb", + "x-ms-client-request-id": "026790335c79ce919cd9a8aab1bfe5d1", + "x-ms-correlation-request-id": "70791f20-89b0-42e3-b2fb-1dd6d3163350", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "722cde9b-a126-495a-ae32-1e28dd6992a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032115Z:70791f20-89b0-42e3-b2fb-1dd6d3163350" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726e7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ad69b15097b95037660ae756016f958c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d9346ec-d1b3-483e-a99d-06e22eb4ba53", + "x-ms-client-request-id": "ad69b15097b95037660ae756016f958c", + "x-ms-correlation-request-id": "0b4d5258-241d-42ed-8259-0376c85ce447", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "d877dd25-edef-43a8-ad46-2bcb0626fc7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032117Z:0b4d5258-241d-42ed-8259-0376c85ce447" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726e8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2d6d3302da8792073d09cf4b73516c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db396176-4d2d-43c7-bcb3-07c86a7280e6", + "x-ms-client-request-id": "a2d6d3302da8792073d09cf4b73516c9", + "x-ms-correlation-request-id": "1d68300b-c5e2-4607-b739-d1e76892a074", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "70e046d4-0c63-4697-86bc-88a6bc446891", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032118Z:1d68300b-c5e2-4607-b739-d1e76892a074" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726e9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c170f95cac699baf59169b6e743bcc2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dde64bc2-741f-42c3-840e-f3ecfecadfe2", + "x-ms-client-request-id": "c170f95cac699baf59169b6e743bcc2c", + "x-ms-correlation-request-id": "bfe963df-e53a-46a6-9b7d-8f6cfdf48f52", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "eb758e26-f1c0-4cc8-b412-f5c73463069d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032119Z:bfe963df-e53a-46a6-9b7d-8f6cfdf48f52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726ea-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd791b4343e8222891f039e8fb429931", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d75ebbe-2da3-4824-8e7c-1f5b6cb25726", + "x-ms-client-request-id": "dd791b4343e8222891f039e8fb429931", + "x-ms-correlation-request-id": "c584c59c-214d-4793-963d-d3cd91b63e24", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "d3827917-dcd8-4852-8c5d-1f7a635a49a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032121Z:c584c59c-214d-4793-963d-d3cd91b63e24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726eb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08f91df4d4ff8423233a489292b10438", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6bc9d35b-60c5-498b-974e-b5492f9fced6", + "x-ms-client-request-id": "08f91df4d4ff8423233a489292b10438", + "x-ms-correlation-request-id": "9a46fa5e-630c-4db3-b00a-dd56250e552f", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "30aa3238-08ea-4696-b45a-7d80b1914d90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032122Z:9a46fa5e-630c-4db3-b00a-dd56250e552f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726ec-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bb06f0439bb19e0d04d307973c7a017", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f86e0a97-ab0b-442e-93f0-d258dcda4ae1", + "x-ms-client-request-id": "9bb06f0439bb19e0d04d307973c7a017", + "x-ms-correlation-request-id": "35fdd948-9cee-4836-a18b-ab165bddd99d", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "6cd22a85-01f7-4972-83ae-1dd2e6427404", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032123Z:35fdd948-9cee-4836-a18b-ab165bddd99d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726ed-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "567a697cc4416f2df7f5b9aefa9690df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "03de6428-849d-4586-a4a0-f460f8468414", + "x-ms-client-request-id": "567a697cc4416f2df7f5b9aefa9690df", + "x-ms-correlation-request-id": "d46c3a72-cd8b-4b7d-9d4b-49740fa8a0ce", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "42af1802-27de-4944-b9f5-a11d8b4d6c4c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032125Z:d46c3a72-cd8b-4b7d-9d4b-49740fa8a0ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726ee-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ce401ebfd91bb763de037b1a3aa105c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26e37ad5-110e-4f46-aee5-a0afee8d3c57", + "x-ms-client-request-id": "8ce401ebfd91bb763de037b1a3aa105c", + "x-ms-correlation-request-id": "73c10fde-7f63-492d-9776-634bf880acd1", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "34ae8475-4be7-420f-baf7-152978fac296", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032126Z:73c10fde-7f63-492d-9776-634bf880acd1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726ef-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2815319aad373ff64240a4c57f321e39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de9695b7-13d3-4772-bf6c-f19c60595224", + "x-ms-client-request-id": "2815319aad373ff64240a4c57f321e39", + "x-ms-correlation-request-id": "39ca8aaa-3073-4c60-9979-49627bc8f5fd", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "37426053-52ea-4ef3-a12a-998aae870a0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032127Z:39ca8aaa-3073-4c60-9979-49627bc8f5fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726f0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "718d51bd14e27f85f3bf19618c7ccb4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb05dd93-99c9-4978-a236-d00df497dacd", + "x-ms-client-request-id": "718d51bd14e27f85f3bf19618c7ccb4d", + "x-ms-correlation-request-id": "0a2c4a5b-97f6-4596-9f5e-b280a2b1453d", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "b8c2f916-b8a5-4a71-b6fa-75402b6bc3ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032129Z:0a2c4a5b-97f6-4596-9f5e-b280a2b1453d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726f1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9135de467813ea70aa4495059b03b0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "543637aa-e638-4844-9869-d0f140460cbc", + "x-ms-client-request-id": "c9135de467813ea70aa4495059b03b0a", + "x-ms-correlation-request-id": "8da77b55-1db5-4511-9207-63bf771648e3", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "324baceb-b83c-4cdd-993e-54a5e2b1b1c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032130Z:8da77b55-1db5-4511-9207-63bf771648e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726f2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52f4fec19f1d8579ab9535779395b3c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9c456cf-3f38-4eff-8ba5-45538518330a", + "x-ms-client-request-id": "52f4fec19f1d8579ab9535779395b3c5", + "x-ms-correlation-request-id": "cc3f975c-ec7e-460f-a147-4353116adc9c", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "9c132eb8-69ca-4f28-8629-ea61cefb08cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032132Z:cc3f975c-ec7e-460f-a147-4353116adc9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726f3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21e05675541e55b7a94f663eca342542", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b63f1d3-5595-4eb0-9784-7e2c5ecd35d0", + "x-ms-client-request-id": "21e05675541e55b7a94f663eca342542", + "x-ms-correlation-request-id": "deb73e5a-1771-4fe1-8c47-d22cfe8a72f6", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "4b24097b-68e1-4c1c-aa92-d0f18deb457f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032133Z:deb73e5a-1771-4fe1-8c47-d22cfe8a72f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726f4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8da00f8379884530e38e1deb3230aa75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87e874a6-a365-4ea3-bb9a-f6fd12df661c", + "x-ms-client-request-id": "8da00f8379884530e38e1deb3230aa75", + "x-ms-correlation-request-id": "9c9d3a9f-756c-4f70-878e-6776731855b5", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "4725f906-e99d-456b-b6c9-f2c8a5fa2084", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032135Z:9c9d3a9f-756c-4f70-878e-6776731855b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726f5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "02db84f019cf6ceb469ea9ce383bbb77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2ad504a-a94f-4d8b-a962-45a026ca11b6", + "x-ms-client-request-id": "02db84f019cf6ceb469ea9ce383bbb77", + "x-ms-correlation-request-id": "9f9444e5-34cb-4cb7-ba76-8481c2856b26", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "7958ac32-86d7-476f-bb50-e672c6f20ef2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032136Z:9f9444e5-34cb-4cb7-ba76-8481c2856b26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726f6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84f3f27025f5fb3d269b3e9036cc2279", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "674a45e9-9033-413e-b733-42bd430d98d3", + "x-ms-client-request-id": "84f3f27025f5fb3d269b3e9036cc2279", + "x-ms-correlation-request-id": "e8efd3b3-efb3-47fa-8e07-dae863358dd2", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "7251edea-e7e5-4b65-a5ca-240be2021d1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032137Z:e8efd3b3-efb3-47fa-8e07-dae863358dd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726f7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "464df1a423586972233347e9d0610da8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "19027aee-6516-4db6-8e4e-c67ba03f816a", + "x-ms-client-request-id": "464df1a423586972233347e9d0610da8", + "x-ms-correlation-request-id": "18f3a8f3-448d-4962-8c1e-b9112b8515a4", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "1c6db293-dcc3-46e6-b8f7-68f6f3d9781b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032139Z:18f3a8f3-448d-4962-8c1e-b9112b8515a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726f8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "407ba6d2253ccb8046dfdb34db5b357a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e2dfdde-2dbe-4368-b756-f54d0f47720e", + "x-ms-client-request-id": "407ba6d2253ccb8046dfdb34db5b357a", + "x-ms-correlation-request-id": "2ceb4c9c-3718-47ea-9ca8-4d239bd8dbc1", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "c7e8e532-ab10-47c6-ac49-161f774474db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032140Z:2ceb4c9c-3718-47ea-9ca8-4d239bd8dbc1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726f9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46292f7b75ed4d1f7f8961c1de542bc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df49c592-7b8f-4e52-a7bf-9528dd5bb618", + "x-ms-client-request-id": "46292f7b75ed4d1f7f8961c1de542bc4", + "x-ms-correlation-request-id": "a275fd56-0ebb-4c33-9be0-50a7b3222150", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "fac5856e-1e39-4bec-96e3-f689ba56acc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032141Z:a275fd56-0ebb-4c33-9be0-50a7b3222150" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726fa-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90be958de2507f3d7182ff78473e8ec8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af2356a9-5266-4c92-8410-3db4fc6d6ce1", + "x-ms-client-request-id": "90be958de2507f3d7182ff78473e8ec8", + "x-ms-correlation-request-id": "ea50de35-7a27-4fa8-b4c9-9c72376daca3", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "56989bea-6464-4e0b-9e33-903a26f1d5fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032143Z:ea50de35-7a27-4fa8-b4c9-9c72376daca3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726fb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a06dccfdc6385dbb872ec0b2c4beecf2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dbf1285b-c562-4fde-8dca-be45c3254c96", + "x-ms-client-request-id": "a06dccfdc6385dbb872ec0b2c4beecf2", + "x-ms-correlation-request-id": "f2fdd27b-341e-4251-98d8-df48d757678d", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "76e5b6b4-78d6-4bdb-8286-c915d53dfc4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032144Z:f2fdd27b-341e-4251-98d8-df48d757678d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726fc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46a617b4a59c9929f2aad56b75a60540", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a078209c-2918-4829-a035-f95b0c95e37a", + "x-ms-client-request-id": "46a617b4a59c9929f2aad56b75a60540", + "x-ms-correlation-request-id": "f9e99885-db65-47f6-bf16-3526ec54490e", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "54cf21b4-9c7f-45ff-b620-2e82663cef6b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032145Z:f9e99885-db65-47f6-bf16-3526ec54490e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726fd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11c398fb8ae6c78cd9610921218bbab2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d26e0f9-37de-4089-b8b9-5f977601cd36", + "x-ms-client-request-id": "11c398fb8ae6c78cd9610921218bbab2", + "x-ms-correlation-request-id": "0e7a33c4-39dc-44e4-b702-8ba946712f87", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "11a3b08d-81a1-4b4b-8ef1-74cc4013e4b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032147Z:0e7a33c4-39dc-44e4-b702-8ba946712f87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726fe-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "30c40d954797582ba3d4ae8ef14fe7e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb18e5b8-d12a-4eda-a800-2dfb72e2234d", + "x-ms-client-request-id": "30c40d954797582ba3d4ae8ef14fe7e0", + "x-ms-correlation-request-id": "ff8e8c78-db2d-45d8-b414-ab94983a77d4", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "d0d8bb9d-2ad6-4057-932a-c925acfffaea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032149Z:ff8e8c78-db2d-45d8-b414-ab94983a77d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671726ff-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cb67f28dbfa290b8adf6c3b9b077766", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c41f13f-2098-41ce-8719-3e1c2e90de29", + "x-ms-client-request-id": "2cb67f28dbfa290b8adf6c3b9b077766", + "x-ms-correlation-request-id": "de8744ed-b31c-4bcc-915a-64fb611149c5", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "6dc10323-0ae7-4a75-8f9d-dfd6eb1e890c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032151Z:de8744ed-b31c-4bcc-915a-64fb611149c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172700-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68d623efd5e2b3a96c6b6e12dcfdd68a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bbc07099-62f0-4103-8dd5-8b71c7a211b5", + "x-ms-client-request-id": "68d623efd5e2b3a96c6b6e12dcfdd68a", + "x-ms-correlation-request-id": "85af7834-8ddb-44bc-9b70-d6a16aebc6e0", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "a9e931d2-e358-4c40-a0b0-91705022bf92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032152Z:85af7834-8ddb-44bc-9b70-d6a16aebc6e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172701-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1f928798ed4b9b7019aa5b8dbefbc9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18efa099-2120-48f9-ab0f-f3af39506d81", + "x-ms-client-request-id": "a1f928798ed4b9b7019aa5b8dbefbc9b", + "x-ms-correlation-request-id": "4cdab7ca-9bd0-4849-b832-428dbd38960e", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "5549ef9c-6fb5-4392-b914-d945d76b2af5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032154Z:4cdab7ca-9bd0-4849-b832-428dbd38960e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172702-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd9e475c7f7953fed602bf8f6df94d8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d298486-aadb-428f-9ec4-c5d4fd5a6815", + "x-ms-client-request-id": "cd9e475c7f7953fed602bf8f6df94d8d", + "x-ms-correlation-request-id": "362401c6-2120-473b-8dd0-783aea8a3aa8", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "6d1fff40-c77a-4b70-8015-3caac739b51e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032156Z:362401c6-2120-473b-8dd0-783aea8a3aa8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172703-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73c1e209d60e61926b1c664830f0d87c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af099d4d-15f4-46ef-bae2-4c9900ae2616", + "x-ms-client-request-id": "73c1e209d60e61926b1c664830f0d87c", + "x-ms-correlation-request-id": "51df5bb5-da60-46a8-976f-68a0cc3e8b6b", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "162bc69c-9e05-49da-899e-ef3e54a79b60", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032157Z:51df5bb5-da60-46a8-976f-68a0cc3e8b6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172704-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94b6d2ae085efa102aa5cad1cf274b08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:21:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99b7e0ef-485f-4e7e-8e99-f31341b7a816", + "x-ms-client-request-id": "94b6d2ae085efa102aa5cad1cf274b08", + "x-ms-correlation-request-id": "f298951a-5c66-49d6-a79c-4dfaaf3b97d6", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "6bc930ff-9f4a-47e0-bf55-8c80760b40f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032159Z:f298951a-5c66-49d6-a79c-4dfaaf3b97d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172705-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9af184d492e868cb53d625d19b622e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bbe73ad-f0e0-4dd0-b21e-801a3b0c776c", + "x-ms-client-request-id": "f9af184d492e868cb53d625d19b622e6", + "x-ms-correlation-request-id": "0c38353c-914d-4cad-aaa1-076a6e4dc70f", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "9b8f3a54-38c0-41f5-90b4-03cace388fc1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032201Z:0c38353c-914d-4cad-aaa1-076a6e4dc70f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172706-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ae1422ab942012ed2c748690bc09143", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "869373f7-53a6-4536-8c9d-75ac22e36897", + "x-ms-client-request-id": "9ae1422ab942012ed2c748690bc09143", + "x-ms-correlation-request-id": "d408320b-cc24-4ce1-aaef-c5b1feff2fa7", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "3bba96d7-748a-45b4-909b-d462273c980f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032203Z:d408320b-cc24-4ce1-aaef-c5b1feff2fa7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172707-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18fa5dd0de41644e4630de20a6b3e174", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab32b4fc-a124-4ac2-97e7-5ed46c0df879", + "x-ms-client-request-id": "18fa5dd0de41644e4630de20a6b3e174", + "x-ms-correlation-request-id": "15e0e864-c966-4ebc-9ea9-e9912e4bea26", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "fe682561-d26d-4811-8015-a02113d687f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032204Z:15e0e864-c966-4ebc-9ea9-e9912e4bea26" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172708-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ca7e482b14693c5e9ae276601237af5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de1a165b-f384-4162-9ad9-c8229dc6d321", + "x-ms-client-request-id": "8ca7e482b14693c5e9ae276601237af5", + "x-ms-correlation-request-id": "88de5986-06d7-4930-9a45-ec6ec1a3416b", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "63bcca98-e1d1-4053-a8a8-3236e6dbaa5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032205Z:88de5986-06d7-4930-9a45-ec6ec1a3416b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172709-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc8c1eac0abb4ba4f37c5312da0d5a1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dea7953d-ba77-46c9-aba4-aca8e4cbd1fb", + "x-ms-client-request-id": "bc8c1eac0abb4ba4f37c5312da0d5a1e", + "x-ms-correlation-request-id": "0a8d139e-aa54-43ef-af2f-0e7aad8a1b2d", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "cd0894ea-914d-4b9d-8476-92558dcac8df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032207Z:0a8d139e-aa54-43ef-af2f-0e7aad8a1b2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717270a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26e6d4e604191ffd97672e93b7e76323", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79b5bd84-07e7-401d-807b-9d14ae6fb1ba", + "x-ms-client-request-id": "26e6d4e604191ffd97672e93b7e76323", + "x-ms-correlation-request-id": "aa8fc077-6e8b-444a-856d-82fb8fd2dbae", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "bc60d919-6987-4244-ab2e-b1f608d77f6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032209Z:aa8fc077-6e8b-444a-856d-82fb8fd2dbae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717270b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8774e8b5242678b9405b99ca5db3b8dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05fff452-e9bb-4dcf-b7cd-ef40ddf73f43", + "x-ms-client-request-id": "8774e8b5242678b9405b99ca5db3b8dc", + "x-ms-correlation-request-id": "7c0bc550-af3c-45f9-94f7-d2528b7f5b10", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "8dc9d732-4939-4cc0-9b47-68f1f0da5544", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032210Z:7c0bc550-af3c-45f9-94f7-d2528b7f5b10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717270c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2d800853543ca7dc216d2554dc10940b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec2c990d-7093-4121-a25c-f5baad646863", + "x-ms-client-request-id": "2d800853543ca7dc216d2554dc10940b", + "x-ms-correlation-request-id": "691d18eb-5197-4248-a87f-5dc47db33800", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "cc9af3aa-8fcc-4576-8e78-651e7214b998", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032211Z:691d18eb-5197-4248-a87f-5dc47db33800" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717270d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f25d3019d398c1f71b6ee5bd6b32c1e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20a1208a-f872-4500-8dab-eca083f830c0", + "x-ms-client-request-id": "f25d3019d398c1f71b6ee5bd6b32c1e4", + "x-ms-correlation-request-id": "e285fbba-61e6-47c9-a66d-f9ae994bd1e4", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "b3da1c94-7453-4889-a3f7-20b49d2eaf33", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032212Z:e285fbba-61e6-47c9-a66d-f9ae994bd1e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717270e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af4052ae366760e60ccd66b9ff659c30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a742e1a4-29f7-41ff-aa3c-05fa2ceaabf9", + "x-ms-client-request-id": "af4052ae366760e60ccd66b9ff659c30", + "x-ms-correlation-request-id": "03109b33-ec24-4064-bfd9-2ddf51bff03d", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "66a7890f-491a-42fc-a363-c4eb0767b6fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032214Z:03109b33-ec24-4064-bfd9-2ddf51bff03d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717270f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cb08dc7c655804310be11ce6f1e3bee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9289191-b95b-4cf1-8b77-ab11d492cdfe", + "x-ms-client-request-id": "2cb08dc7c655804310be11ce6f1e3bee", + "x-ms-correlation-request-id": "a72054f1-32ac-46bf-8d49-bb63fe1d29c7", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "7f82fc13-30ee-43ba-b639-d79ae889db9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032215Z:a72054f1-32ac-46bf-8d49-bb63fe1d29c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172710-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89a541abe4cfe2a44afde5ca6c3ec2b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a8e5195-551d-43d1-9031-224b888d955c", + "x-ms-client-request-id": "89a541abe4cfe2a44afde5ca6c3ec2b5", + "x-ms-correlation-request-id": "d40f040a-3ac9-420d-8e19-98f0bd81234a", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "63887cdf-ada0-49ab-b275-99d842b07bb5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032217Z:d40f040a-3ac9-420d-8e19-98f0bd81234a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172711-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddf6b5d19481e78e0ec09ea82417f1ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5827cdef-1baa-4bcc-b3f5-9fe0e5aa7a8d", + "x-ms-client-request-id": "ddf6b5d19481e78e0ec09ea82417f1ed", + "x-ms-correlation-request-id": "5947c35b-2864-464d-bf14-902f46700e5b", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "5b37ee30-0316-4ebe-aeba-3ee39c94b1f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032218Z:5947c35b-2864-464d-bf14-902f46700e5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172712-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be0e779212bfe260e9cee257e07913d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27cd6ce1-5650-4f10-9dee-8bd72427aeb5", + "x-ms-client-request-id": "be0e779212bfe260e9cee257e07913d1", + "x-ms-correlation-request-id": "789e9884-f8a0-4f05-9a90-c8424b630f15", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "a4119d72-67c8-4b19-a56f-954199eefbc6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032219Z:789e9884-f8a0-4f05-9a90-c8424b630f15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172713-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9fc5cfc5d28166cb2be7a0f45fbbe32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f38119aa-cc98-4d47-9d20-88c5017123a4", + "x-ms-client-request-id": "b9fc5cfc5d28166cb2be7a0f45fbbe32", + "x-ms-correlation-request-id": "1b0944e0-c321-41d7-9df1-2c46a6c3bc58", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "8c04a043-0fbc-43f7-b84e-5762bae96465", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032221Z:1b0944e0-c321-41d7-9df1-2c46a6c3bc58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172714-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f438f80c0330bff65513f4b3b1370695", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66c7bb9d-3feb-4bb8-a869-aacc1c4e4b02", + "x-ms-client-request-id": "f438f80c0330bff65513f4b3b1370695", + "x-ms-correlation-request-id": "6121b2dd-3c8f-438d-8f26-5174c3bc7af8", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "e5adfb31-2fb2-4f28-be33-1d2da77336ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032222Z:6121b2dd-3c8f-438d-8f26-5174c3bc7af8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172715-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8abccad371a34c50bf70c0097509ced", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1727a75f-66e3-4574-9129-f1941028ed70", + "x-ms-client-request-id": "c8abccad371a34c50bf70c0097509ced", + "x-ms-correlation-request-id": "10f1fdb3-690c-4629-a919-d2fe7b5f9dcd", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "004b84e5-0aba-41a6-ac12-e8bbb9d2be2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032223Z:10f1fdb3-690c-4629-a919-d2fe7b5f9dcd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172716-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e84bb00f1e40f9a1653d631468b8647a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b08bb549-2e5b-4bb8-8620-e9eda6bb8814", + "x-ms-client-request-id": "e84bb00f1e40f9a1653d631468b8647a", + "x-ms-correlation-request-id": "faf80c73-f556-40ee-a2ec-d366a3cbab4f", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "f661ec7a-11ce-4029-a108-2672feb65ccb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032225Z:faf80c73-f556-40ee-a2ec-d366a3cbab4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172717-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7862e5b8f64fd4173303e938f7f62704", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91b571d1-de98-44a3-9aac-d8474789cd6f", + "x-ms-client-request-id": "7862e5b8f64fd4173303e938f7f62704", + "x-ms-correlation-request-id": "055debfc-e837-451d-85d4-a8f6cd8b6711", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "8068e5c2-4a31-4803-9982-8b61103fe87f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032226Z:055debfc-e837-451d-85d4-a8f6cd8b6711" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172718-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01a406771dec8f542bb263ddd4b0cb52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "918a0fd2-f8da-48d8-a402-35317b84b33e", + "x-ms-client-request-id": "01a406771dec8f542bb263ddd4b0cb52", + "x-ms-correlation-request-id": "325f9ff8-0938-4820-b982-bb49305c5dc6", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "d744dc60-3038-42e2-a0d1-02eba226289c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032227Z:325f9ff8-0938-4820-b982-bb49305c5dc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172719-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b248919223ee199e9876b43d3468026e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7010024-3bbb-4118-8367-36f79d6cafed", + "x-ms-client-request-id": "b248919223ee199e9876b43d3468026e", + "x-ms-correlation-request-id": "e5ba30a2-4b2b-4927-908f-90d389fa5d64", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "5d4967d4-a39b-40bd-825a-5a221e6ee18d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032229Z:e5ba30a2-4b2b-4927-908f-90d389fa5d64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717271a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "629d5e1562149a8e90d34d9c923a0082", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d562123c-2b28-452c-b455-1fbd7bd85f06", + "x-ms-client-request-id": "629d5e1562149a8e90d34d9c923a0082", + "x-ms-correlation-request-id": "33b12b53-95ce-4b62-abdf-37476dd0c4df", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "7c7c708b-8548-4012-affa-c0899ade5c23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032230Z:33b12b53-95ce-4b62-abdf-37476dd0c4df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717271b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65a6963775ae5316688a697568165ac2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db4ffb41-7ac0-49d3-9280-1014ea61a894", + "x-ms-client-request-id": "65a6963775ae5316688a697568165ac2", + "x-ms-correlation-request-id": "1d28bdf9-0d7e-4065-abda-d1b87ebe3788", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "8b393a9b-042b-477d-abc5-c928a7b5ccf2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032231Z:1d28bdf9-0d7e-4065-abda-d1b87ebe3788" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717271c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75c7f4b069132f3e03ad211bd601865d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f2c60fd-54d9-467d-bc5d-b35611c628f2", + "x-ms-client-request-id": "75c7f4b069132f3e03ad211bd601865d", + "x-ms-correlation-request-id": "4b5235d8-9307-43b8-ad36-b10f4e776b05", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "f2797eb3-adfa-4eee-9d5c-c30de4be042c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032233Z:4b5235d8-9307-43b8-ad36-b10f4e776b05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717271d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9d0632769cc2a0c04849f989f9193179", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3111508-6dc9-4020-82dc-9490630556a2", + "x-ms-client-request-id": "9d0632769cc2a0c04849f989f9193179", + "x-ms-correlation-request-id": "86306bfe-301b-476c-b556-0ee053daff32", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "f21b3c42-1b10-47d3-a36f-17b7817c5e65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032234Z:86306bfe-301b-476c-b556-0ee053daff32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717271e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9eec8b788b73cd6f5876620054fa7d67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8be1ba5b-647d-4b6f-b936-3b4af1154a64", + "x-ms-client-request-id": "9eec8b788b73cd6f5876620054fa7d67", + "x-ms-correlation-request-id": "dbd70ccc-78b9-4ad9-a9ae-1dbe99e15511", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "49412996-5245-498a-9bcc-1935d3d91950", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032235Z:dbd70ccc-78b9-4ad9-a9ae-1dbe99e15511" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717271f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36fe0c04bc10130033272cc970b436e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ecffe38c-b8bd-45e6-aaac-d87be5e003fa", + "x-ms-client-request-id": "36fe0c04bc10130033272cc970b436e9", + "x-ms-correlation-request-id": "88a9caee-8754-4043-8fdc-603a4d4d9299", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "9d4169f7-b614-4bb0-8144-4d053a9c824f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032237Z:88a9caee-8754-4043-8fdc-603a4d4d9299" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172720-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ba2a77ce715ebeac238444b3ac04b4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e6d1f83-a78f-46d4-bffc-4f15834a8025", + "x-ms-client-request-id": "4ba2a77ce715ebeac238444b3ac04b4e", + "x-ms-correlation-request-id": "47bbdded-85e4-462d-a762-4758ff0b73c9", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "a4e994f5-35b5-4f78-90a0-0c01f93d878c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032238Z:47bbdded-85e4-462d-a762-4758ff0b73c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172721-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ed8592ccfa1bbc688ad86b4b5ea55da4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8bb9915c-8d6b-4811-89f8-c7f23906e07f", + "x-ms-client-request-id": "ed8592ccfa1bbc688ad86b4b5ea55da4", + "x-ms-correlation-request-id": "8afef1c4-e6cc-4b72-bb1a-158c5365be46", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "7809bbd7-7c12-4475-8457-405b55b2aff6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032239Z:8afef1c4-e6cc-4b72-bb1a-158c5365be46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172722-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac84784032571c51211274d877b4d973", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da470a09-736c-48ab-9cc8-9c52a352c16c", + "x-ms-client-request-id": "ac84784032571c51211274d877b4d973", + "x-ms-correlation-request-id": "4813f800-5b4c-427c-b2c2-0b786520e991", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "5f0f9008-8074-4dee-a84d-b22ad92e02fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032241Z:4813f800-5b4c-427c-b2c2-0b786520e991" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172723-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddfcdddb492e81ce3ee6c03c7c9e8c1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6af9f22b-e242-4a35-a5e9-af07b719b324", + "x-ms-client-request-id": "ddfcdddb492e81ce3ee6c03c7c9e8c1c", + "x-ms-correlation-request-id": "43be7b2a-bbf6-46c3-88d9-cf1f71d7cdc6", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "871efb9b-1ce2-4218-b39b-09645cddda45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032242Z:43be7b2a-bbf6-46c3-88d9-cf1f71d7cdc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172724-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c10ba0da9e3b9af64069cb08869044d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1df247e7-a704-400e-9c9e-d2248c4f1027", + "x-ms-client-request-id": "c10ba0da9e3b9af64069cb08869044d6", + "x-ms-correlation-request-id": "f0e49645-9460-4336-9498-a36400b1a3ed", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "a356da62-9b9d-4be0-b1d1-589633cd3519", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032243Z:f0e49645-9460-4336-9498-a36400b1a3ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172725-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8070f8ff80a9f675aa026e7072159f83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f012dc9-ccf7-48b9-9f98-1304b23fe08f", + "x-ms-client-request-id": "8070f8ff80a9f675aa026e7072159f83", + "x-ms-correlation-request-id": "4c236cc4-cb3b-45a2-9b1d-c42f95668e94", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "777d5335-becf-488b-aec8-8f946dfe5933", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032245Z:4c236cc4-cb3b-45a2-9b1d-c42f95668e94" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172726-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d6fe578517a83d37e7629cc57dc6fbae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "183cfd58-9a14-4e7a-8ad4-0ad605d3026f", + "x-ms-client-request-id": "d6fe578517a83d37e7629cc57dc6fbae", + "x-ms-correlation-request-id": "94adcbfb-e461-44d2-b6ec-ceeeb9666853", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "bc014768-9be7-43d6-ad05-c64e99329f27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032246Z:94adcbfb-e461-44d2-b6ec-ceeeb9666853" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172727-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "843ce9a20c2e5a732b1417393086282b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d429982-093c-4d7e-8b77-ed8a7320104f", + "x-ms-client-request-id": "843ce9a20c2e5a732b1417393086282b", + "x-ms-correlation-request-id": "eb1e115b-967a-4419-9a59-cb2fd7824459", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "069f5a60-14ed-4aa3-b128-f6aa1353c740", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032247Z:eb1e115b-967a-4419-9a59-cb2fd7824459" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172728-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f8248c96d92e82ec0329946e3af79e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2dce2ca-88c9-45fc-ad73-b3afaf63d38a", + "x-ms-client-request-id": "2f8248c96d92e82ec0329946e3af79e3", + "x-ms-correlation-request-id": "3433e156-2e21-4815-bd7e-bbc963d55414", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "51d11432-7bed-4179-89f7-43b511d76c28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032249Z:3433e156-2e21-4815-bd7e-bbc963d55414" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172729-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88cec0071bd87954e3a3ab93fffe0c60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ae1958e-12d9-41c3-8e44-8bab2fc02a68", + "x-ms-client-request-id": "88cec0071bd87954e3a3ab93fffe0c60", + "x-ms-correlation-request-id": "ed541ba4-c413-42a3-9ec2-3cac7eac2bf8", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "3532a103-58e3-403c-bbaa-bdd59fe42551", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032250Z:ed541ba4-c413-42a3-9ec2-3cac7eac2bf8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717272a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35fc7139cb44341cbb54c3fb722d767b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88dd4c48-9b2f-43d4-a635-3e8ac4ae7285", + "x-ms-client-request-id": "35fc7139cb44341cbb54c3fb722d767b", + "x-ms-correlation-request-id": "73311536-5f6f-4a4d-ae24-f8baa631f2be", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "447d2ab7-aef3-49e3-98d4-971650fd219b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032252Z:73311536-5f6f-4a4d-ae24-f8baa631f2be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717272b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f31349ba0b7ad52f3084beec29ae9c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad572026-a0ce-4c56-963f-87431445a418", + "x-ms-client-request-id": "6f31349ba0b7ad52f3084beec29ae9c2", + "x-ms-correlation-request-id": "2c3d84f7-7d1f-4461-977f-d17ec2a1cdf2", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "da76b583-335e-4812-84e8-39730ec042c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032254Z:2c3d84f7-7d1f-4461-977f-d17ec2a1cdf2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717272c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "720c392643b33b9fa49acc84585907b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e64216d-fe72-4963-afb4-4de8bcddea85", + "x-ms-client-request-id": "720c392643b33b9fa49acc84585907b6", + "x-ms-correlation-request-id": "ce4a1473-3d89-4841-8448-cdebac852757", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "f0c7020e-8e98-47fd-bedd-e1f6b0a9a415", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032255Z:ce4a1473-3d89-4841-8448-cdebac852757" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717272d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbf72f2d9dcc99a81f4e423b802d7220", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a95d5467-5cc0-4b71-a719-e780eeba24ca", + "x-ms-client-request-id": "cbf72f2d9dcc99a81f4e423b802d7220", + "x-ms-correlation-request-id": "8ed838ce-a8bc-49cb-b400-6802fb69025f", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "3e7cc7ae-a56f-47cc-9509-beb97b328bda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032256Z:8ed838ce-a8bc-49cb-b400-6802fb69025f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717272e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39d5006a042057c894f5cb1dd3cd559a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79701433-158e-4a9d-bd7b-297883ac6abf", + "x-ms-client-request-id": "39d5006a042057c894f5cb1dd3cd559a", + "x-ms-correlation-request-id": "d2b6b737-5009-4270-9632-08bca0d634ba", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "6e769b24-72e9-4313-8b15-4c20ba374e8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032257Z:d2b6b737-5009-4270-9632-08bca0d634ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717272f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92c195011ea289f6907253640164bb76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:22:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98c64916-4e80-4fc0-a59b-4578bd064e23", + "x-ms-client-request-id": "92c195011ea289f6907253640164bb76", + "x-ms-correlation-request-id": "37899556-d7e9-40a5-9b23-d8aa4cb33d0a", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "c7e9b44f-a3b0-4b6d-8b00-ba301b27eeb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032259Z:37899556-d7e9-40a5-9b23-d8aa4cb33d0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172730-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "581aac27cd842895679f36d6d18bc651", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29fb44d8-4072-443c-8bb5-e3242fa614f2", + "x-ms-client-request-id": "581aac27cd842895679f36d6d18bc651", + "x-ms-correlation-request-id": "a9264967-5fd5-449e-b104-95122203da00", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "0c39ae73-e74e-454e-ad9e-9e96b06e8363", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032300Z:a9264967-5fd5-449e-b104-95122203da00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172731-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea3aa8f9df6c4c7e094ca9adb1635630", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd63ae62-d103-444a-aa3a-ea90a4dba53b", + "x-ms-client-request-id": "ea3aa8f9df6c4c7e094ca9adb1635630", + "x-ms-correlation-request-id": "b1d2f724-10db-4d81-9884-0ef79ac4203a", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "9bcdd2d3-4a49-46eb-84de-8237576d56e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032301Z:b1d2f724-10db-4d81-9884-0ef79ac4203a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172732-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26f55439fdb33315ff982a02e71fb704", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b9e2212-8896-4145-b723-befabeb34e81", + "x-ms-client-request-id": "26f55439fdb33315ff982a02e71fb704", + "x-ms-correlation-request-id": "f2fa957c-1879-4383-9c08-d21b3699994e", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "e4ccdd09-3a78-40f8-9b51-92c434914f2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032303Z:f2fa957c-1879-4383-9c08-d21b3699994e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172733-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "596b01abd02a480a2ecd4e3724e87704", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b90677f2-1ea0-4cf5-92ac-1f0927050341", + "x-ms-client-request-id": "596b01abd02a480a2ecd4e3724e87704", + "x-ms-correlation-request-id": "2c969c3e-336f-4b0e-9084-978e89a0bfaf", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "3f6cbea4-955d-4507-9364-7efe3dc5a536", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032304Z:2c969c3e-336f-4b0e-9084-978e89a0bfaf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172734-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c9c05499f95fb9e9206ebd4b47b64ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1395edde-0573-45ca-85c8-0056cb50f5dd", + "x-ms-client-request-id": "7c9c05499f95fb9e9206ebd4b47b64ea", + "x-ms-correlation-request-id": "a85d961e-4d5d-4447-8045-9d799223a7ca", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "84b63d18-2ecd-4a30-8c3c-38f2b8bf0099", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032305Z:a85d961e-4d5d-4447-8045-9d799223a7ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172735-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b001a494fcf769064aadf8e5afde0e17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06472818-25ee-49d1-ab73-6e6131b4667f", + "x-ms-client-request-id": "b001a494fcf769064aadf8e5afde0e17", + "x-ms-correlation-request-id": "1ffec646-d813-492a-9a32-bb4b0bca4f9e", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "d89ff021-81ff-48fe-acd0-67e977ae459a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032307Z:1ffec646-d813-492a-9a32-bb4b0bca4f9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172736-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1b826213a820c6f6370c723e53693b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c6e5b2b-5ae2-494b-9a4b-3b4d5c3c22b3", + "x-ms-client-request-id": "e1b826213a820c6f6370c723e53693b2", + "x-ms-correlation-request-id": "57d115fe-a2f9-4142-b090-05c8bdd6de71", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "d30aca88-6ff2-4808-af4d-14ac97a36b5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032308Z:57d115fe-a2f9-4142-b090-05c8bdd6de71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172737-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fa36369c6e64d0cff3331e7a6b84cb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75263187-3dce-47b8-ad4c-d3defd29161c", + "x-ms-client-request-id": "7fa36369c6e64d0cff3331e7a6b84cb4", + "x-ms-correlation-request-id": "6570cc56-8663-4a1c-b65e-4eb7fdb85157", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "be400631-fad0-467f-89a5-9355367b27c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032309Z:6570cc56-8663-4a1c-b65e-4eb7fdb85157" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172738-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8eb2d4f782c2596735f54c8734e38314", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1cb67905-1452-4eb9-b63b-b742b7a42bd9", + "x-ms-client-request-id": "8eb2d4f782c2596735f54c8734e38314", + "x-ms-correlation-request-id": "eed19baf-b8a7-4a33-a72a-b0b49b0d047a", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "c8928788-a2af-4bed-9a6c-ee04513cd272", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032311Z:eed19baf-b8a7-4a33-a72a-b0b49b0d047a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172739-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b7c461a8e3a5a30196be24e098765aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2624aa5-bd86-40ad-b7af-3a5eece64553", + "x-ms-client-request-id": "4b7c461a8e3a5a30196be24e098765aa", + "x-ms-correlation-request-id": "a5e05f22-10b9-47f8-94cf-5c950c5016c8", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "a9bac5e9-d31c-424f-bf53-e9416888a72b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032312Z:a5e05f22-10b9-47f8-94cf-5c950c5016c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717273a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "102b13230483e6f0fb494af07a85181c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "11a7c7e6-e052-4279-a912-cc65251eb2e6", + "x-ms-client-request-id": "102b13230483e6f0fb494af07a85181c", + "x-ms-correlation-request-id": "05f06bf3-09cd-42fa-81e3-14bac5459d3e", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "21aa4a7b-a9b7-410d-ac15-ea5ba2889cb0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032313Z:05f06bf3-09cd-42fa-81e3-14bac5459d3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717273b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60cd1daf003c6879a45875569f1950ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "146b6854-4ef9-40cb-b219-f3c830c49207", + "x-ms-client-request-id": "60cd1daf003c6879a45875569f1950ad", + "x-ms-correlation-request-id": "108d232c-99e5-49d8-9fce-8ce1026a208a", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "9aaa4ad1-0035-45e3-946a-7dc440b7384d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032315Z:108d232c-99e5-49d8-9fce-8ce1026a208a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717273c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2063a29073b7169155954ff0443fe093", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "852caafd-7786-4531-b7e2-b1173dd69edd", + "x-ms-client-request-id": "2063a29073b7169155954ff0443fe093", + "x-ms-correlation-request-id": "6481ae9e-6756-4c6f-9574-ea0f1abcd430", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "abb725fa-6a29-45b7-8cec-34d45377523d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032316Z:6481ae9e-6756-4c6f-9574-ea0f1abcd430" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717273d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec9ec65204ba226e9ac26c2b8f9947e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74416e20-bc6a-4cff-a755-f1efaf51ce5c", + "x-ms-client-request-id": "ec9ec65204ba226e9ac26c2b8f9947e2", + "x-ms-correlation-request-id": "4f165cde-ae30-4f4b-8fd3-bff84e254389", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "00bcffc2-591c-46e3-be1b-e6d77d715970", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032317Z:4f165cde-ae30-4f4b-8fd3-bff84e254389" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717273e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7609cf9f8213c648bb60ba7b0882464", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3079c5aa-07b1-4294-b360-92522f7badef", + "x-ms-client-request-id": "d7609cf9f8213c648bb60ba7b0882464", + "x-ms-correlation-request-id": "f0afc43e-efe3-4eda-a026-2a76f3d87a9d", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "e6c2589f-1dc5-42b8-8e75-5f0ea0c3a99d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032319Z:f0afc43e-efe3-4eda-a026-2a76f3d87a9d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717273f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d904e177647a8cf3334186f5066686bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "951f5430-d441-49e3-be19-96a8250ec946", + "x-ms-client-request-id": "d904e177647a8cf3334186f5066686bb", + "x-ms-correlation-request-id": "ab64310f-fd2f-4325-86f2-e5474600ebd7", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "a689a9c7-dca8-483c-9ad4-e6a5415b711a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032320Z:ab64310f-fd2f-4325-86f2-e5474600ebd7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172740-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7f76d4e08df5a7261626003f8c77111", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "640cb0fb-4211-42fb-b045-ca6f79792401", + "x-ms-client-request-id": "a7f76d4e08df5a7261626003f8c77111", + "x-ms-correlation-request-id": "fe08b382-6aeb-4e44-beff-edcb793fbb8c", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "26a418d5-4a89-4faa-87d3-dee1d8822d39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032321Z:fe08b382-6aeb-4e44-beff-edcb793fbb8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172741-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "adb3089e6d959568a9d3a3e0716f3525", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3c8719e-fd11-44ec-80fe-43e8a31813f4", + "x-ms-client-request-id": "adb3089e6d959568a9d3a3e0716f3525", + "x-ms-correlation-request-id": "9219e919-ea1a-4249-920b-46310ec74638", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "2ba6c7c6-4147-4933-8f20-cd45995ece73", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032323Z:9219e919-ea1a-4249-920b-46310ec74638" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172742-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43584f307d916e846faa781704ef936c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "62419274-de22-4262-bbe6-72e63679b0f2", + "x-ms-client-request-id": "43584f307d916e846faa781704ef936c", + "x-ms-correlation-request-id": "0e49226a-5637-4bd4-b956-3c81812781ef", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "bd8552df-2ba4-430d-b3a5-65924c926fce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032324Z:0e49226a-5637-4bd4-b956-3c81812781ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172743-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe5775cfd8b2e0260562fd0c6491e8f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "edfb993a-b88c-467c-a41f-0fb170156274", + "x-ms-client-request-id": "fe5775cfd8b2e0260562fd0c6491e8f1", + "x-ms-correlation-request-id": "d6af9da9-e9c4-48b1-90db-2634fd750f2c", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "e57e21d7-4f4e-40ca-b437-093db1ceb486", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032325Z:d6af9da9-e9c4-48b1-90db-2634fd750f2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172744-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8d33a2c2e6e207f83443eebf45090ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02b8ac3b-f410-4180-be3a-b504095b8a59", + "x-ms-client-request-id": "a8d33a2c2e6e207f83443eebf45090ba", + "x-ms-correlation-request-id": "e28f246d-1073-4c99-8345-bb2c3049d1b7", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "236ad0ff-843e-4f5c-9a63-9c3ca62dd3ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032327Z:e28f246d-1073-4c99-8345-bb2c3049d1b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172745-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc1136403618577329783e2f7f780add", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc5a04c7-2cef-4f1d-9162-579ef16f72fe", + "x-ms-client-request-id": "fc1136403618577329783e2f7f780add", + "x-ms-correlation-request-id": "860d20f8-4eda-4cd8-a2f3-0f8f946f1e73", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "dcb34182-4a5f-4492-a281-ec63a47decc1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032328Z:860d20f8-4eda-4cd8-a2f3-0f8f946f1e73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172746-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9eb86c1ea1ca1fef5367a6d9a3aecb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2da3c26a-c293-49e3-a5c7-23056ecfee80", + "x-ms-client-request-id": "c9eb86c1ea1ca1fef5367a6d9a3aecb4", + "x-ms-correlation-request-id": "8880c021-3ea0-4361-9cd5-665259f08138", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "140c20af-b7b6-4d98-85eb-9a507a52a9a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032329Z:8880c021-3ea0-4361-9cd5-665259f08138" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172747-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ecb43d1ec7ff6d9c77c7ef6ef50a10b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "809fcb8a-a804-43cf-aa14-35a6c48b3e06", + "x-ms-client-request-id": "2ecb43d1ec7ff6d9c77c7ef6ef50a10b", + "x-ms-correlation-request-id": "a8f113df-6d5e-452d-9c52-c5551aa72b98", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "9d0b5076-38e1-4272-b2f9-1b1a350e9acf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032331Z:a8f113df-6d5e-452d-9c52-c5551aa72b98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172748-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e2a603ac765559e387007e2bc05bdef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "455806eb-96fe-4b8c-a3ea-a3e7824b4def", + "x-ms-client-request-id": "6e2a603ac765559e387007e2bc05bdef", + "x-ms-correlation-request-id": "e55eac7e-4fe2-4c37-abf4-d7a211992018", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "b36bbca4-3f5d-492b-905e-d61b341b50f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032332Z:e55eac7e-4fe2-4c37-abf4-d7a211992018" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172749-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c5e898bdcacd45dacf4019f6b08b1a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6695f62f-f7d8-49f6-b43d-9123fe530cda", + "x-ms-client-request-id": "3c5e898bdcacd45dacf4019f6b08b1a4", + "x-ms-correlation-request-id": "fb1f08be-6815-46d7-9d81-fa5ad69da66a", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "2a98da6f-2869-4ed9-b05d-b282da4e45a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032333Z:fb1f08be-6815-46d7-9d81-fa5ad69da66a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717274a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39336f947d10094fa476f50fe5f739c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b334b8a-6acb-4014-8cd5-ce47e1598f9c", + "x-ms-client-request-id": "39336f947d10094fa476f50fe5f739c1", + "x-ms-correlation-request-id": "b06d39a1-c76c-4d73-b16f-b8fc6532a437", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "510e2752-7335-4cfc-a1d7-74be41ca25d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032335Z:b06d39a1-c76c-4d73-b16f-b8fc6532a437" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717274b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "656a8fbe65f25e5f0355c170c5fee92f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51c3a50d-5387-4e47-bd9f-09eab8325c05", + "x-ms-client-request-id": "656a8fbe65f25e5f0355c170c5fee92f", + "x-ms-correlation-request-id": "343eaa49-87a9-4fd2-a690-d31d4a89794d", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "6bf00b43-9c75-4838-a466-ec9e38687afc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032336Z:343eaa49-87a9-4fd2-a690-d31d4a89794d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717274c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d4d62be84d20ede39549735e64eeeb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "967d3a91-c6d1-4987-a555-7973109d8ed7", + "x-ms-client-request-id": "4d4d62be84d20ede39549735e64eeeb5", + "x-ms-correlation-request-id": "47d8b275-8c79-4d7c-b6f8-e553af70402f", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "9bf4f946-ec94-4b6a-8b24-c15e71b24bf7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032337Z:47d8b275-8c79-4d7c-b6f8-e553af70402f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717274d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dce13fba4b9e2fb10fd436babbdf44a6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e16c6757-4170-4a58-9b1a-d3b942703471", + "x-ms-client-request-id": "dce13fba4b9e2fb10fd436babbdf44a6", + "x-ms-correlation-request-id": "0d62ed21-8951-44c4-993a-01f617024434", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "cfefce91-0272-487b-a08b-56eb17087a6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032339Z:0d62ed21-8951-44c4-993a-01f617024434" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717274e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8350c68deca93aefb05b2c9ecd2978b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7341314e-963f-4710-abdc-965f25eecf34", + "x-ms-client-request-id": "8350c68deca93aefb05b2c9ecd2978b4", + "x-ms-correlation-request-id": "d183ead7-435f-46fd-a732-33e82187984b", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "2130a77d-5ce4-4620-9c7d-0cf7eb3832be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032340Z:d183ead7-435f-46fd-a732-33e82187984b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717274f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85b50c670c1d7391b01d3dfe4e24525a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc07bcf6-cc76-4274-b7cf-2308001f85f9", + "x-ms-client-request-id": "85b50c670c1d7391b01d3dfe4e24525a", + "x-ms-correlation-request-id": "c31b66d6-de28-4e21-9b45-cc6d956932a1", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "93fad650-06ee-437c-9b11-48888d4f01f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032341Z:c31b66d6-de28-4e21-9b45-cc6d956932a1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172750-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20a8f1106bfdce0b50a62b421f1362e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2c68f6b-0c67-4a0c-9626-125f970f56ef", + "x-ms-client-request-id": "20a8f1106bfdce0b50a62b421f1362e6", + "x-ms-correlation-request-id": "2dee9dbc-51cc-45dd-a3ab-ef526b453a8f", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "870e7428-635a-4d8e-b03e-aaf564aba3ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032343Z:2dee9dbc-51cc-45dd-a3ab-ef526b453a8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172751-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af52815cbe2a808934ddd28baff1ec8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "652eeb90-7531-4c23-b26e-16a6b79b4cfc", + "x-ms-client-request-id": "af52815cbe2a808934ddd28baff1ec8b", + "x-ms-correlation-request-id": "2c6f96a3-5481-42f3-b81b-6100e45c845c", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "8bdb9f40-c471-4463-be8e-6a92ba3a3607", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032344Z:2c6f96a3-5481-42f3-b81b-6100e45c845c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172752-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc8ed1095880fcb600e73576e04e539d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ceb0e95a-7d54-4d79-bad2-35f5b43e5a2a", + "x-ms-client-request-id": "dc8ed1095880fcb600e73576e04e539d", + "x-ms-correlation-request-id": "d8a9862a-1da4-46ab-a84e-0073e056d396", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "f0312777-23fc-47ae-9db0-7cee01c6da86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032345Z:d8a9862a-1da4-46ab-a84e-0073e056d396" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172753-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cca256bba3d151306828eb20987f1e5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dce882b8-0564-4879-84e3-05f3c574459c", + "x-ms-client-request-id": "cca256bba3d151306828eb20987f1e5f", + "x-ms-correlation-request-id": "c1e0ab0d-8518-4860-aefd-149ee9fece4f", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "2cc6fa90-5667-455b-9d45-d93704fbcefc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032347Z:c1e0ab0d-8518-4860-aefd-149ee9fece4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172754-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e39a0b986850366ca56af4289129fe6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9681060-b6e9-4ac6-a3e5-fde1741825fa", + "x-ms-client-request-id": "4e39a0b986850366ca56af4289129fe6", + "x-ms-correlation-request-id": "afa0a523-a2cb-4f57-8ddc-f08d8f13c559", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "6850664a-6f59-4a2d-b87c-30ff695504a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032348Z:afa0a523-a2cb-4f57-8ddc-f08d8f13c559" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172755-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58d03589204f66baa13c74576d966380", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8c35f0c-c00b-4ac2-8548-0626696cf8c2", + "x-ms-client-request-id": "58d03589204f66baa13c74576d966380", + "x-ms-correlation-request-id": "18fda619-2dd9-4785-a34b-147e9b6599e8", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "863fe543-ad2b-411f-9e8c-ae1bd86197e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032349Z:18fda619-2dd9-4785-a34b-147e9b6599e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172756-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40bdd5c805143517f09e027af3edc856", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c6f104b-f4bb-4ec4-9647-f30427490b56", + "x-ms-client-request-id": "40bdd5c805143517f09e027af3edc856", + "x-ms-correlation-request-id": "edfea819-bb16-45ec-97d7-e0ee70025347", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "6d40bdf0-5bb6-4cec-9f29-62cce359ad8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032351Z:edfea819-bb16-45ec-97d7-e0ee70025347" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172757-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "62960489c5af9910e5d3ac48120e9634", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "326e5527-f100-4f80-bc84-fa044f81aba9", + "x-ms-client-request-id": "62960489c5af9910e5d3ac48120e9634", + "x-ms-correlation-request-id": "4f7bad43-b479-47b3-873a-f7a12908f4d4", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "d017e291-798d-400a-98fc-509558eef8f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032352Z:4f7bad43-b479-47b3-873a-f7a12908f4d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172758-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b37a2ef35e5584d11d9b68b01e3f72b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "faf15ed4-9a6f-494e-be4d-913400ad310a", + "x-ms-client-request-id": "b37a2ef35e5584d11d9b68b01e3f72b4", + "x-ms-correlation-request-id": "9095e557-01fd-4b8c-bae7-07b03dea1da7", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "13d869b7-bf66-4009-8011-50897b515a9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032353Z:9095e557-01fd-4b8c-bae7-07b03dea1da7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172759-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68ce1e74010002d1c5235b4158cf23e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f15ecc1-60ed-414b-961a-d0bb79893510", + "x-ms-client-request-id": "68ce1e74010002d1c5235b4158cf23e1", + "x-ms-correlation-request-id": "e83695c0-e473-4ab9-bba0-ec3d03af0997", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "8d42a477-d7e4-41a7-ba42-7ca2c4b5157a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032355Z:e83695c0-e473-4ab9-bba0-ec3d03af0997" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717275a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c587cd0715722a00331144145d5f7ba6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "105bae45-7f37-4da1-8114-6f5c4d193124", + "x-ms-client-request-id": "c587cd0715722a00331144145d5f7ba6", + "x-ms-correlation-request-id": "f1c8752f-e2ae-47d6-aa3f-6c8b5db71555", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "cb99e74a-1ca2-48f0-9c85-9401097d9f3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032356Z:f1c8752f-e2ae-47d6-aa3f-6c8b5db71555" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717275b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4d3f8612e40f1335c77ed3103902b4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e8f392d-86d7-4dbd-ba53-bd6ab52b62a1", + "x-ms-client-request-id": "f4d3f8612e40f1335c77ed3103902b4e", + "x-ms-correlation-request-id": "b80834fd-ed84-43e6-9418-6ecac46c50e5", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "a6b4f72a-be84-4fc9-b193-4d18cc7a7656", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032357Z:b80834fd-ed84-43e6-9418-6ecac46c50e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717275c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50a98677acb75f411da335eebcbda566", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c7e4a055-a8dd-48cf-8875-ed2a385ad73b", + "x-ms-client-request-id": "50a98677acb75f411da335eebcbda566", + "x-ms-correlation-request-id": "6999231b-e9c2-4918-bf15-59405d1f1ba2", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "898fdddb-c339-4eef-9771-5af6b2d32014", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032359Z:6999231b-e9c2-4918-bf15-59405d1f1ba2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717275d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60dfb4a72ffbd9a19a9569fb27cf27a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:23:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43313a36-092c-487e-9d21-d7f8b6da59ee", + "x-ms-client-request-id": "60dfb4a72ffbd9a19a9569fb27cf27a2", + "x-ms-correlation-request-id": "d1589cd5-588f-41cc-9cf6-165ecf011ff7", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "e7e1d06b-5d9d-4e20-96cf-a5e8fe00a317", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032400Z:d1589cd5-588f-41cc-9cf6-165ecf011ff7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717275e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d69cf6e62bb6b5eeb774d69cf945359f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8ef9e59-2329-4b13-a098-74a74e50ff31", + "x-ms-client-request-id": "d69cf6e62bb6b5eeb774d69cf945359f", + "x-ms-correlation-request-id": "48e0d33e-7a12-418a-864d-7c2e011056f6", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "dce0be0e-604c-4c99-aa72-7414ae9cb45d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032401Z:48e0d33e-7a12-418a-864d-7c2e011056f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717275f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e8a87d2cbb04852e5d0b5214346374d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98daf777-5494-40c4-b31b-9189e8fb84ee", + "x-ms-client-request-id": "4e8a87d2cbb04852e5d0b5214346374d", + "x-ms-correlation-request-id": "87fc3cb0-ae8a-47b7-82ab-b46af84e4e83", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "02d1b93e-18e6-4be2-b460-ff5edce372d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032403Z:87fc3cb0-ae8a-47b7-82ab-b46af84e4e83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172760-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c508927bce207bb0c52aa8875804df54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1df6655-d535-4f0a-8c7c-df2a931eee85", + "x-ms-client-request-id": "c508927bce207bb0c52aa8875804df54", + "x-ms-correlation-request-id": "4183a531-cc35-47e5-b31c-55e3b4bc8910", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "76326e95-279b-4ee0-9fc0-86c2b7c8a998", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032404Z:4183a531-cc35-47e5-b31c-55e3b4bc8910" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172761-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a028c960d9451af1a454f1e675cc7171", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86555dea-deb8-4ff7-a396-235bcaf3df80", + "x-ms-client-request-id": "a028c960d9451af1a454f1e675cc7171", + "x-ms-correlation-request-id": "e6385eb9-f7dd-4d9b-a4a9-adecf08dd352", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "fd61b93f-de98-46ba-bbe1-44cef5958439", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032405Z:e6385eb9-f7dd-4d9b-a4a9-adecf08dd352" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172762-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6621883c6f3d037ed70e888622caefe0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae0ef3ec-a778-4a46-a8d4-04c52b9a7d61", + "x-ms-client-request-id": "6621883c6f3d037ed70e888622caefe0", + "x-ms-correlation-request-id": "c641ff5d-6c9a-4039-bc88-ddc1d7759351", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "8e8edfb1-d2db-4082-87f8-520cf3785269", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032407Z:c641ff5d-6c9a-4039-bc88-ddc1d7759351" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172763-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79c161f0971da208a1ed21ccddc906f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ce3b874-dac0-4706-9ed7-f4e8c226c53f", + "x-ms-client-request-id": "79c161f0971da208a1ed21ccddc906f8", + "x-ms-correlation-request-id": "9305fda3-8901-4e3b-bac9-05233bba1dc5", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "77c0ae83-293b-4010-8d6d-faee422bc543", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032408Z:9305fda3-8901-4e3b-bac9-05233bba1dc5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172764-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf4b37b879e3f0164b25c936506bf8d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d959c897-cc09-4616-8137-d8218934c35b", + "x-ms-client-request-id": "cf4b37b879e3f0164b25c936506bf8d9", + "x-ms-correlation-request-id": "01d5978f-0238-4ef6-806f-51072d486956", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "a82727f9-8507-4609-9ada-8acfdc494dfd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032409Z:01d5978f-0238-4ef6-806f-51072d486956" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172765-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14f61064f80ba454807ec5504db1250d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "106e585e-20f1-4a7f-9603-9b3b1762e9ee", + "x-ms-client-request-id": "14f61064f80ba454807ec5504db1250d", + "x-ms-correlation-request-id": "8dbfbe0e-07a7-4eeb-969a-f41a6c0fba1d", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "f346ae08-4dad-42bf-9b07-047431803bb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032411Z:8dbfbe0e-07a7-4eeb-969a-f41a6c0fba1d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172766-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eace8f07207f76fc4ad12df7ced25236", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a2bc811-f519-4018-a96b-a94eefadf214", + "x-ms-client-request-id": "eace8f07207f76fc4ad12df7ced25236", + "x-ms-correlation-request-id": "7cc7f1c2-d0c0-469b-8c4e-70f914a62b4f", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "d95ec32e-ebcf-44c2-a660-1bf5fe2dfb35", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032412Z:7cc7f1c2-d0c0-469b-8c4e-70f914a62b4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172767-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc6848f5f2d3bfede3a64f65b4c6a29a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0f4b36a-0d0f-438c-ac43-05fcc71cc5a4", + "x-ms-client-request-id": "cc6848f5f2d3bfede3a64f65b4c6a29a", + "x-ms-correlation-request-id": "2a3a1fc6-8f8b-40d2-8ab4-bd948da70e0e", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "cdf89d6f-572e-4da5-a9a9-e467a4c87937", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032413Z:2a3a1fc6-8f8b-40d2-8ab4-bd948da70e0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172768-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c02ebcff0d9c4359147fc939cb5cd6ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7624470b-ba10-4fe4-8ac0-c1c8124394c7", + "x-ms-client-request-id": "c02ebcff0d9c4359147fc939cb5cd6ad", + "x-ms-correlation-request-id": "6c37bcc6-ddde-4e71-96d3-f89a5d92ae88", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "c95567af-d314-4fa6-b353-b8de7c72b804", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032415Z:6c37bcc6-ddde-4e71-96d3-f89a5d92ae88" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172769-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "055b8f2c58481539a10e07d9d197c284", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f70b89f5-2719-4a3e-bdc7-e5c33c240a0c", + "x-ms-client-request-id": "055b8f2c58481539a10e07d9d197c284", + "x-ms-correlation-request-id": "58c2f234-84be-4fbe-9ca9-65752483792d", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "ec45105c-976d-4f55-aa32-641021667606", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032416Z:58c2f234-84be-4fbe-9ca9-65752483792d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717276a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12f7922e91a3e799ef25b85428b3f486", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "871cd89b-12d3-47bc-ba56-df0b91909e69", + "x-ms-client-request-id": "12f7922e91a3e799ef25b85428b3f486", + "x-ms-correlation-request-id": "e9a23dbe-f57d-4359-8034-0f59e8d2e693", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "94161f1f-58bd-4f60-85fa-de99f2034c21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032417Z:e9a23dbe-f57d-4359-8034-0f59e8d2e693" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717276b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2539a1cf9d6ba65182191e8e057f727d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37d2fe24-177d-4318-92fc-d6d5a9706bff", + "x-ms-client-request-id": "2539a1cf9d6ba65182191e8e057f727d", + "x-ms-correlation-request-id": "d2bb4b22-716c-4510-a408-768c8e047c35", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "c2e9af2b-f00d-40e1-963b-5c99338c061c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032419Z:d2bb4b22-716c-4510-a408-768c8e047c35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717276c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "380b45bdc4659a0af5731523a0e5edee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f9d16c2-1e32-4497-b749-11b18cf4cae5", + "x-ms-client-request-id": "380b45bdc4659a0af5731523a0e5edee", + "x-ms-correlation-request-id": "4e7320df-793f-4771-9e9d-3086f586f139", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "78be8be1-1c80-4165-aa5b-e8b458a95f58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032420Z:4e7320df-793f-4771-9e9d-3086f586f139" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717276d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f0980199d5d911841508f89730ae26f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "785e7ab9-885e-4f07-8380-6f8d67a1d67a", + "x-ms-client-request-id": "2f0980199d5d911841508f89730ae26f", + "x-ms-correlation-request-id": "b459b30c-e371-499a-a019-94543b173608", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "26968ec6-e405-4ce8-878c-f9f66b324918", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032421Z:b459b30c-e371-499a-a019-94543b173608" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717276e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3963ab2bca80b21969f2ff7872e069d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12e0f6b3-596d-487a-a54c-2f1a1387ab33", + "x-ms-client-request-id": "e3963ab2bca80b21969f2ff7872e069d", + "x-ms-correlation-request-id": "6152b189-c054-4dfd-ad93-2c332b1264aa", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "5deb968f-3d4f-4262-895b-ed6060a2b0a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032423Z:6152b189-c054-4dfd-ad93-2c332b1264aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717276f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8474302c4275201f2c79f714348027eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe029e3d-43a9-490f-85cc-1ee5c3c0854a", + "x-ms-client-request-id": "8474302c4275201f2c79f714348027eb", + "x-ms-correlation-request-id": "140d6f87-b1d4-43cb-acdf-b59da477338f", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "c844ae17-d576-4472-af62-222cbb5eb90e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032424Z:140d6f87-b1d4-43cb-acdf-b59da477338f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172770-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6571a691094e5d455ffe99be6d210a12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20353379-d4d7-4d27-8d44-d74f85c8343f", + "x-ms-client-request-id": "6571a691094e5d455ffe99be6d210a12", + "x-ms-correlation-request-id": "d819cd0c-1b81-4024-885f-78f47b27c387", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "303d4104-8a2e-4e09-8e3a-4cccf70f7fa1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032425Z:d819cd0c-1b81-4024-885f-78f47b27c387" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172771-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "425df14a5d966ff91b76b62fc40dd715", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f37f4b8-d543-4d3d-bb77-1cb6d1723fcd", + "x-ms-client-request-id": "425df14a5d966ff91b76b62fc40dd715", + "x-ms-correlation-request-id": "10e45b04-6124-4e83-a7ba-815e7bbe0770", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "9b70abe1-126c-444f-8040-3347b4fdfa37", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032427Z:10e45b04-6124-4e83-a7ba-815e7bbe0770" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172772-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1664477a0bd224feb162577a960b20b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4ce5aa8-162c-49c7-a09d-d19395dcf553", + "x-ms-client-request-id": "e1664477a0bd224feb162577a960b20b", + "x-ms-correlation-request-id": "d5e02655-1bdb-49e6-8fa7-3527a3bd8e02", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "3b5b50b1-6eab-4e8f-8fb9-3d660b70ad74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032428Z:d5e02655-1bdb-49e6-8fa7-3527a3bd8e02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172773-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42c9e46fe4233454ac014ad752159951", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ce9200c-a361-45b7-a403-04928a52b43d", + "x-ms-client-request-id": "42c9e46fe4233454ac014ad752159951", + "x-ms-correlation-request-id": "08744b06-38c2-4c7a-be76-e237ed60c269", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "fd86ae39-7a22-4be4-aebd-43480dc10c01", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032429Z:08744b06-38c2-4c7a-be76-e237ed60c269" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172774-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2946832629baaa55a23b577f3782c6ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "592b4d93-90e5-446f-8b77-5c22fc9648d1", + "x-ms-client-request-id": "2946832629baaa55a23b577f3782c6ba", + "x-ms-correlation-request-id": "33f872d0-0d03-498f-ac44-34bb59de981c", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "3a5f442b-b481-426d-bf7d-5f707a2c943e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032431Z:33f872d0-0d03-498f-ac44-34bb59de981c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172775-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0bfabc3944393f2ef3234bb5577cfd5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e2a33e5-7a1c-4b1d-96e8-65b08b836634", + "x-ms-client-request-id": "e0bfabc3944393f2ef3234bb5577cfd5", + "x-ms-correlation-request-id": "e26af500-b334-48ff-bc50-8e76f3eedd38", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "bd95e013-cd31-4b67-8389-ca58e3459902", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032432Z:e26af500-b334-48ff-bc50-8e76f3eedd38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172776-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2650d37d891a46508e1fa0e88dd5fc2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50b40d3e-dd25-4a75-8d77-7f360964c748", + "x-ms-client-request-id": "2650d37d891a46508e1fa0e88dd5fc2a", + "x-ms-correlation-request-id": "81fb5fc8-fff2-46bf-8c95-74e50e323da3", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "a9caf7cc-fb91-46a4-be23-49b59b1bdebb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032433Z:81fb5fc8-fff2-46bf-8c95-74e50e323da3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172777-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a714903bb855920e91b33a88f49a542a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd0c759d-3593-4f2b-b7d5-ba6acbe8e20c", + "x-ms-client-request-id": "a714903bb855920e91b33a88f49a542a", + "x-ms-correlation-request-id": "58c8a87a-c84a-4700-b230-c3303ef63d6b", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "75549a03-dbaa-445c-ace8-44d13c52c239", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032435Z:58c8a87a-c84a-4700-b230-c3303ef63d6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172778-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6302816ba0313aa05b795223f30a0619", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef0e6956-b81b-4fec-af6c-77cc9f547f78", + "x-ms-client-request-id": "6302816ba0313aa05b795223f30a0619", + "x-ms-correlation-request-id": "6cc47c36-becc-464b-a968-162a1eb81f76", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "7c6eccc2-a201-4993-bb5a-e68b043f746e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032436Z:6cc47c36-becc-464b-a968-162a1eb81f76" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172779-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5800a352863c47fc5be94674ec751f4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d19ab7f5-04da-438c-8fcb-46622c2dd805", + "x-ms-client-request-id": "c5800a352863c47fc5be94674ec751f4", + "x-ms-correlation-request-id": "6f47f596-c8dd-43f8-827d-4ce5060fad3a", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "08c34766-4531-4532-8928-43daf849a8cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032437Z:6f47f596-c8dd-43f8-827d-4ce5060fad3a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717277a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b7c76cb98d39af8f0d94bdc66ea9e87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f61aa9e-3900-4661-8784-3dee52c73a34", + "x-ms-client-request-id": "0b7c76cb98d39af8f0d94bdc66ea9e87", + "x-ms-correlation-request-id": "792f0862-04fd-40ae-8053-b170b95fe6fd", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "11dd2b70-f624-4334-b4c2-c18e48fdd858", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032439Z:792f0862-04fd-40ae-8053-b170b95fe6fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717277b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e95220ac8f1942c7013d9d730b38ec93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "339f8278-dc67-4c9c-b616-341632582e38", + "x-ms-client-request-id": "e95220ac8f1942c7013d9d730b38ec93", + "x-ms-correlation-request-id": "a01db70a-57a3-459f-834c-178377ee3ddc", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "a586bfda-e3bc-4c28-8261-a20230cabfc1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032440Z:a01db70a-57a3-459f-834c-178377ee3ddc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717277c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d585d27fb8d9d4612e5d489dda35ddb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f8ac088-9314-4499-a749-dbce4e5d5b17", + "x-ms-client-request-id": "7d585d27fb8d9d4612e5d489dda35ddb", + "x-ms-correlation-request-id": "97b01ebc-c998-49d7-9abd-323e412d5d6b", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "f236a5e1-69cb-4bdb-836b-9a293f32c48b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032441Z:97b01ebc-c998-49d7-9abd-323e412d5d6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717277d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2dba0d1f68753bdaae3a0995fa858fb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0588de24-d4c1-4492-9f34-7fc91f2aa2de", + "x-ms-client-request-id": "2dba0d1f68753bdaae3a0995fa858fb7", + "x-ms-correlation-request-id": "964f41c8-8f25-4545-8b82-a50d1df0c9e9", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "89de4dd4-b2e7-488a-9c93-316897413709", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032443Z:964f41c8-8f25-4545-8b82-a50d1df0c9e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717277e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08b4b8ed2191b1fadab5d734ba3e655e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d99d0214-68dd-4efa-b51f-19dde39325c8", + "x-ms-client-request-id": "08b4b8ed2191b1fadab5d734ba3e655e", + "x-ms-correlation-request-id": "7fdfb0c4-23a2-45fc-9b1e-35b93df26dce", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "ea3101dd-8090-412e-9482-9c8edb7d5440", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032444Z:7fdfb0c4-23a2-45fc-9b1e-35b93df26dce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717277f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd54c2dfbe7ebf1e831ccf52f1b1a28d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1279455b-faeb-47f5-a152-27543593e345", + "x-ms-client-request-id": "fd54c2dfbe7ebf1e831ccf52f1b1a28d", + "x-ms-correlation-request-id": "3af788e0-5768-4d06-902c-3d4b5c32e17f", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "3ba38221-ed0d-4316-8c2a-5696e229c7ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032445Z:3af788e0-5768-4d06-902c-3d4b5c32e17f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172780-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "249b1d5555eefd4a130853bf90a68170", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f643f871-64f9-4e71-8fcb-ced224e1bb0c", + "x-ms-client-request-id": "249b1d5555eefd4a130853bf90a68170", + "x-ms-correlation-request-id": "b1a62a20-f836-452d-9c61-4486985c5896", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "b016c6b1-5d19-4a16-b691-116f00462947", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032447Z:b1a62a20-f836-452d-9c61-4486985c5896" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172781-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38b5aad592302f389af5857452a7c029", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88dfcf4f-8803-4c3a-8095-c1b488fe470b", + "x-ms-client-request-id": "38b5aad592302f389af5857452a7c029", + "x-ms-correlation-request-id": "8d6324e6-cf61-4beb-ba77-7cf6345bf098", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "8a43b78b-09c3-4882-82f0-6f72f2badf46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032448Z:8d6324e6-cf61-4beb-ba77-7cf6345bf098" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172782-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cde4a1240a28a707856ea756b5e2edd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "362be779-e632-41db-931c-74d521eb67e9", + "x-ms-client-request-id": "9cde4a1240a28a707856ea756b5e2edd", + "x-ms-correlation-request-id": "3f12867c-b5ab-47ed-ada6-cc9d78731072", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "38643aab-778f-4df6-94d6-1fb968d35d06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032449Z:3f12867c-b5ab-47ed-ada6-cc9d78731072" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172783-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "467d5f9b6afbc35ce46b8af8cfd5ab6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79dceab9-69a5-4c52-92a8-76baeb6306d5", + "x-ms-client-request-id": "467d5f9b6afbc35ce46b8af8cfd5ab6c", + "x-ms-correlation-request-id": "80b547a9-d492-4f16-bc53-34353780ad6a", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "4873fe8a-868c-4ed3-a199-770cb7fe9e76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032451Z:80b547a9-d492-4f16-bc53-34353780ad6a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172784-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45ac2a48e4c894cd3a2bbfdaa7c3c43c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9f39914-8398-408c-aae4-de2234fbcea7", + "x-ms-client-request-id": "45ac2a48e4c894cd3a2bbfdaa7c3c43c", + "x-ms-correlation-request-id": "be9f7db6-4766-42a6-99c2-1515594edfec", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "4f0956cd-76a1-4fd9-9bb7-d896c98a49ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032452Z:be9f7db6-4766-42a6-99c2-1515594edfec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172785-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3d9a7c67929a82eee1ab837b677baa2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fae800e8-3b58-4602-9ef9-5ca7f3e0942a", + "x-ms-client-request-id": "f3d9a7c67929a82eee1ab837b677baa2", + "x-ms-correlation-request-id": "b3acedf7-19f7-4239-a453-bdf4533e104c", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "39d0de2b-33e8-4ed9-91b1-b58d0eee0253", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032453Z:b3acedf7-19f7-4239-a453-bdf4533e104c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172786-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "402c7daae8b1b61591e90bd0aa821b21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d578b031-b5f2-4f92-b37e-95d353ed4f69", + "x-ms-client-request-id": "402c7daae8b1b61591e90bd0aa821b21", + "x-ms-correlation-request-id": "e0254a31-d0f2-4e9f-ace3-bf08c52680b1", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "cb461080-6f1c-4339-b940-bf76023d0190", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032455Z:e0254a31-d0f2-4e9f-ace3-bf08c52680b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172787-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27314ea7b8fccf42fb0457ad2c96dec2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "687e3965-bb8f-4b74-b1a1-6f7b2d1fca0a", + "x-ms-client-request-id": "27314ea7b8fccf42fb0457ad2c96dec2", + "x-ms-correlation-request-id": "256bb1c1-21a1-4a30-9970-7a868044e8c3", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "7bbc4188-4c27-4a9e-83e7-26a6a9b614b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032456Z:256bb1c1-21a1-4a30-9970-7a868044e8c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172788-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "292f1d708396dd8a922261406d5efe6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "117d4e2c-ea5d-465a-b5a5-528ca5428304", + "x-ms-client-request-id": "292f1d708396dd8a922261406d5efe6c", + "x-ms-correlation-request-id": "2844434b-11dd-4851-ba41-4abb38ddfd59", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "f5d0bfc5-cef5-408f-824a-8798cc8283b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032457Z:2844434b-11dd-4851-ba41-4abb38ddfd59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172789-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "678f96fe9246f2a63b5d44ad91678afb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:24:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32596226-8838-46fe-8af3-b9bdbf65b3c5", + "x-ms-client-request-id": "678f96fe9246f2a63b5d44ad91678afb", + "x-ms-correlation-request-id": "3555cd5d-d6b0-4e51-8d42-cbd4832b9505", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "22982811-2533-4f99-b924-801ff50e7b8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032459Z:3555cd5d-d6b0-4e51-8d42-cbd4832b9505" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717278a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d5f480af152238bc35395d95701619d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84d6068b-1b90-4bd6-af69-931fae03d132", + "x-ms-client-request-id": "8d5f480af152238bc35395d95701619d", + "x-ms-correlation-request-id": "ab32a516-04f0-40fa-b301-84319f44c41f", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "3402e323-d100-4bf7-a346-a134612ede58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032500Z:ab32a516-04f0-40fa-b301-84319f44c41f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717278b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96afeb057706dd7c763cee383edd4c2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7bee534d-caee-4dd3-8d5c-e3863c8a0f6e", + "x-ms-client-request-id": "96afeb057706dd7c763cee383edd4c2b", + "x-ms-correlation-request-id": "9f7cba3b-3857-4899-a886-646ae45ed262", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "5fcccb5b-55ef-41d8-982a-5c72da55dce5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032501Z:9f7cba3b-3857-4899-a886-646ae45ed262" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717278c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2436659871fe0c190b6ba3f2fdcc9b3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0af5d983-0f58-4522-9584-992f400163fd", + "x-ms-client-request-id": "2436659871fe0c190b6ba3f2fdcc9b3a", + "x-ms-correlation-request-id": "29bb8f0c-c942-4b5b-80fe-62787dc6fec1", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "aec7eea4-e73e-4403-957a-9249d4955885", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032503Z:29bb8f0c-c942-4b5b-80fe-62787dc6fec1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717278d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6a7a7fcf3b793f5cc8216160353e5e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2030217a-9a97-46d5-8d10-92f5cb1b3ffe", + "x-ms-client-request-id": "a6a7a7fcf3b793f5cc8216160353e5e6", + "x-ms-correlation-request-id": "f50482f3-7a9c-4874-8bb1-8dbef2d0a068", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "a34b0fcf-bb31-4449-b024-79dac20adda3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032504Z:f50482f3-7a9c-4874-8bb1-8dbef2d0a068" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717278e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f14169073ccb949fd2a38a9ad38adfa9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bd8a9e2-f5f7-4ffc-9471-6f823f175cb3", + "x-ms-client-request-id": "f14169073ccb949fd2a38a9ad38adfa9", + "x-ms-correlation-request-id": "3d4bc1a1-5962-45c5-89a4-1f0441ceb560", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "b862bedb-255f-4790-a2b6-ce57f88d436d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032505Z:3d4bc1a1-5962-45c5-89a4-1f0441ceb560" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717278f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "973cb3a1a636a47370a2587c5a0208b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "24b15981-5518-40bd-bb25-74f7becd1665", + "x-ms-client-request-id": "973cb3a1a636a47370a2587c5a0208b8", + "x-ms-correlation-request-id": "2986c425-994f-4f94-8ad6-e14f1780bc14", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "52575e34-0668-4c51-8309-5fade635cc03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032507Z:2986c425-994f-4f94-8ad6-e14f1780bc14" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172790-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93ebbd86a98bbf6f0713d414695ac042", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc54751f-3896-413d-a5b8-2be7f7f6ddca", + "x-ms-client-request-id": "93ebbd86a98bbf6f0713d414695ac042", + "x-ms-correlation-request-id": "1ee275fe-9788-4ce9-ba19-aa39207b8889", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "cab389a5-8af5-4d7e-9dca-a554621d3ef5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032508Z:1ee275fe-9788-4ce9-ba19-aa39207b8889" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172791-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f756ca24d1661b0f69c8028e42339cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2f22e1c9-9a58-4c29-ad07-9a6cc99d1abf", + "x-ms-client-request-id": "4f756ca24d1661b0f69c8028e42339cf", + "x-ms-correlation-request-id": "5305853c-5122-4c30-8b06-b6c86d9a9347", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "b7ff08e2-f33e-479b-9a1b-e71807879f54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032510Z:5305853c-5122-4c30-8b06-b6c86d9a9347" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172792-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1614d29a4b9ef71e447c9022d15e3b16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "46fffe53-5ea3-4689-b7f2-d5092d10bc11", + "x-ms-client-request-id": "1614d29a4b9ef71e447c9022d15e3b16", + "x-ms-correlation-request-id": "ee963a32-baf8-47ff-a422-046a87f41195", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "566bccc5-572c-43cb-80b4-abf5cde84c81", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032511Z:ee963a32-baf8-47ff-a422-046a87f41195" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172793-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edd916e2b88d38a10d8a9dee2947dbe4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2729674f-afd6-45c7-aacd-405761f60fab", + "x-ms-client-request-id": "edd916e2b88d38a10d8a9dee2947dbe4", + "x-ms-correlation-request-id": "3a92b485-f41a-4958-8cb9-deabb929339a", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "f48c66bb-edf4-4b9a-9334-80200cbbd79c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032512Z:3a92b485-f41a-4958-8cb9-deabb929339a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172794-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "967a05d9aa4556a34e7d0b9abd8d8f98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da61b9b4-03e2-466f-917a-675a976e8910", + "x-ms-client-request-id": "967a05d9aa4556a34e7d0b9abd8d8f98", + "x-ms-correlation-request-id": "26e776f1-322e-4780-9e5b-b9cc7469c4e1", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "d1050745-8c8c-4dd8-b1b2-2a4691b22bdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032514Z:26e776f1-322e-4780-9e5b-b9cc7469c4e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172795-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd456a614b49e14131dc0814ae2fcefd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20a9e2eb-0c59-4300-a8a6-bbf2313a7eed", + "x-ms-client-request-id": "cd456a614b49e14131dc0814ae2fcefd", + "x-ms-correlation-request-id": "8b42514e-7ac5-48b4-9890-e02da43d05f5", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "cc614122-15ca-4f71-81f3-24dbb1246ee5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032515Z:8b42514e-7ac5-48b4-9890-e02da43d05f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172796-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc49aba0a5e438d073829f10ad067a7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "525bc3c8-68d0-4799-8d52-8fc62b9d7f1d", + "x-ms-client-request-id": "cc49aba0a5e438d073829f10ad067a7f", + "x-ms-correlation-request-id": "375391d0-5147-41b2-affa-f3b3ec987411", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "cca765be-e63c-4ace-86ac-7d97efac7290", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032516Z:375391d0-5147-41b2-affa-f3b3ec987411" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172797-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be8d05fa0e018e9ac3986469a18ea81e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83d36313-e964-4aa3-9274-935cd3fe313b", + "x-ms-client-request-id": "be8d05fa0e018e9ac3986469a18ea81e", + "x-ms-correlation-request-id": "7970e1fa-9364-4cd0-abd3-92ac4d7010b7", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "6622b653-5b5d-4ee9-aca2-91c84b44b702", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032517Z:7970e1fa-9364-4cd0-abd3-92ac4d7010b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172798-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11fa0eafc244bcb39a0d59c6ab31342b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ace08842-1c66-4efd-b045-b8cede350ac2", + "x-ms-client-request-id": "11fa0eafc244bcb39a0d59c6ab31342b", + "x-ms-correlation-request-id": "62edc5fa-02c9-4b24-aa29-10a3bf1d2f7d", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "dc56df71-8d7d-4136-bce8-6ac480454e7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032519Z:62edc5fa-02c9-4b24-aa29-10a3bf1d2f7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172799-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a91a896110a292fc11ba084c406697e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1415e460-8959-4b2b-a764-91817776c4d6", + "x-ms-client-request-id": "a91a896110a292fc11ba084c406697e5", + "x-ms-correlation-request-id": "34123822-ca66-4078-8895-baa6c5ffb14d", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "708c8d4f-7bab-4ab4-a733-584ba1ddd764", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032520Z:34123822-ca66-4078-8895-baa6c5ffb14d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717279a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e6081da680c373b51d123f3b4d3e292", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "03f8b0cd-843c-40ff-9a45-965f9794d235", + "x-ms-client-request-id": "9e6081da680c373b51d123f3b4d3e292", + "x-ms-correlation-request-id": "54cac757-41f6-405f-b386-18ef768174ae", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "bc92d7de-8807-47bc-950a-8e18815ebf39", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032521Z:54cac757-41f6-405f-b386-18ef768174ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717279b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18083963fe739f7b11670089ba677b33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0d2a675-2d73-400d-90a7-8478befe4526", + "x-ms-client-request-id": "18083963fe739f7b11670089ba677b33", + "x-ms-correlation-request-id": "c183b7d1-1345-44d7-be3b-536ed9759b0d", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "ffa3c872-de56-4393-ab2e-b6cd2f4c6098", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032523Z:c183b7d1-1345-44d7-be3b-536ed9759b0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717279c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2aeb747695d0f91e4de257d1ec08de3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0183d3e7-9e74-48f3-b813-37d6c267954a", + "x-ms-client-request-id": "2aeb747695d0f91e4de257d1ec08de3e", + "x-ms-correlation-request-id": "2c1bedc5-249a-4c6f-9883-4f667f63368b", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "241e4e2f-38a1-43c1-a1a4-647be5679bec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032524Z:2c1bedc5-249a-4c6f-9883-4f667f63368b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717279d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07e875d87e5edb7105c18da468b17dea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc275468-223d-443f-8a22-3464cd11e6de", + "x-ms-client-request-id": "07e875d87e5edb7105c18da468b17dea", + "x-ms-correlation-request-id": "8ef7fa8c-b91b-446d-aab0-f2af696b6376", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "4a7c1840-1240-4a12-9575-7859c5f4c98e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032525Z:8ef7fa8c-b91b-446d-aab0-f2af696b6376" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717279e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f7def55b7e7cdc21a0eca90a7aab209", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e735e197-c83d-4316-8340-5f9c563d6867", + "x-ms-client-request-id": "3f7def55b7e7cdc21a0eca90a7aab209", + "x-ms-correlation-request-id": "f6b2e4b8-ba0c-4435-badc-aedc0e3fe853", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "f9f0b585-61ff-44e4-bdeb-aab848069e04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032527Z:f6b2e4b8-ba0c-4435-badc-aedc0e3fe853" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717279f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44b0c289747ef7d5020f250e087a919b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e9c1d21-5131-42f0-b0b5-3cd0be937f52", + "x-ms-client-request-id": "44b0c289747ef7d5020f250e087a919b", + "x-ms-correlation-request-id": "c60ce90b-7cb5-414b-a115-b1e38f1e6497", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "261ee23a-7dd2-40dc-8719-cc3ae4d16a83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032528Z:c60ce90b-7cb5-414b-a115-b1e38f1e6497" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727a0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc7b6d659e8b2156b31bec4fb3e0345a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5873545-b5c4-46e0-98fe-e1e29ae6708b", + "x-ms-client-request-id": "fc7b6d659e8b2156b31bec4fb3e0345a", + "x-ms-correlation-request-id": "9e53a4aa-ca91-4d75-a296-07a9acaf6b34", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "bbbdd8f2-b5ed-4e75-b537-19fc463a16c2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032529Z:9e53a4aa-ca91-4d75-a296-07a9acaf6b34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727a1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a61b830e3801e16b1a853cd792b4c4a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b1e39cd-f9a6-4d3f-b852-54928c8fdbdc", + "x-ms-client-request-id": "a61b830e3801e16b1a853cd792b4c4a0", + "x-ms-correlation-request-id": "e937e717-0be2-4722-964f-88aebd4ea190", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "0a0c3c03-25fd-441e-9a90-15ea53a0f8ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032531Z:e937e717-0be2-4722-964f-88aebd4ea190" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727a2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "392b2f7db62feb7e6b8f916388854321", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a12e310f-0463-4343-acde-fe2eab3e5b7e", + "x-ms-client-request-id": "392b2f7db62feb7e6b8f916388854321", + "x-ms-correlation-request-id": "481aa955-90f7-4371-9212-988700bfd063", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "71413065-0fac-4bd4-929a-9e8b9c429980", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032532Z:481aa955-90f7-4371-9212-988700bfd063" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727a3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "85ffcadbea5e2c9a029ae205617f8efe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c93e874f-2cfc-4ada-8bf2-cf129a08a6a7", + "x-ms-client-request-id": "85ffcadbea5e2c9a029ae205617f8efe", + "x-ms-correlation-request-id": "4217c098-0e78-442d-a8f6-30705e14af4a", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "ca1cab2b-f2db-4a17-b0bd-952b4f527928", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032534Z:4217c098-0e78-442d-a8f6-30705e14af4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727a4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84d24b57fab5582b052f3a71a7085894", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67831682-46d7-40a9-9804-65626ef11013", + "x-ms-client-request-id": "84d24b57fab5582b052f3a71a7085894", + "x-ms-correlation-request-id": "b37b084d-5f4e-4f4f-a70a-b51bb0ba8ba3", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "31afd4d6-7ef5-48e0-869c-511f1ecf5da1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032535Z:b37b084d-5f4e-4f4f-a70a-b51bb0ba8ba3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727a5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8fc1a423eb4924194fe3794d37989ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5dd21f3c-d716-4725-a459-b7642170bd48", + "x-ms-client-request-id": "c8fc1a423eb4924194fe3794d37989ec", + "x-ms-correlation-request-id": "72cda688-5451-4285-a7e5-887d0c99cec1", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "96ad063c-dfe9-4045-8474-48c821c0e134", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032537Z:72cda688-5451-4285-a7e5-887d0c99cec1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727a6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c0b9200beb3e06c9ea6802fb02884f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "97e556fc-8a98-442b-8959-61e704a813d2", + "x-ms-client-request-id": "3c0b9200beb3e06c9ea6802fb02884f9", + "x-ms-correlation-request-id": "33ef663d-14ef-4997-a860-8f031d02ab78", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "25c10b5a-30f5-4314-8baf-e437a30588a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032538Z:33ef663d-14ef-4997-a860-8f031d02ab78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727a7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46c34d41c682184a093ff0b7c297858c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd65576c-4358-4bb9-b2df-2c80a25a44ca", + "x-ms-client-request-id": "46c34d41c682184a093ff0b7c297858c", + "x-ms-correlation-request-id": "abc3e73c-7882-4bf8-a555-3164d6d71a4b", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "859c8780-0bc3-4398-a639-2618e2f2c1d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032539Z:abc3e73c-7882-4bf8-a555-3164d6d71a4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727a8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "15714ea61cfc83e1ae1b290ebe12e26c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d124d3e4-1a03-4568-9633-ed688ca9bcec", + "x-ms-client-request-id": "15714ea61cfc83e1ae1b290ebe12e26c", + "x-ms-correlation-request-id": "6be6629a-9578-42d7-b25f-e7b46efa00ff", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "14a0474b-bc37-47eb-b265-a1ff3237fac2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032541Z:6be6629a-9578-42d7-b25f-e7b46efa00ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727a9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86523e7943b5396947f33273ceb41d07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2df9f3b-9272-483f-94e3-344a6106b2eb", + "x-ms-client-request-id": "86523e7943b5396947f33273ceb41d07", + "x-ms-correlation-request-id": "94982613-412d-4136-8cc3-b15d47877ec8", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "dc0d3602-5c79-452e-8a71-80747af7b3f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032542Z:94982613-412d-4136-8cc3-b15d47877ec8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727aa-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6289f4216fb725fd6b3f97679d3c59f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85825ba7-bf25-479a-a5dc-05fbf7b97d36", + "x-ms-client-request-id": "6289f4216fb725fd6b3f97679d3c59f7", + "x-ms-correlation-request-id": "45a308f7-dcd3-47b5-a9a6-f40597ec015e", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "6f21c08e-6849-482d-abe2-b1f2c00f767b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032543Z:45a308f7-dcd3-47b5-a9a6-f40597ec015e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ab-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "843d845dfe4462d6e437cd09e96db4f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd18f61e-31fe-4def-a9b5-0fd22226a26f", + "x-ms-client-request-id": "843d845dfe4462d6e437cd09e96db4f9", + "x-ms-correlation-request-id": "51180a10-c47f-407d-bc2b-26967bd379bd", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "5c910c42-0d34-40e0-973d-11a96e5d16a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032545Z:51180a10-c47f-407d-bc2b-26967bd379bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ac-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "caec21fe80890ab4412d1a75ab029c0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4a6b442-d387-44d7-b43f-6be7b4f73e37", + "x-ms-client-request-id": "caec21fe80890ab4412d1a75ab029c0b", + "x-ms-correlation-request-id": "4c05285d-87c8-4810-b1e5-4e70261f77dc", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "650689e9-9d5c-4b03-a902-c6883f833b5e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032546Z:4c05285d-87c8-4810-b1e5-4e70261f77dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ad-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a163b99987723c31d267d7fa1f33bfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17ffce66-11df-4612-91d2-c3118edf1e6c", + "x-ms-client-request-id": "4a163b99987723c31d267d7fa1f33bfe", + "x-ms-correlation-request-id": "c4d919b5-bb5c-4cab-9867-f351fb2139fc", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "63a9c89d-0f20-4b4b-a8bd-c80d3291ebb8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032547Z:c4d919b5-bb5c-4cab-9867-f351fb2139fc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ae-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b689d8b8f4fdc6dcf334316e360b7e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9ef79990-baf0-4090-9f98-f075557e7b95", + "x-ms-client-request-id": "7b689d8b8f4fdc6dcf334316e360b7e2", + "x-ms-correlation-request-id": "b78a8ea9-df98-4f31-82fd-fb5136e1c84d", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "550724d6-226b-4e6b-a41d-098c10ca07b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032549Z:b78a8ea9-df98-4f31-82fd-fb5136e1c84d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727af-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae6fc29b6a5765825ec9ad630234684d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f7efe90-9972-4b27-8172-9371c6a12ffb", + "x-ms-client-request-id": "ae6fc29b6a5765825ec9ad630234684d", + "x-ms-correlation-request-id": "a245f82f-6cbe-43c3-9972-81bba7c1b87e", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "25079c8f-4951-4ee2-8073-75e9dd0c9ed8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032550Z:a245f82f-6cbe-43c3-9972-81bba7c1b87e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727b0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0dea1cf220990abbcd397a4355ac3fbc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50c3fb90-8350-4c22-98e5-408b806363a8", + "x-ms-client-request-id": "0dea1cf220990abbcd397a4355ac3fbc", + "x-ms-correlation-request-id": "4ddbe224-79e5-4496-bce0-d6550df36006", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "694b8f7c-2686-42da-a2fd-8dae47155de3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032551Z:4ddbe224-79e5-4496-bce0-d6550df36006" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727b1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfe49b6f8c8420a61b031d86e10ad99a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "062f6c15-4207-400f-b041-f1073033a448", + "x-ms-client-request-id": "dfe49b6f8c8420a61b031d86e10ad99a", + "x-ms-correlation-request-id": "af7b84c1-2206-4db7-a34f-6b362a826366", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "2046591c-6785-48a0-823d-20c2fbaac268", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032553Z:af7b84c1-2206-4db7-a34f-6b362a826366" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727b2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c724f6cba9767a480664e01def3f10b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "264161ec-d373-4370-87ee-eb0284ba0b93", + "x-ms-client-request-id": "c724f6cba9767a480664e01def3f10b1", + "x-ms-correlation-request-id": "9740ad20-6c7b-428a-ab1f-e1c95d95012c", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "78cf0611-ce76-4326-b8e6-b5e12ab1b2e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032554Z:9740ad20-6c7b-428a-ab1f-e1c95d95012c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727b3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67f4f08a885065c875caf296033528c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a884b11-0b76-4563-8e80-f1941d588c8e", + "x-ms-client-request-id": "67f4f08a885065c875caf296033528c3", + "x-ms-correlation-request-id": "4ad19713-4f45-4929-ab15-e06843d94815", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "c107af70-0490-451c-93b6-5fb277d1f54d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032555Z:4ad19713-4f45-4929-ab15-e06843d94815" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727b4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e77e05f7788c546526ad91fab8930db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53776eb6-82ef-4388-b39b-8336c6c2372a", + "x-ms-client-request-id": "5e77e05f7788c546526ad91fab8930db", + "x-ms-correlation-request-id": "f4639af7-6d47-4d05-973d-d4379e8cee27", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "d6de6121-27c6-4e44-8d7e-13558231a772", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032557Z:f4639af7-6d47-4d05-973d-d4379e8cee27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727b5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1fc6bf37115434a2dbe51acb7b276d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:25:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d68bb718-076e-4be7-ab8d-1a43814bc12e", + "x-ms-client-request-id": "f1fc6bf37115434a2dbe51acb7b276d1", + "x-ms-correlation-request-id": "3ae84547-b67e-4f70-ab30-cecf36b5214a", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "9535a6b4-39e3-4b9e-8270-8c9dc967ccab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032559Z:3ae84547-b67e-4f70-ab30-cecf36b5214a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727b6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ebd1d3bb1c71229a92f15e5aea8b9ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "611501e5-c905-427d-891a-b15b43e8eef0", + "x-ms-client-request-id": "0ebd1d3bb1c71229a92f15e5aea8b9ec", + "x-ms-correlation-request-id": "a294a26c-b235-4385-be00-64424790c895", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "51a468c4-9266-4ab3-9063-9c4d5b30c58c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032601Z:a294a26c-b235-4385-be00-64424790c895" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727b7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98a216993738edad963431c9269a0d9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "624fa207-9279-4bb0-8d4c-166c51961375", + "x-ms-client-request-id": "98a216993738edad963431c9269a0d9f", + "x-ms-correlation-request-id": "c56e8c55-3f9f-4c26-83af-e75af7dc0c28", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "1734e191-8f4d-40a8-9bff-cc5098f8bf8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032603Z:c56e8c55-3f9f-4c26-83af-e75af7dc0c28" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727b8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ee408f321cb411441ea47e65c649484", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "375d9cdd-de06-48e1-8259-f69033a322a9", + "x-ms-client-request-id": "8ee408f321cb411441ea47e65c649484", + "x-ms-correlation-request-id": "11c53f23-6c21-4624-bc7b-fa15772dc12e", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "293799f1-41f6-462a-8406-926529991642", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032604Z:11c53f23-6c21-4624-bc7b-fa15772dc12e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727b9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0126504de0f04986fcf7892805feb0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc9dbe06-21d6-4d14-a663-8b5530e8e424", + "x-ms-client-request-id": "a0126504de0f04986fcf7892805feb0f", + "x-ms-correlation-request-id": "55cc1f7a-013e-41dd-a03f-b5443fdba367", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "66716913-2caf-471e-b8d9-53b8f54c4232", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032605Z:55cc1f7a-013e-41dd-a03f-b5443fdba367" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ba-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6f275212bc477200160564defc69132", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "19e10f9d-5114-4150-b0c5-5da03598b302", + "x-ms-client-request-id": "a6f275212bc477200160564defc69132", + "x-ms-correlation-request-id": "04187a7d-533a-403f-bcbe-fb5e5367190f", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "7011f721-78e7-4f7d-808d-02bc79b91f0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032607Z:04187a7d-533a-403f-bcbe-fb5e5367190f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727bb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0c5aca06d8714906fdf1efca982c1e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "684d639c-bad4-4a69-b734-43ab5e7bc0f4", + "x-ms-client-request-id": "c0c5aca06d8714906fdf1efca982c1e2", + "x-ms-correlation-request-id": "4ab1c05f-d524-4bbb-8e57-7d872e2d134b", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "4c303276-e6ad-466e-b726-494eaaee1cbe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032609Z:4ab1c05f-d524-4bbb-8e57-7d872e2d134b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727bc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7c538feed71d8c0459b9eae884a15a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d4ac1d0-2a85-4328-8767-e1c89619bec3", + "x-ms-client-request-id": "e7c538feed71d8c0459b9eae884a15a8", + "x-ms-correlation-request-id": "9ccf6a6e-8b3e-465e-bc14-ba03bd13d98e", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "9aa6eb5f-3ac8-4ce8-bc4c-9fcaf92dbfc3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032611Z:9ccf6a6e-8b3e-465e-bc14-ba03bd13d98e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727bd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3f1453e2b9ab387e5dd37e40c23cd7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3bdba824-43c8-496b-a898-a1e2e70375d2", + "x-ms-client-request-id": "d3f1453e2b9ab387e5dd37e40c23cd7f", + "x-ms-correlation-request-id": "04c43e9d-9092-4285-a070-bea449ad78cb", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "4989f35f-264a-4430-8e87-e99cc998cf4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032613Z:04c43e9d-9092-4285-a070-bea449ad78cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727be-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b64f749faa01b2c0ecec7aebcee18c24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cbb5a57e-8002-4d6b-845d-6200977f8187", + "x-ms-client-request-id": "b64f749faa01b2c0ecec7aebcee18c24", + "x-ms-correlation-request-id": "8b1ef111-ca3d-4ad0-9cd6-bbc10523643f", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "d842879d-87c2-412e-b23d-bfc89714243e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032615Z:8b1ef111-ca3d-4ad0-9cd6-bbc10523643f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727bf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63bd76caee90d348b1110194b6dbcc21", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "706e0339-8f05-4934-ae0e-dd1569388df8", + "x-ms-client-request-id": "63bd76caee90d348b1110194b6dbcc21", + "x-ms-correlation-request-id": "5dba924f-160a-4501-8e3d-4e6b8b59f3d8", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "6fee387b-e356-4483-9859-451abab73c5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032617Z:5dba924f-160a-4501-8e3d-4e6b8b59f3d8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727c0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "130f1fce5efb94a7853fe6adb09be503", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d498d381-68c3-4f33-b924-5238498ff69e", + "x-ms-client-request-id": "130f1fce5efb94a7853fe6adb09be503", + "x-ms-correlation-request-id": "4db8d7c4-89db-44e3-90ba-527ebfb32c46", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "40abde54-140c-4e6f-8965-f0b682baef0e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032618Z:4db8d7c4-89db-44e3-90ba-527ebfb32c46" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727c1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "961a12516966b0ef2c7c05efa82cfc11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2973101d-5af1-4c20-aa6f-af83602860e5", + "x-ms-client-request-id": "961a12516966b0ef2c7c05efa82cfc11", + "x-ms-correlation-request-id": "b20406ad-f27e-4535-ac14-53e90df9da0f", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "26835edd-d3e1-4168-85e6-c7df819cd8c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032619Z:b20406ad-f27e-4535-ac14-53e90df9da0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727c2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af1d592078d16b29ce29de51079a2215", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b683ff34-234f-4df1-9b44-53b60fb1de76", + "x-ms-client-request-id": "af1d592078d16b29ce29de51079a2215", + "x-ms-correlation-request-id": "65c0a6c4-c832-4c35-a9a0-4ab85ed27e4d", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "32be1357-f7e5-4020-9d88-458bdc7b12b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032621Z:65c0a6c4-c832-4c35-a9a0-4ab85ed27e4d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727c3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a442fe2b35c064bb2f5fe77f59b7eb58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ff749f1-5dce-4bcd-9df2-261cebe7ceeb", + "x-ms-client-request-id": "a442fe2b35c064bb2f5fe77f59b7eb58", + "x-ms-correlation-request-id": "847cf343-21ba-4b3d-8608-d3c1c3f5d74c", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "95149251-96db-4bbc-b5d0-31ae2f217ff4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032623Z:847cf343-21ba-4b3d-8608-d3c1c3f5d74c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727c4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "578dd543367ed831e9aec73c8b9ea891", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e94a7081-f951-4dd5-8439-5e680d640cf2", + "x-ms-client-request-id": "578dd543367ed831e9aec73c8b9ea891", + "x-ms-correlation-request-id": "c51b6052-4568-4a89-b893-0dfbfec4d589", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "3bc3d922-b566-4664-b67e-479a1e0ea336", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032625Z:c51b6052-4568-4a89-b893-0dfbfec4d589" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727c5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aac3f05957e9ea509db87f7291a91217", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e320e8b9-2651-4fba-afdb-9e8cb41982c5", + "x-ms-client-request-id": "aac3f05957e9ea509db87f7291a91217", + "x-ms-correlation-request-id": "a3387bf6-2498-4f8f-b80e-945054ff7420", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "33ca2a7c-40f6-44f7-84fb-76c99f402bc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032626Z:a3387bf6-2498-4f8f-b80e-945054ff7420" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727c6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "320d853dcb0df596cc6abb116e7ed890", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c50e6ad-5b27-488b-9174-9c8fecd92a1c", + "x-ms-client-request-id": "320d853dcb0df596cc6abb116e7ed890", + "x-ms-correlation-request-id": "5fc20c3e-cd0b-495d-8e9d-12a3a2c0fa05", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "96f05f86-4e91-49d5-94f9-03b85d20cd13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032627Z:5fc20c3e-cd0b-495d-8e9d-12a3a2c0fa05" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727c7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "682555b641f4eb6e84a2b9c5b6be463f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7bca9d68-f3b2-4b3e-95ea-6599bf478e72", + "x-ms-client-request-id": "682555b641f4eb6e84a2b9c5b6be463f", + "x-ms-correlation-request-id": "df5a889c-a9be-4152-8d33-21b6ff83b153", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "f4a03f2a-1735-4ab8-87dd-22567fca145c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032629Z:df5a889c-a9be-4152-8d33-21b6ff83b153" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727c8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05ffb09b76908e8459cede7e9c3e7c1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5a70f63-483a-47cb-8528-8bd76b6bdc63", + "x-ms-client-request-id": "05ffb09b76908e8459cede7e9c3e7c1f", + "x-ms-correlation-request-id": "9716aea4-8e9d-4030-b6e4-fe8ba7e95227", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "a2d00b91-296d-419f-91be-5353b1353ca9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032631Z:9716aea4-8e9d-4030-b6e4-fe8ba7e95227" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727c9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bbcefdfa984fc221622ae6a12d13e0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "279d7310-d9cf-49e1-815c-efc25d022daf", + "x-ms-client-request-id": "3bbcefdfa984fc221622ae6a12d13e0d", + "x-ms-correlation-request-id": "66aa7b9d-d11b-46ff-ad18-d738528352f7", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "a3f1d1de-c7af-45af-ba2f-9d01ee63b17d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032632Z:66aa7b9d-d11b-46ff-ad18-d738528352f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ca-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd767b24d37f40ffd1970f2563f04e45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "715fc44a-a9f9-47fd-90c5-99f7efbe0e6e", + "x-ms-client-request-id": "bd767b24d37f40ffd1970f2563f04e45", + "x-ms-correlation-request-id": "300c661e-1407-4e6c-a12f-b8e3208f43b9", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "9d8bae8d-5dae-499d-b2d6-cf88631f7fd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032633Z:300c661e-1407-4e6c-a12f-b8e3208f43b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727cb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7e599260a02f2bb8d02ee6ec8197b88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "42acb676-50ac-4a33-baef-4a38ac53b07d", + "x-ms-client-request-id": "c7e599260a02f2bb8d02ee6ec8197b88", + "x-ms-correlation-request-id": "f7d3a8bb-f9da-4e58-ada6-714a7865e446", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "5f3e2b71-069f-4a2f-9688-515872105744", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032635Z:f7d3a8bb-f9da-4e58-ada6-714a7865e446" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727cc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "215ad08fbec80ca0ef7c6aec9afd9926", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7be4fd41-b8f5-4cb9-a3c7-4afbe727bbf0", + "x-ms-client-request-id": "215ad08fbec80ca0ef7c6aec9afd9926", + "x-ms-correlation-request-id": "8e99b205-73da-4419-863a-a2eeba7345ce", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "d079f02b-a5b6-4551-8f25-6d8ac183dde1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032636Z:8e99b205-73da-4419-863a-a2eeba7345ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727cd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "784468d377eb1a0ac0832f7ce49177b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61c97fb2-6bcb-45dc-9d6d-f7f06ec454ba", + "x-ms-client-request-id": "784468d377eb1a0ac0832f7ce49177b7", + "x-ms-correlation-request-id": "f3520f34-0ca1-4487-93c2-777f11097644", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "809e4f8d-aafb-4d0b-ba20-04ea612152bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032637Z:f3520f34-0ca1-4487-93c2-777f11097644" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ce-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9296871b2d95677cf9d8d7859fce5790", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "755da29a-5eec-4ce9-927b-46e78b5f0ed5", + "x-ms-client-request-id": "9296871b2d95677cf9d8d7859fce5790", + "x-ms-correlation-request-id": "3ef7bc49-d637-472f-91f3-c23f0778d9c5", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "a2a10c69-0685-4690-a7d0-c5968b39d980", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032639Z:3ef7bc49-d637-472f-91f3-c23f0778d9c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727cf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f9ac76903d5179cc64060448e23275e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9a62cc98-52e1-4040-aca4-59cc22875f8e", + "x-ms-client-request-id": "5f9ac76903d5179cc64060448e23275e", + "x-ms-correlation-request-id": "c74190b2-42d5-4f8e-877e-b8bb4f065410", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "12157243-dc42-488e-a1de-80b2d2df68bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032640Z:c74190b2-42d5-4f8e-877e-b8bb4f065410" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727d0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12d1b3040766a690ebdd7f12a0847af1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04479a8d-5e16-4d2d-bd45-9941125114c7", + "x-ms-client-request-id": "12d1b3040766a690ebdd7f12a0847af1", + "x-ms-correlation-request-id": "b343c3ad-94f3-4c16-82a3-4a2048c85184", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "ac76a09b-099f-4f7e-b25b-9576f5c3db0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032642Z:b343c3ad-94f3-4c16-82a3-4a2048c85184" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727d1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c129f2c17f717e2eb7ecc55cc37d8d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccf35ddc-855b-4dae-8de8-f62db9c3ba56", + "x-ms-client-request-id": "1c129f2c17f717e2eb7ecc55cc37d8d5", + "x-ms-correlation-request-id": "76b40b3d-feea-4895-9f15-7bf7552826a5", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "4dfa7bf0-97d0-4e6b-afbf-b769b9e03aa7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032643Z:76b40b3d-feea-4895-9f15-7bf7552826a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727d2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec8178b045fd622936f373f784897741", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "372d5203-5afd-4c02-a46a-797806adeaf1", + "x-ms-client-request-id": "ec8178b045fd622936f373f784897741", + "x-ms-correlation-request-id": "8de2c571-ea09-44d6-afa9-41266fa2bb1f", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "c9160153-1ef2-4b17-987a-d685ac0bbebf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032645Z:8de2c571-ea09-44d6-afa9-41266fa2bb1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727d3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef186fc50b10ec67d0b927e83b3bd9b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26121473-77fe-447d-b723-c25c061ad4f0", + "x-ms-client-request-id": "ef186fc50b10ec67d0b927e83b3bd9b3", + "x-ms-correlation-request-id": "7c07e203-037b-4e78-8460-7bd33cbb6e80", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "5efd8245-ca71-41ad-9a16-6f8d98cdfa7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032646Z:7c07e203-037b-4e78-8460-7bd33cbb6e80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727d4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2762a9048d03e6f475b0e503a4ea9362", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "03e1d5fa-737d-4417-a43d-e5f6e3cfcd31", + "x-ms-client-request-id": "2762a9048d03e6f475b0e503a4ea9362", + "x-ms-correlation-request-id": "10eea9dc-39ef-4957-9d4c-c79fd49d385e", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "3d7f12e0-daf2-4b23-9353-09065dad7ad3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032647Z:10eea9dc-39ef-4957-9d4c-c79fd49d385e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727d5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d908a06e91fa5c411941b431d4127fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5fb7d8d6-29c6-4556-8f85-25f60838ccb8", + "x-ms-client-request-id": "5d908a06e91fa5c411941b431d4127fb", + "x-ms-correlation-request-id": "a399272b-b2ed-4597-83f7-c2df41726c9a", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "74e00201-93de-446e-8022-2dced3253b7d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032649Z:a399272b-b2ed-4597-83f7-c2df41726c9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727d6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dbf3c0195027373d7a327960256448e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd2a7a39-d2bb-4451-8c60-0c8dd77ddb79", + "x-ms-client-request-id": "dbf3c0195027373d7a327960256448e6", + "x-ms-correlation-request-id": "a5e834ae-c19d-411d-8cd2-a37a3836a034", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "cb02a918-10d3-4f52-a5e5-305dfbf8e36a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032650Z:a5e834ae-c19d-411d-8cd2-a37a3836a034" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727d7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0e1c5257cab1b94e4bc156f72b0c834", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "90b5ef18-0b87-4606-a961-ebe2e50dedb9", + "x-ms-client-request-id": "b0e1c5257cab1b94e4bc156f72b0c834", + "x-ms-correlation-request-id": "f7dce5d1-2179-499b-800b-b04d0bb8a0f0", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "8e5e273e-a80f-48d3-99ef-c474894f227b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032651Z:f7dce5d1-2179-499b-800b-b04d0bb8a0f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727d8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3e9ea89b8f7b63a4d58e2ed6f6480ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e947e90c-8d43-4611-9615-1284c1cf0fb6", + "x-ms-client-request-id": "e3e9ea89b8f7b63a4d58e2ed6f6480ad", + "x-ms-correlation-request-id": "3a57e615-2e2b-4c8e-b31b-7e8b251b6e64", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "0837fb30-3420-48fc-b54d-3cbdae13c9fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032653Z:3a57e615-2e2b-4c8e-b31b-7e8b251b6e64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727d9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "581e354b775f9d502bd7f66a3acdc5ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a34428f8-e2a4-4ed3-9d86-f17043e7413a", + "x-ms-client-request-id": "581e354b775f9d502bd7f66a3acdc5ca", + "x-ms-correlation-request-id": "68c02877-c37c-45d3-8ad7-01498cb1806d", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "1d5b6bb0-91dc-424c-bc6b-bbbf3b240250", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032654Z:68c02877-c37c-45d3-8ad7-01498cb1806d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727da-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ad64469647a6def8a2b625399a7ab7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc91f327-44fb-418a-b3e1-bc1f37b54460", + "x-ms-client-request-id": "3ad64469647a6def8a2b625399a7ab7f", + "x-ms-correlation-request-id": "465d41c9-b814-413b-a91e-f2d1cb320e19", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "3a579edd-3ecc-49e7-9428-ebd13f928790", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032655Z:465d41c9-b814-413b-a91e-f2d1cb320e19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727db-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c23683b709212d5994bb81fc1d07b7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c0b6f100-8b88-4f61-938c-77d1c151a8de", + "x-ms-client-request-id": "3c23683b709212d5994bb81fc1d07b7f", + "x-ms-correlation-request-id": "919762c4-7ee5-4c60-a130-5165e48f4932", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "057459b4-5aa5-4d15-b3cf-9dd571c9b812", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032657Z:919762c4-7ee5-4c60-a130-5165e48f4932" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727dc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b831892458ee63246b0cd3414fd0383", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "154f601b-6f2a-42f4-9f3b-b4f18b299d57", + "x-ms-client-request-id": "2b831892458ee63246b0cd3414fd0383", + "x-ms-correlation-request-id": "6f5d7051-7b5b-4e52-bd1f-0f9ba34a72c2", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "965c77cd-8400-4646-b582-ab4b53f6b4ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032658Z:6f5d7051-7b5b-4e52-bd1f-0f9ba34a72c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727dd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d22f772b89a9f8376fc4a12faccfabba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:26:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d8ae8d9-bbf4-48cb-ab28-34597ed55ed2", + "x-ms-client-request-id": "d22f772b89a9f8376fc4a12faccfabba", + "x-ms-correlation-request-id": "43e065d6-22c2-42cc-a44d-357eae931dec", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "6197a784-3e53-4497-882f-4d331532414d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032659Z:43e065d6-22c2-42cc-a44d-357eae931dec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727de-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81c1e2af8023f6f1353df6e1a2a1fd9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3124f849-b063-4543-8165-7f24b082cac2", + "x-ms-client-request-id": "81c1e2af8023f6f1353df6e1a2a1fd9c", + "x-ms-correlation-request-id": "16498d3d-a0e1-4ae0-93bc-a997db766ffb", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "67053252-2e2a-43a5-a53f-48f9ae4387b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032701Z:16498d3d-a0e1-4ae0-93bc-a997db766ffb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727df-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4af33448a9a008d6e18bbbcaa4033a76", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "914d0023-b0ed-4071-8027-8354486a74fd", + "x-ms-client-request-id": "4af33448a9a008d6e18bbbcaa4033a76", + "x-ms-correlation-request-id": "e84bbfc7-df35-497f-ac04-7b8e4642182c", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "f9287c99-1c0d-474a-af85-aaf3e2505999", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032702Z:e84bbfc7-df35-497f-ac04-7b8e4642182c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727e0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32841304823cab6086399c6c935556cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd47eda5-590a-407e-a031-9f0c43c0051e", + "x-ms-client-request-id": "32841304823cab6086399c6c935556cd", + "x-ms-correlation-request-id": "50ae7ad5-11d0-426a-9efc-67ed12ef0638", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "83540d56-812c-4d18-aa56-863e8c2f6bad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032704Z:50ae7ad5-11d0-426a-9efc-67ed12ef0638" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727e1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78e605c661db06190cb8a098c4275132", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7bb050f2-63a6-406f-be43-7c175e8c0136", + "x-ms-client-request-id": "78e605c661db06190cb8a098c4275132", + "x-ms-correlation-request-id": "70d76b65-cc6e-4052-be8d-17f94e449e38", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "96bd9d32-2608-46e0-8c05-42ee9ef526cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032705Z:70d76b65-cc6e-4052-be8d-17f94e449e38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727e2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8edd7f03cb1cc65fd448c4670c69758b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b3b0826b-6c14-4852-a5e2-16b5d94f7f8d", + "x-ms-client-request-id": "8edd7f03cb1cc65fd448c4670c69758b", + "x-ms-correlation-request-id": "5e20ea91-ce45-4ca5-a0da-cb11b09f2769", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "80763155-789b-479a-bb85-9526dce9ab21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032707Z:5e20ea91-ce45-4ca5-a0da-cb11b09f2769" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727e3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e03ed34c21ca39bfa7d2583e2c7e65f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a56476e6-75b6-49bc-a464-838a6da48d6b", + "x-ms-client-request-id": "9e03ed34c21ca39bfa7d2583e2c7e65f", + "x-ms-correlation-request-id": "c6b8269f-c8f6-4115-a646-84103c411bf1", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "d66bd840-6d26-44cf-a773-225f3c03d5ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032709Z:c6b8269f-c8f6-4115-a646-84103c411bf1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727e4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14696ae7c778fab0a520a3939db1f9a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f7591d7-b1e4-4a88-9888-6f265d918353", + "x-ms-client-request-id": "14696ae7c778fab0a520a3939db1f9a3", + "x-ms-correlation-request-id": "a15f94f4-9e4e-4845-a49c-431eb7af20f6", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "e5c03726-1d20-42d6-bc05-2ad6e6fe3b51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032710Z:a15f94f4-9e4e-4845-a49c-431eb7af20f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727e5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d7631443b2234116e439949fa6dbe30d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4e73f47-1906-42c1-9008-5ed00dc2b526", + "x-ms-client-request-id": "d7631443b2234116e439949fa6dbe30d", + "x-ms-correlation-request-id": "03e4926a-d559-40eb-b18f-342462022f0a", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "a3c81c50-efbc-408a-a1eb-36b685322553", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032712Z:03e4926a-d559-40eb-b18f-342462022f0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727e6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a280656261ff6d133c09f9fb1e070548", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dca42f96-0a4c-4f53-8c54-a6d59be6c0d9", + "x-ms-client-request-id": "a280656261ff6d133c09f9fb1e070548", + "x-ms-correlation-request-id": "b00e6a01-075d-41e8-855c-e99a4a3d29bc", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "98a76924-0203-46f2-85ee-ea1f2158279b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032713Z:b00e6a01-075d-41e8-855c-e99a4a3d29bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727e7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd4082840f63343b53282f3e321154ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35267c17-e7d0-479c-ae79-d4efcebc1e07", + "x-ms-client-request-id": "cd4082840f63343b53282f3e321154ca", + "x-ms-correlation-request-id": "81bece32-331e-4cf8-a048-d1dda49e6940", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "af8876f0-be2a-4096-87da-cec77f13457a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032715Z:81bece32-331e-4cf8-a048-d1dda49e6940" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727e8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3830963c5731e2a301f69a19b91a22dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa2f5cfb-09f2-4e69-a315-6f14a4d56c7e", + "x-ms-client-request-id": "3830963c5731e2a301f69a19b91a22dc", + "x-ms-correlation-request-id": "0f0d0767-8b7e-4c17-a69f-83831ad5e18d", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "160e16d4-d5b4-4288-a475-64aad85db2de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032716Z:0f0d0767-8b7e-4c17-a69f-83831ad5e18d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727e9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "231b4c34169a53a9294b4ed731d43b2b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d0a35aa5-3317-414e-85e1-e53352123067", + "x-ms-client-request-id": "231b4c34169a53a9294b4ed731d43b2b", + "x-ms-correlation-request-id": "85f649f4-e745-47da-9092-c4b1beb3b2a9", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "558e4ccb-7f9c-4079-ba0d-480acda768a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032718Z:85f649f4-e745-47da-9092-c4b1beb3b2a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ea-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "88be2fb4cdd72c17df5ecc6d75217a39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a033ad01-5e6c-46ff-88ff-10f295ddd913", + "x-ms-client-request-id": "88be2fb4cdd72c17df5ecc6d75217a39", + "x-ms-correlation-request-id": "8a793a73-04c9-4872-83e5-3f66846d1631", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "ac7fe3cb-ed9c-45bf-90e5-c14702adc4bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032719Z:8a793a73-04c9-4872-83e5-3f66846d1631" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727eb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e50a530530f6262fecdd0ee508cbb02c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bee5c86-853c-480b-a510-b3efbb1c5b99", + "x-ms-client-request-id": "e50a530530f6262fecdd0ee508cbb02c", + "x-ms-correlation-request-id": "496d3655-339a-4c71-8ae8-74c2595631b7", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "56ba3e2c-a6c8-40d8-96e6-61dc8eb70050", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032721Z:496d3655-339a-4c71-8ae8-74c2595631b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ec-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a656fbb9a5b660535ee443c4a3cde07", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cfe8cdd-82e8-4fc5-86a8-d2890c2f3baa", + "x-ms-client-request-id": "8a656fbb9a5b660535ee443c4a3cde07", + "x-ms-correlation-request-id": "44985984-d071-42e1-bb22-bbc0feb5a55e", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "acf4ebc1-0a36-4307-8618-10db47c36551", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032722Z:44985984-d071-42e1-bb22-bbc0feb5a55e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ed-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddd115d155ca833400989bf9be312313", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f629fd6a-7011-44c8-995c-663f5ca0cc01", + "x-ms-client-request-id": "ddd115d155ca833400989bf9be312313", + "x-ms-correlation-request-id": "3b1d0222-4abb-4026-b906-6be1fa896d58", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "6aceb6e9-7ebf-4f0e-9b39-e3b32d16d078", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032723Z:3b1d0222-4abb-4026-b906-6be1fa896d58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ee-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05b29fadf0bc6bde4ea3b008ecf2dcb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e23fa292-c9c1-4eac-9999-ee8e9dab7ba2", + "x-ms-client-request-id": "05b29fadf0bc6bde4ea3b008ecf2dcb0", + "x-ms-correlation-request-id": "88f29ee8-105f-474c-89b7-5dd111a783ab", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "82e8d640-28a1-42dd-89d1-52042b859f94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032725Z:88f29ee8-105f-474c-89b7-5dd111a783ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ef-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f31407ffd3f965623ae18ac3ff0ba703", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fca3add3-c4ab-4ac2-b807-479272d49600", + "x-ms-client-request-id": "f31407ffd3f965623ae18ac3ff0ba703", + "x-ms-correlation-request-id": "aa9bafdf-07de-4838-8805-6a2b94feb0e4", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "71431ab9-e021-4afa-93b2-e66835d618a7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032727Z:aa9bafdf-07de-4838-8805-6a2b94feb0e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727f0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa8e30cad889e04a36668f26a42b970d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e63a3c5a-e38d-4d2b-9841-6eaef14df53e", + "x-ms-client-request-id": "aa8e30cad889e04a36668f26a42b970d", + "x-ms-correlation-request-id": "3503bf4b-e6d4-4705-a2c5-5601865a5eb7", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "befbc75a-a06a-4579-9114-99891e548966", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032728Z:3503bf4b-e6d4-4705-a2c5-5601865a5eb7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727f1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7faeabc301dda193c4ccadb661a6c42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "673af0b2-61fc-4c41-ab22-41c3ea08f20d", + "x-ms-client-request-id": "b7faeabc301dda193c4ccadb661a6c42", + "x-ms-correlation-request-id": "e627392d-1a50-41d4-9194-925243cb083e", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "4e82ff4d-89ba-4020-bcee-29e2cbe04a4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032729Z:e627392d-1a50-41d4-9194-925243cb083e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727f2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bb3eadfc31642627bc33bc93433cc10f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73e508c9-0c17-4e94-b79b-59385435e146", + "x-ms-client-request-id": "bb3eadfc31642627bc33bc93433cc10f", + "x-ms-correlation-request-id": "8ccaa695-a38f-420d-808a-e3d0275dfc90", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "0243c68f-d9c0-4dc8-9ed5-0fea7862ac05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032731Z:8ccaa695-a38f-420d-808a-e3d0275dfc90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727f3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14077c4af0109ae517b36e3c0d6f7a1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d10ecb85-5822-41d8-990e-3b23ba5e8ee6", + "x-ms-client-request-id": "14077c4af0109ae517b36e3c0d6f7a1c", + "x-ms-correlation-request-id": "d0c80deb-dcc3-4037-b8b8-b0fcd4e13fe4", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "9d9c8899-62f8-4e9e-a3e7-2961c52e13e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032732Z:d0c80deb-dcc3-4037-b8b8-b0fcd4e13fe4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727f4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f72a4cfadbed8aa9c2d4faea738697ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9ce8627-8d2a-45a7-b07f-d8212292fc55", + "x-ms-client-request-id": "f72a4cfadbed8aa9c2d4faea738697ff", + "x-ms-correlation-request-id": "e77555b2-afac-4ae4-8a64-305d4bc229f7", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "81963d2b-3062-47dc-8df9-70ef1a145564", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032733Z:e77555b2-afac-4ae4-8a64-305d4bc229f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727f5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e991bb8b57130b32c7a4a4b0c3ea194d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7bd0d3e2-aeb0-403a-8892-7c2fc2e79832", + "x-ms-client-request-id": "e991bb8b57130b32c7a4a4b0c3ea194d", + "x-ms-correlation-request-id": "a2690216-e0a5-4f70-9e06-f26aa53ff7e9", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "7127321d-5a43-4969-8585-a7ba02e9e4e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032735Z:a2690216-e0a5-4f70-9e06-f26aa53ff7e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727f6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f798a0b9c9126e22d37c513cf5fb2691", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "059e4bc4-8d75-4ae6-adcd-84fc9a9e3f9a", + "x-ms-client-request-id": "f798a0b9c9126e22d37c513cf5fb2691", + "x-ms-correlation-request-id": "5ec6b658-1bfb-4206-86d8-5a9e76145371", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "fbe8a365-91c7-4ef4-86e5-7c628cc708ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032736Z:5ec6b658-1bfb-4206-86d8-5a9e76145371" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727f7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51b16e1c90dea3081a1e2f4837f8c6d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb4b283f-5e89-4d13-a41d-44c3da998740", + "x-ms-client-request-id": "51b16e1c90dea3081a1e2f4837f8c6d8", + "x-ms-correlation-request-id": "99c0415d-acf3-49a5-b099-6e393bf04e8d", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "04a188e8-f714-4d5b-a49c-9dec07a75536", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032737Z:99c0415d-acf3-49a5-b099-6e393bf04e8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727f8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d230adba9fedc2ed9922169705f515cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65188292-6d2c-467e-b377-d7452b0f4970", + "x-ms-client-request-id": "d230adba9fedc2ed9922169705f515cc", + "x-ms-correlation-request-id": "b1c3b389-3f18-4a07-b930-f2402a25a47d", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "fb7d345c-b644-44ff-9ff7-21d1b71f4276", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032739Z:b1c3b389-3f18-4a07-b930-f2402a25a47d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727f9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5593137dc739296f98f5dcf399d936da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fd8efb3-f06a-4d81-b775-96d02a4be1fe", + "x-ms-client-request-id": "5593137dc739296f98f5dcf399d936da", + "x-ms-correlation-request-id": "137b0793-f66e-4a35-a270-8bd93a592e58", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "85fb68f0-d25e-4e29-b093-f1961d9c04ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032740Z:137b0793-f66e-4a35-a270-8bd93a592e58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727fa-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "488279b653ca7ca381efb8bb7a719e24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a1f971b-7102-406d-8b24-3914b171e2b9", + "x-ms-client-request-id": "488279b653ca7ca381efb8bb7a719e24", + "x-ms-correlation-request-id": "772c4d89-acbf-4151-bc82-fc6a6ee72e49", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "cce2bb24-86cf-4fa5-81ab-fc00fbca0a8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032741Z:772c4d89-acbf-4151-bc82-fc6a6ee72e49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727fb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24cb63097165f39f3e073af7c3f928bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6ad0804-572a-4d35-a307-b6dd5e3126c2", + "x-ms-client-request-id": "24cb63097165f39f3e073af7c3f928bf", + "x-ms-correlation-request-id": "c3139946-b55a-463e-bd30-7750d7dd2b5d", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "5c3937eb-201d-4b4e-a5b3-dad32c0f26b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032743Z:c3139946-b55a-463e-bd30-7750d7dd2b5d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727fc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8be13beccd7329016f17d3490eb4af27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f540839c-6da2-4141-b0be-eb29eaf8e252", + "x-ms-client-request-id": "8be13beccd7329016f17d3490eb4af27", + "x-ms-correlation-request-id": "7cde18fe-429f-43f2-a688-6ddebefbcdf3", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "b730d38f-b1d9-4fab-8d8e-aeef8e19f3e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032744Z:7cde18fe-429f-43f2-a688-6ddebefbcdf3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727fd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36eab757120e4475da8e0ac319acb988", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f76966bd-76e1-40d0-8bf7-b83f41820ee5", + "x-ms-client-request-id": "36eab757120e4475da8e0ac319acb988", + "x-ms-correlation-request-id": "6ba8ad25-a377-4fe2-96f3-02d8d822826b", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "1b4e771c-7013-44b3-95a3-aadc32eec816", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032745Z:6ba8ad25-a377-4fe2-96f3-02d8d822826b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727fe-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ecef8c6128f3cb161a1b54d9d55e489", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa50bbd3-6e89-41b6-8ada-bdf187556f12", + "x-ms-client-request-id": "3ecef8c6128f3cb161a1b54d9d55e489", + "x-ms-correlation-request-id": "45c1f45e-498d-42a5-a6d2-1355dd7afec5", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "91546cd8-e45c-40ba-8cfc-7fb4e4a62d55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032747Z:45c1f45e-498d-42a5-a6d2-1355dd7afec5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671727ff-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0ba01258f20ed9b1c69cb1e4c23e0fc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aa084a5f-fb10-44db-8b63-4c871ca3f495", + "x-ms-client-request-id": "0ba01258f20ed9b1c69cb1e4c23e0fc2", + "x-ms-correlation-request-id": "a881012c-eee9-4561-ab35-63bb33e4b5fd", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "3f61a900-b48c-42fc-91e2-9bcede3d7be7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032748Z:a881012c-eee9-4561-ab35-63bb33e4b5fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172800-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16824b5d70e5449706aed46c5d27a684", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02376e38-b87d-470b-b1b8-c568ced00188", + "x-ms-client-request-id": "16824b5d70e5449706aed46c5d27a684", + "x-ms-correlation-request-id": "fcd30e82-b9ed-43c4-80f9-e537787612fd", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "ebf7bd8e-e442-434a-8603-b67f5fc4c734", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032749Z:fcd30e82-b9ed-43c4-80f9-e537787612fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172801-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "076a80aaae0bd47946f577f361cc7922", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f5bba5a-2ad9-440f-8a69-70ab70e21add", + "x-ms-client-request-id": "076a80aaae0bd47946f577f361cc7922", + "x-ms-correlation-request-id": "e8de3190-9023-4cdc-885e-2f6c610a0ea6", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "13eae266-8854-4fc7-9995-87d11fb8777e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032751Z:e8de3190-9023-4cdc-885e-2f6c610a0ea6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172802-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52f0f291cdd2e7a47b5b055f1d457c9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29b466de-54b7-42a2-8dd6-7b7ffbb51b9a", + "x-ms-client-request-id": "52f0f291cdd2e7a47b5b055f1d457c9e", + "x-ms-correlation-request-id": "c591ca3c-d926-4c0a-ab13-0fa1e818141c", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "3095c530-0aaa-4727-8c22-ad7817e2c7b8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032752Z:c591ca3c-d926-4c0a-ab13-0fa1e818141c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172803-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "423a2df608d4afb7d1aecfeff8a4e339", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f8dfa77-838b-4c3c-94ca-17c7821530e5", + "x-ms-client-request-id": "423a2df608d4afb7d1aecfeff8a4e339", + "x-ms-correlation-request-id": "82e2df3f-c953-4fcf-95e5-cc592319474d", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "749371b9-854d-4ced-8710-4b69d34df502", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032753Z:82e2df3f-c953-4fcf-95e5-cc592319474d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172804-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6adbb2355437dcb1db828cafa91ab701", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bd5516d-ef5c-458b-914e-b7b1ef656958", + "x-ms-client-request-id": "6adbb2355437dcb1db828cafa91ab701", + "x-ms-correlation-request-id": "9b8723f4-fa4c-4b7b-bc62-4bd9230e5f0d", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "45453bad-9d7c-43e5-ad10-d2fc1bc83d86", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032755Z:9b8723f4-fa4c-4b7b-bc62-4bd9230e5f0d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172805-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33fdd9793692884e3b408024feb5eed6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "19b599a5-7a0f-4a48-832b-7c47ad2d21da", + "x-ms-client-request-id": "33fdd9793692884e3b408024feb5eed6", + "x-ms-correlation-request-id": "d846cc6b-3d61-49e2-b2e0-df6a5fc3a941", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "e83104df-b1c5-4122-b5fa-7b49657302a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032756Z:d846cc6b-3d61-49e2-b2e0-df6a5fc3a941" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172806-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b29cb78116aa1677b5d67517c0706b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca7190b9-f04a-4521-90da-f729ea664906", + "x-ms-client-request-id": "6b29cb78116aa1677b5d67517c0706b7", + "x-ms-correlation-request-id": "1938b05a-b7d7-41d8-a4fa-184da9c1fd74", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "f261f67d-8c42-41be-9fba-2197a3dc6fdc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032757Z:1938b05a-b7d7-41d8-a4fa-184da9c1fd74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172807-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f76cef6afa6ffa663522ff6d38dde26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:27:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f35543a-15a6-4e6d-ac02-4265efca65bb", + "x-ms-client-request-id": "1f76cef6afa6ffa663522ff6d38dde26", + "x-ms-correlation-request-id": "46b538e2-f935-43e9-b01f-8f389412ef1c", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "3d534ce1-942b-40b3-9a14-aa64d83b8def", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032759Z:46b538e2-f935-43e9-b01f-8f389412ef1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172808-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd37b5934cf06897715bb835cffc0c34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71487922-c637-48f0-b32c-bb5e5f8c8494", + "x-ms-client-request-id": "dd37b5934cf06897715bb835cffc0c34", + "x-ms-correlation-request-id": "7e8a55ba-7534-4c03-a94f-0413f2cb3399", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "cc142a57-6e3d-4493-8232-e810285ca06b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032801Z:7e8a55ba-7534-4c03-a94f-0413f2cb3399" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172809-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f2ec939cf3fc830242a0717e170ceee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6321935f-1814-4af8-8d67-9aaabb2bab59", + "x-ms-client-request-id": "2f2ec939cf3fc830242a0717e170ceee", + "x-ms-correlation-request-id": "123ed55f-2fdf-474d-9c9b-8fc9924ab6ac", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "8bfbe9f4-4c51-4148-8eb4-525bb42502c5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032802Z:123ed55f-2fdf-474d-9c9b-8fc9924ab6ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717280a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7bd407e29cfaac7360dae4bf6713067", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39f8b5db-c790-417f-b66b-9b2ef823a339", + "x-ms-client-request-id": "c7bd407e29cfaac7360dae4bf6713067", + "x-ms-correlation-request-id": "e21defd7-f268-487d-8d2f-5c79e5361e3d", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "187330f9-69b4-4276-81a8-044969547490", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032803Z:e21defd7-f268-487d-8d2f-5c79e5361e3d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717280b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0abcfb45ae5fc4e7856eb8c5447f8600", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "420b28a7-f500-40bc-8e01-f92c327463c3", + "x-ms-client-request-id": "0abcfb45ae5fc4e7856eb8c5447f8600", + "x-ms-correlation-request-id": "1a7d9a1e-4365-40ad-a785-fdedf0c2972d", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "dc84cc68-70b3-444a-bf44-2acbcc4f26ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032805Z:1a7d9a1e-4365-40ad-a785-fdedf0c2972d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717280c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8eb6ca8d453e10640183f83121e4d1b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee53ba20-d47a-4f42-aa7d-bf33afc9a675", + "x-ms-client-request-id": "8eb6ca8d453e10640183f83121e4d1b3", + "x-ms-correlation-request-id": "4849663b-61f0-494d-ac50-d50c579fc947", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "0314d19f-c2e5-4c25-8429-4bef0cf697b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032806Z:4849663b-61f0-494d-ac50-d50c579fc947" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717280d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6d2a0fac3b4cf8e59f94161700165b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a941bd98-64ea-4444-966c-068939cd72f0", + "x-ms-client-request-id": "e6d2a0fac3b4cf8e59f94161700165b7", + "x-ms-correlation-request-id": "a9309d44-b180-4af0-a600-1c13b4408eb9", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "f84a6693-69ce-43b0-a801-4b915df01d4e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032807Z:a9309d44-b180-4af0-a600-1c13b4408eb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717280e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cbead87a1ba002896ab08dbb5b6a3a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6800d1e7-5396-4e42-81df-c3916c2ef523", + "x-ms-client-request-id": "2cbead87a1ba002896ab08dbb5b6a3a0", + "x-ms-correlation-request-id": "bd055c21-d47c-4f90-b62b-6471afae23fb", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "72c7ee84-3b24-431e-90a9-d4b0a44c85b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032809Z:bd055c21-d47c-4f90-b62b-6471afae23fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717280f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a4cb049c9fadc94c3be634450302a000", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43ac690b-345b-4b8e-9464-5bfb89d1e93e", + "x-ms-client-request-id": "a4cb049c9fadc94c3be634450302a000", + "x-ms-correlation-request-id": "825b8840-23f5-4c9b-bfff-986b2a39936b", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "a68c3e48-f68e-46ac-bc42-dfd9208c64df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032810Z:825b8840-23f5-4c9b-bfff-986b2a39936b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172810-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73a9411ea52658f878d14f08bbb31aa3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f5527c5-92c2-47dc-b6b7-2b52ccfc8842", + "x-ms-client-request-id": "73a9411ea52658f878d14f08bbb31aa3", + "x-ms-correlation-request-id": "e494c1cd-a82b-4379-9285-b047e7cd3f54", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "c25da734-997f-4ec8-aebf-0fef645f6b71", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032811Z:e494c1cd-a82b-4379-9285-b047e7cd3f54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172811-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6bc4a155c036e70a60f4f0d46de2fd93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ab9d4b31-1032-4f77-bf26-e22efb7686ea", + "x-ms-client-request-id": "6bc4a155c036e70a60f4f0d46de2fd93", + "x-ms-correlation-request-id": "0a429210-b37d-4646-80f0-0e6128a492d3", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "2b63b968-be93-486f-9c38-3b491062f4a4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032813Z:0a429210-b37d-4646-80f0-0e6128a492d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172812-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74bc080b300cf67a0b722cdc50440e88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fba409c-a9ed-401e-9a50-f7b01d947551", + "x-ms-client-request-id": "74bc080b300cf67a0b722cdc50440e88", + "x-ms-correlation-request-id": "f8ae26d0-9c7e-4b91-8c42-94119f8738f5", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "21c94204-6532-4710-83bf-6203064f3021", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032814Z:f8ae26d0-9c7e-4b91-8c42-94119f8738f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172813-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61ef91cc343d5dca37c21231b424eb95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "adf4b74f-2ad0-4f85-b966-361613d33ec2", + "x-ms-client-request-id": "61ef91cc343d5dca37c21231b424eb95", + "x-ms-correlation-request-id": "88af43a7-acc5-4c5d-b139-3d44e679a725", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "43026cdf-e740-4a50-b61f-5d2d57bf8ec9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032815Z:88af43a7-acc5-4c5d-b139-3d44e679a725" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172814-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b3fcbbd3a5f6259727ce5fc3942d971c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b56f4285-1076-4fab-be82-dc5735eafb3a", + "x-ms-client-request-id": "b3fcbbd3a5f6259727ce5fc3942d971c", + "x-ms-correlation-request-id": "a25f6195-dbd1-4cb7-af2a-3a88c2c3b7d0", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "94c25f0c-40d9-41bb-8bd0-eddf0cf795f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032817Z:a25f6195-dbd1-4cb7-af2a-3a88c2c3b7d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172815-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db0768e69bf3d7553d5e3d491d4842e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b45f5be-317a-4c86-97ec-83ba5d0e93d3", + "x-ms-client-request-id": "db0768e69bf3d7553d5e3d491d4842e7", + "x-ms-correlation-request-id": "17b80317-7c22-451d-a010-c32aaa501f19", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "18838ad9-91a7-4111-8f58-25a47d5cdd5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032818Z:17b80317-7c22-451d-a010-c32aaa501f19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172816-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "940896875a482791fac93a6fd407c909", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4646039-9e61-4161-b1af-72093bec3bc7", + "x-ms-client-request-id": "940896875a482791fac93a6fd407c909", + "x-ms-correlation-request-id": "d991105c-2b00-4d6e-a74b-9e10b843f519", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "bb2174f5-3fd4-480f-b438-a409857eb18e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032819Z:d991105c-2b00-4d6e-a74b-9e10b843f519" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172817-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c4bf62b0f1d37a266257597674d08df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73da8bcc-b83f-473f-ba28-5865b06d2993", + "x-ms-client-request-id": "4c4bf62b0f1d37a266257597674d08df", + "x-ms-correlation-request-id": "511c77dd-0d6b-4c5f-ab3b-e662c1253f71", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "1c090e1f-8179-4248-8a1d-6602d54ec3c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032821Z:511c77dd-0d6b-4c5f-ab3b-e662c1253f71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172818-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd3b788c03258bd4d7e0e12960e50236", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "93d7c4d4-03fe-4a92-a64a-1e8d533c89ab", + "x-ms-client-request-id": "fd3b788c03258bd4d7e0e12960e50236", + "x-ms-correlation-request-id": "81376f2a-66f6-450e-a6cb-e9f368b81f69", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "5c3a5076-9595-42df-bb24-d096c07c1c22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032822Z:81376f2a-66f6-450e-a6cb-e9f368b81f69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172819-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "271e3495f5fc78caf4d02d23e5f9bfac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7fddd8a2-51e9-4e87-8d40-07feb9b58c62", + "x-ms-client-request-id": "271e3495f5fc78caf4d02d23e5f9bfac", + "x-ms-correlation-request-id": "bac464f9-9b8f-45d6-ac1e-a4138224b91e", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "81c28e07-639d-4ef0-83ac-3dfddf47e2ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032823Z:bac464f9-9b8f-45d6-ac1e-a4138224b91e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717281a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5be35bc1cbcb28e322bf753c2d78d680", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fed09134-f86e-462a-8252-4c3eb04cc6bb", + "x-ms-client-request-id": "5be35bc1cbcb28e322bf753c2d78d680", + "x-ms-correlation-request-id": "2332aca9-e03e-4c0d-87dd-9bded8cf9d33", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "f73a8381-c805-4d4a-bde9-0430dae06176", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032825Z:2332aca9-e03e-4c0d-87dd-9bded8cf9d33" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717281b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33023f22e12f96e2aec30954d5b0a6dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "548b1e3b-0ae3-40e7-b9a1-68116bf8c511", + "x-ms-client-request-id": "33023f22e12f96e2aec30954d5b0a6dd", + "x-ms-correlation-request-id": "e818921e-9f57-4e94-9ec4-63fd4b336e4f", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "8e45f545-f949-49b1-80c5-62b1c6c05de6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032826Z:e818921e-9f57-4e94-9ec4-63fd4b336e4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717281c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05683521a702c96a50f6043c808d4a7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e092f29-57fb-4da2-800b-c7dcd403e550", + "x-ms-client-request-id": "05683521a702c96a50f6043c808d4a7c", + "x-ms-correlation-request-id": "56437400-f655-4b7d-b747-5c2c3513ed16", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "628ba60e-6c30-4163-b394-3710c0e5ec50", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032827Z:56437400-f655-4b7d-b747-5c2c3513ed16" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717281d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a501adfa8bf6df7d794dac08c28f5271", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74548982-8fd5-4346-87b2-70ce3be9a55b", + "x-ms-client-request-id": "a501adfa8bf6df7d794dac08c28f5271", + "x-ms-correlation-request-id": "7c2a5c5a-729e-4246-9e64-20d6f0e3530c", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "b32e6e98-06e2-44dc-b4f7-00ecf8ed4ee0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032829Z:7c2a5c5a-729e-4246-9e64-20d6f0e3530c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717281e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f81b9719d10f7a7ed538e338dca51621", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eaa50eb9-df6b-40c1-8f01-6e1b0f9f9dc0", + "x-ms-client-request-id": "f81b9719d10f7a7ed538e338dca51621", + "x-ms-correlation-request-id": "f2334806-05bc-4a0f-bac0-51e844874710", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "b2afec5c-d11d-4ced-af91-b0a86172702d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032830Z:f2334806-05bc-4a0f-bac0-51e844874710" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717281f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "275a8c7900af95e6b7888bb4fa6206c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bdf1e1e-4d6a-4cd2-9a57-a814aff2e314", + "x-ms-client-request-id": "275a8c7900af95e6b7888bb4fa6206c0", + "x-ms-correlation-request-id": "2c1eabb7-4cc6-4dad-8ecf-dfc0d12bf129", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "48f8af05-e0f7-4ea8-a16b-b978c38cc498", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032831Z:2c1eabb7-4cc6-4dad-8ecf-dfc0d12bf129" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172820-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e82393a35172286c2f86d0bda74402d3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "327a201d-a424-4b77-bd5f-7807687ec14c", + "x-ms-client-request-id": "e82393a35172286c2f86d0bda74402d3", + "x-ms-correlation-request-id": "2107320c-422b-470d-a82e-8f1cea6a2bc0", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "323c6d97-4b2a-4810-a460-57999f2da8d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032833Z:2107320c-422b-470d-a82e-8f1cea6a2bc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172821-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "358f8b372b3518c1b185408645c98073", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6414b1f5-0b14-458e-ae83-391eb108b7ac", + "x-ms-client-request-id": "358f8b372b3518c1b185408645c98073", + "x-ms-correlation-request-id": "84b632cc-501d-4cbc-861d-c5d0308f39e4", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "b67fefc1-06cf-4708-9477-20c0998174b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032834Z:84b632cc-501d-4cbc-861d-c5d0308f39e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172822-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "499522312d8227ae2031f7293028ee72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9566c110-9876-49ec-97b1-464b0af83d84", + "x-ms-client-request-id": "499522312d8227ae2031f7293028ee72", + "x-ms-correlation-request-id": "369b8ea2-d6c3-40dc-89ed-ae34cea91e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "1e55a247-55c6-4e1b-b00e-29fb28c243f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032835Z:369b8ea2-d6c3-40dc-89ed-ae34cea91e9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172823-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e7db885d1d2788bd10a37ed11e5e266", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8744c46d-625a-4840-ba51-155894ec2302", + "x-ms-client-request-id": "6e7db885d1d2788bd10a37ed11e5e266", + "x-ms-correlation-request-id": "b81e2ea1-2562-4553-affc-6d80a9cb423f", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "3b4f093a-9156-4e85-869c-21088cbccc67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032837Z:b81e2ea1-2562-4553-affc-6d80a9cb423f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172824-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "858b5d05b9af0951dd6815033398e888", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4daa21be-58e9-4653-88aa-5c0d21c6c2e3", + "x-ms-client-request-id": "858b5d05b9af0951dd6815033398e888", + "x-ms-correlation-request-id": "a53f7b27-3a05-4bde-a53f-46215032ae7c", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "e26ae383-f924-4a5e-be43-a5a79cfb01f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032838Z:a53f7b27-3a05-4bde-a53f-46215032ae7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172825-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d01ce97124b60a0971d7778f6c1163b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6904d94-a51a-4c53-8d42-59ed39b91f16", + "x-ms-client-request-id": "8d01ce97124b60a0971d7778f6c1163b", + "x-ms-correlation-request-id": "52b8bf8a-aef1-4cb6-8ff3-6221cc8a596c", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "cefac62b-8321-4c0c-83b5-88081277f010", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032839Z:52b8bf8a-aef1-4cb6-8ff3-6221cc8a596c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172826-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d323914e699cccc36774906abb874439", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "711926c5-ecc1-4504-99ac-3a85853f6a7e", + "x-ms-client-request-id": "d323914e699cccc36774906abb874439", + "x-ms-correlation-request-id": "56ddd8c1-110b-46a8-ba98-304cccb7c2af", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "fa6ab918-4065-455b-bc2d-25b40f545f23", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032841Z:56ddd8c1-110b-46a8-ba98-304cccb7c2af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172827-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4256ae2155e4f31abc2bed9241d9121c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05eb6fc6-2363-4ab5-858e-16cd21b90a7f", + "x-ms-client-request-id": "4256ae2155e4f31abc2bed9241d9121c", + "x-ms-correlation-request-id": "99c9ca8f-c059-43b7-8c30-b19b9c48431b", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "8c817d5e-4cf7-4822-a3b0-6b589efe04ad", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032842Z:99c9ca8f-c059-43b7-8c30-b19b9c48431b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172828-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1b4da5115742eeb0b3426d68135a50f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23fc0ebd-6d75-4abd-ae25-8d511b2ae625", + "x-ms-client-request-id": "a1b4da5115742eeb0b3426d68135a50f", + "x-ms-correlation-request-id": "d3fc7a84-d01c-4e1b-85c8-faff8021519c", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "e8392bb9-6cab-4a10-a4ee-60643606c9b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032843Z:d3fc7a84-d01c-4e1b-85c8-faff8021519c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172829-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47563ed8d36bf956763016717b308a8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2e742fa-b196-4135-831a-bfcc635d7f26", + "x-ms-client-request-id": "47563ed8d36bf956763016717b308a8e", + "x-ms-correlation-request-id": "9a4e4ed6-9c0b-4797-9288-12708e34a014", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "7b31dabb-5e56-4f98-8e55-d03b439085f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032845Z:9a4e4ed6-9c0b-4797-9288-12708e34a014" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717282a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1187461a2d20cc5c32837af2f447287", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "896233e3-998a-43e7-9931-5507dd6b944c", + "x-ms-client-request-id": "e1187461a2d20cc5c32837af2f447287", + "x-ms-correlation-request-id": "7c041605-640c-4a22-9c0e-f93f37922962", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "5d38e5a9-97af-41cc-81bc-e5a4917b9158", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032846Z:7c041605-640c-4a22-9c0e-f93f37922962" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717282b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03b9dd86ca827eb183bb2b43fe79b2da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "819dbadf-90c9-4166-a948-16d783e92a85", + "x-ms-client-request-id": "03b9dd86ca827eb183bb2b43fe79b2da", + "x-ms-correlation-request-id": "5512af8e-b608-492a-a392-f3a271a17a64", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "a722662c-2d0b-4655-be8d-185189a8e85b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032847Z:5512af8e-b608-492a-a392-f3a271a17a64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717282c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c7597a9c31c363c784984439ba6c932", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc64b855-5112-42b0-9c93-41c87c091e0b", + "x-ms-client-request-id": "0c7597a9c31c363c784984439ba6c932", + "x-ms-correlation-request-id": "c790acf1-1dfb-471d-8385-4feb70714eee", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "900fc0d9-6e8e-45ea-add4-43324ab1710c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032849Z:c790acf1-1dfb-471d-8385-4feb70714eee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717282d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9eeb8fbd8777960bc39a5d1777810d49", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81fb6e16-f9fe-4db4-b0bd-327d2c1cbf59", + "x-ms-client-request-id": "9eeb8fbd8777960bc39a5d1777810d49", + "x-ms-correlation-request-id": "4d4cab34-d0b1-47e8-801f-cc51375111c1", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "f8297467-14f5-46c3-8560-f06f0585ce7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032850Z:4d4cab34-d0b1-47e8-801f-cc51375111c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717282e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "97065d7566cec26aa0838a38466ee2dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce10f317-4400-4d94-9387-2ae787255caf", + "x-ms-client-request-id": "97065d7566cec26aa0838a38466ee2dc", + "x-ms-correlation-request-id": "b0b6ff3f-3735-453c-9f0a-6b8d25e9055a", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "c9735952-1b7d-4d05-b419-53d896071989", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032851Z:b0b6ff3f-3735-453c-9f0a-6b8d25e9055a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717282f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f85f8f1148d21638cde48816525bff7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d855f5cb-cfe8-41df-b720-fa1f96ecf602", + "x-ms-client-request-id": "6f85f8f1148d21638cde48816525bff7", + "x-ms-correlation-request-id": "1fb66e4a-b193-47dc-8854-04aa3bdb6fc7", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "73e47a5c-3d2d-4531-a894-5700cea02c60", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032853Z:1fb66e4a-b193-47dc-8854-04aa3bdb6fc7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172830-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ecd3a3c31a057632429fdf3fdd25055", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0cded06-bb76-4f3a-82f9-be1a34232828", + "x-ms-client-request-id": "3ecd3a3c31a057632429fdf3fdd25055", + "x-ms-correlation-request-id": "84584553-2944-4c1e-975a-9eb2511effbd", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "de0ae524-27ee-4a83-8cd7-3a91aafc2e8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032854Z:84584553-2944-4c1e-975a-9eb2511effbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172831-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e2581b79dfb61bbf9e40bf01de85d7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7544838c-f792-4a92-a8d4-da03681a5266", + "x-ms-client-request-id": "7e2581b79dfb61bbf9e40bf01de85d7b", + "x-ms-correlation-request-id": "af505d68-1fec-4a70-a9da-6ef1d8e2d1e2", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "449024e6-79eb-470a-b553-5447b2d0b395", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032855Z:af505d68-1fec-4a70-a9da-6ef1d8e2d1e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172832-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0bfc93c4a3a0bf3c952e4b64176f24b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e617c471-5fca-4f82-918b-3cb5faaea196", + "x-ms-client-request-id": "0bfc93c4a3a0bf3c952e4b64176f24b9", + "x-ms-correlation-request-id": "af0db06f-bac0-42c7-8048-706807691f37", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "69d5ec87-43c0-4e9c-9ecf-0e4f3a26e318", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032857Z:af0db06f-bac0-42c7-8048-706807691f37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172833-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4caf28e40009efb7f6c45bc26733a3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99a776ee-5a92-4216-a72c-45db0e14ccaf", + "x-ms-client-request-id": "e4caf28e40009efb7f6c45bc26733a3b", + "x-ms-correlation-request-id": "1f4f0588-5174-475f-b9c3-6088301503bb", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "481568e6-2c66-4abb-82af-3f40c3d80027", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032858Z:1f4f0588-5174-475f-b9c3-6088301503bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172834-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a2f82cc44d514b54565e8cd52564989", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:28:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb358734-f36b-40c3-b226-0ff98ffb20bc", + "x-ms-client-request-id": "6a2f82cc44d514b54565e8cd52564989", + "x-ms-correlation-request-id": "44a2ecab-3df3-4bb4-8081-2deffb8d848c", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "ab1dd107-a0e8-49b0-893f-28bbb9f99df2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032859Z:44a2ecab-3df3-4bb4-8081-2deffb8d848c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172835-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a6251bf781e837b975e8c345e7f9922", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5c11193-784b-4dfb-bf08-f9470508d391", + "x-ms-client-request-id": "2a6251bf781e837b975e8c345e7f9922", + "x-ms-correlation-request-id": "4b168980-ac27-4401-865a-6d3d6a0d0379", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "f87f5664-0d85-4d1a-bd9d-a2a41e5f12e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032901Z:4b168980-ac27-4401-865a-6d3d6a0d0379" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172836-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "959810f3ba4049e43db69f9a582e4c28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "481a29db-f423-4c6a-898c-948e87bec538", + "x-ms-client-request-id": "959810f3ba4049e43db69f9a582e4c28", + "x-ms-correlation-request-id": "1001d92f-7754-4ccd-9953-9d3cc7639342", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "81832315-ef4d-4424-aa80-a02a9d4ac5d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032902Z:1001d92f-7754-4ccd-9953-9d3cc7639342" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172837-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5fcbb221010531c06abd377b881b5c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf03a455-7b19-4d96-af20-4475e31d58a1", + "x-ms-client-request-id": "d5fcbb221010531c06abd377b881b5c5", + "x-ms-correlation-request-id": "e82a156b-5da8-4b34-95a9-9b811d8dd86a", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "f10a31a8-df0e-405a-a81f-c6539c640df8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032903Z:e82a156b-5da8-4b34-95a9-9b811d8dd86a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172838-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41d9c6ccb4be05496d19ec68d9e02b68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83641d98-d4cf-4e1b-a601-7ab8cdbe5e23", + "x-ms-client-request-id": "41d9c6ccb4be05496d19ec68d9e02b68", + "x-ms-correlation-request-id": "afd54608-92f1-445b-ac9b-5e0edce3bfbe", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "8628cd2d-e6ec-4689-b4d5-a08262694e57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032905Z:afd54608-92f1-445b-ac9b-5e0edce3bfbe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172839-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a3116312c383e311f4458e95e76d90bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0885d31b-f4af-486c-a60a-4f9ff255694c", + "x-ms-client-request-id": "a3116312c383e311f4458e95e76d90bc", + "x-ms-correlation-request-id": "9231348a-9a90-4d2c-a03a-e10a13fcdc00", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "64af03d2-70f6-46dc-bc95-b682aa878f51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032906Z:9231348a-9a90-4d2c-a03a-e10a13fcdc00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717283a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91ceda000a546d6a72f768f723b37926", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "534ba43b-df81-4138-bced-87ac773184d7", + "x-ms-client-request-id": "91ceda000a546d6a72f768f723b37926", + "x-ms-correlation-request-id": "9714bf0f-e8b9-4ddc-a043-24384be71ed6", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "ab69d8c3-1469-4ba5-9f94-6af7fbc23cf6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032907Z:9714bf0f-e8b9-4ddc-a043-24384be71ed6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717283b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55646a80126f0841b4f64d7826b31d00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b6ec1b9-def7-4a33-8171-a8c354edfd6f", + "x-ms-client-request-id": "55646a80126f0841b4f64d7826b31d00", + "x-ms-correlation-request-id": "29a623db-b42d-432c-a7f4-51e954bb0e95", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "bcda6a17-2d84-44a7-ad05-ad31126a45d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032909Z:29a623db-b42d-432c-a7f4-51e954bb0e95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717283c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff682f8899120814f8a3308b5b1abf40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e0c6083-90f4-432b-bcd0-d8c8648e6d6b", + "x-ms-client-request-id": "ff682f8899120814f8a3308b5b1abf40", + "x-ms-correlation-request-id": "03b6727a-8a86-4e96-85bb-478ce455d884", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "afb68357-4333-4397-bc90-3e7613f530a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032910Z:03b6727a-8a86-4e96-85bb-478ce455d884" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717283d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d1567cb3b08ed4c98c6dc5ebdf146be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06e2812a-fb31-4551-95f8-e9e28665adff", + "x-ms-client-request-id": "7d1567cb3b08ed4c98c6dc5ebdf146be", + "x-ms-correlation-request-id": "14c70b5a-4ca9-4cba-b28d-9df48daa6d72", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "6d59940c-52b7-44e1-bd65-220c6558ecc1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032911Z:14c70b5a-4ca9-4cba-b28d-9df48daa6d72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717283e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f36f67d97a4be614565c5ccbe1b5ac9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ecdc3528-dbb2-449f-92f1-54c079fb2cee", + "x-ms-client-request-id": "f36f67d97a4be614565c5ccbe1b5ac9a", + "x-ms-correlation-request-id": "ecf92bb8-e39b-4a0a-a74f-986c21c96f79", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "a7f7efb0-f5db-4367-97ab-27af71a2003b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032913Z:ecf92bb8-e39b-4a0a-a74f-986c21c96f79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717283f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bfad0c36a09e4cf7e27a664bbdb64b06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9ce1ccd-f5d6-42e2-98f2-2db826bda925", + "x-ms-client-request-id": "bfad0c36a09e4cf7e27a664bbdb64b06", + "x-ms-correlation-request-id": "0bb9eb74-ed46-4453-b745-038ea084ea6f", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "9c91c30e-02d5-43cf-9d5d-37e7d0a1aafc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032914Z:0bb9eb74-ed46-4453-b745-038ea084ea6f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172840-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3b2715ccbaa50f5532e27abde810be2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dae918cc-a500-4f41-bbca-7deb0496fd7c", + "x-ms-client-request-id": "f3b2715ccbaa50f5532e27abde810be2", + "x-ms-correlation-request-id": "7f893b7f-35b8-4510-9ad8-0e65cb793e2f", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "ed8741d3-6a65-42fc-812d-bc00ca5a6883", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032915Z:7f893b7f-35b8-4510-9ad8-0e65cb793e2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172841-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b02741198743391f702210d013c8289f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d661234-a64d-4954-ad12-f747e0c9a29c", + "x-ms-client-request-id": "b02741198743391f702210d013c8289f", + "x-ms-correlation-request-id": "41740762-8070-42fd-b7f5-d4ee661fe428", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "909ee0ff-e781-41c2-990e-df646aa64249", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032917Z:41740762-8070-42fd-b7f5-d4ee661fe428" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172842-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f6f5511b8036af0175d6b6f794b6e61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15a9f3ef-c328-4b8b-90e1-567f0e5655e4", + "x-ms-client-request-id": "6f6f5511b8036af0175d6b6f794b6e61", + "x-ms-correlation-request-id": "15989c19-5b78-4966-9643-5965bd52d349", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "13d0fd35-c392-4d46-8015-b794003b7c0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032918Z:15989c19-5b78-4966-9643-5965bd52d349" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172843-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b32846e9a8ed5c352798388bb243c8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df565aef-3660-466f-a8ce-93d90afe2686", + "x-ms-client-request-id": "7b32846e9a8ed5c352798388bb243c8a", + "x-ms-correlation-request-id": "542349a4-a838-4a8b-a889-6f092c173b9c", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "caf5c139-d092-483f-ab9d-abc351e6dbaf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032919Z:542349a4-a838-4a8b-a889-6f092c173b9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172844-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "899a87069b1161de51bc98e61bb0bf24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "afb1227a-cef2-4d4a-96b1-03e72c796f42", + "x-ms-client-request-id": "899a87069b1161de51bc98e61bb0bf24", + "x-ms-correlation-request-id": "393f6942-36a5-4046-90a0-d6127a7d9a50", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "788102db-981a-4e30-b684-4a450c6bd0e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032921Z:393f6942-36a5-4046-90a0-d6127a7d9a50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172845-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f62afb4ad96761192991d8a3467aff3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1bd1c57f-c513-4987-bc0f-364095355153", + "x-ms-client-request-id": "8f62afb4ad96761192991d8a3467aff3", + "x-ms-correlation-request-id": "dd597e69-5fc8-4898-9213-952ddd8aab3e", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "6a823f37-4f33-47b7-95c4-20be2c1339a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032922Z:dd597e69-5fc8-4898-9213-952ddd8aab3e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172846-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f269e020e5b1d24fa5d029d102dcb9a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89f2cad6-e68f-40c1-8457-0427c72a4fdd", + "x-ms-client-request-id": "f269e020e5b1d24fa5d029d102dcb9a1", + "x-ms-correlation-request-id": "d8973657-b61a-4207-af98-9f025e9c9400", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "00ddde8f-bdb9-479d-ae95-2914eeb84ac4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032923Z:d8973657-b61a-4207-af98-9f025e9c9400" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172847-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0cd45fb9acc258f47523f6787e532dea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "394d0512-c3b1-4bea-8864-5e42481ccc94", + "x-ms-client-request-id": "0cd45fb9acc258f47523f6787e532dea", + "x-ms-correlation-request-id": "5d26cfeb-5133-4396-99cb-7fe1bc63ca67", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "1f658868-381d-4a1d-9385-db340e99466f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032925Z:5d26cfeb-5133-4396-99cb-7fe1bc63ca67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172848-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ac5a50dcc46ce725f8fe9c5833f73b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8c5601a6-03a6-4d77-8026-47efc8360d55", + "x-ms-client-request-id": "3ac5a50dcc46ce725f8fe9c5833f73b5", + "x-ms-correlation-request-id": "9078fe28-3b0e-492a-abd0-d59734fd67df", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "85bb54ed-75c8-4638-b303-f220162299bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032926Z:9078fe28-3b0e-492a-abd0-d59734fd67df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172849-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4d17be0a3937430ec117c8deed75451", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e683ec0-946e-435b-b5ba-61ea96d41e45", + "x-ms-client-request-id": "d4d17be0a3937430ec117c8deed75451", + "x-ms-correlation-request-id": "c2b92468-3b9b-4fb7-9177-5ebb13e43a36", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "348d2ce0-b0d0-462a-8037-6234a241bc31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032927Z:c2b92468-3b9b-4fb7-9177-5ebb13e43a36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717284a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5dc43fa37e16ec5bed05ac32c32ed435", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e9815b1-0c6b-479a-b1c9-6e502ddb5fb0", + "x-ms-client-request-id": "5dc43fa37e16ec5bed05ac32c32ed435", + "x-ms-correlation-request-id": "7c594e39-7fe5-45b3-931f-caead4711961", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "94a8f973-a386-4729-a805-ae0c0aa27c98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032929Z:7c594e39-7fe5-45b3-931f-caead4711961" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717284b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "029740af5882695674514e354fe4e087", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79f6a38a-e549-4945-84b3-d1f281edf5de", + "x-ms-client-request-id": "029740af5882695674514e354fe4e087", + "x-ms-correlation-request-id": "5be6ce0d-4e99-4cbf-8d35-18aa6b05c8fd", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "0de19c33-3945-424c-ac1e-823f1c95a217", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032930Z:5be6ce0d-4e99-4cbf-8d35-18aa6b05c8fd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717284c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4422973b167b629f20e4e78df6fdb1bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "90f890b2-3b9c-46d5-908a-973e25c4a5d2", + "x-ms-client-request-id": "4422973b167b629f20e4e78df6fdb1bd", + "x-ms-correlation-request-id": "3d0cea37-2ee1-43c9-b1d0-438416495231", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "46f4c90a-60a8-4ac8-ae1c-675b0c26d925", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032931Z:3d0cea37-2ee1-43c9-b1d0-438416495231" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717284d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aedd473c52404bcfe85ae9c52f269c08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55daddc4-4138-46d4-b854-4603ceff3f77", + "x-ms-client-request-id": "aedd473c52404bcfe85ae9c52f269c08", + "x-ms-correlation-request-id": "11497716-c556-4837-bc5a-b209aa7b95ec", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "a11ebad5-9d0d-4f0e-b25f-a1e568025466", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032933Z:11497716-c556-4837-bc5a-b209aa7b95ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717284e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bf72525900c99baa135e19e70c97376", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4de9dc7e-07a3-4201-aae0-81687a6d705e", + "x-ms-client-request-id": "2bf72525900c99baa135e19e70c97376", + "x-ms-correlation-request-id": "d7ed5b19-b18f-49ae-9bb3-2166b556001b", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "b8aaedc5-af47-4c5a-a8e4-f9be08ae9f9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032934Z:d7ed5b19-b18f-49ae-9bb3-2166b556001b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717284f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08f991a03207e847c8d75b202dd932fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "41180939-5465-494b-b80e-2177c20c6ed6", + "x-ms-client-request-id": "08f991a03207e847c8d75b202dd932fa", + "x-ms-correlation-request-id": "a0be8d98-4e3d-420b-b3cf-3f9fa8539123", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "5162588d-a838-44f3-9a91-bba670283f1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032935Z:a0be8d98-4e3d-420b-b3cf-3f9fa8539123" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172850-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d068df478506abb08c440c0a7031da1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f2afeb3-5295-4803-aa5f-cf274406f4cb", + "x-ms-client-request-id": "d068df478506abb08c440c0a7031da1f", + "x-ms-correlation-request-id": "53a73ecc-7430-4a65-bb40-077cf645e65a", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "4cf742d1-d3b2-4456-a499-cbf0b36a9186", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032937Z:53a73ecc-7430-4a65-bb40-077cf645e65a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172851-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e2472e6942cf200de0f623535996cc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dee7d92c-667d-48a1-9c91-f8716ba11d9f", + "x-ms-client-request-id": "9e2472e6942cf200de0f623535996cc7", + "x-ms-correlation-request-id": "5ee34b8d-263d-45dc-ac5d-d1085f89c1b0", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "4ca057a8-9981-49b5-827f-1441c1eb4667", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032938Z:5ee34b8d-263d-45dc-ac5d-d1085f89c1b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172852-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9056e603a2601a70e04d7cc3253c7797", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b99842db-c915-4989-899f-4d67e12e80de", + "x-ms-client-request-id": "9056e603a2601a70e04d7cc3253c7797", + "x-ms-correlation-request-id": "b6670ca9-e5d1-4a06-99ca-2f9ce92d9a87", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "7cd2f73f-fecc-4dfc-888a-4172535c09de", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032939Z:b6670ca9-e5d1-4a06-99ca-2f9ce92d9a87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172853-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba393bfc93b4b3cdde75f2f6237b75f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc60dd3e-a24b-42d4-81b2-78390e7cbc82", + "x-ms-client-request-id": "ba393bfc93b4b3cdde75f2f6237b75f2", + "x-ms-correlation-request-id": "6e28effd-9b90-4edb-9e89-4d9ed155d2b2", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "fe903207-13e8-4a9e-87b1-a4ece215537d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032941Z:6e28effd-9b90-4edb-9e89-4d9ed155d2b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172854-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a0744d749da44be020abede173dcda2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48616512-4cdd-4e1c-91b4-c620101ea5b7", + "x-ms-client-request-id": "8a0744d749da44be020abede173dcda2", + "x-ms-correlation-request-id": "dcf51523-3a50-40f9-a60b-951fa42db5f1", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "4888157d-7d52-4c60-a6fa-436051f3bf69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032942Z:dcf51523-3a50-40f9-a60b-951fa42db5f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172855-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f938cb97b25f6f1219a3b2ebb079f764", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba6cdb70-bccd-457d-baff-65e3fb541863", + "x-ms-client-request-id": "f938cb97b25f6f1219a3b2ebb079f764", + "x-ms-correlation-request-id": "95b024ea-9da2-4564-b9d3-ce2a85a8d5f6", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "3cc504cb-e553-4e99-9bae-f1a3a818de05", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032943Z:95b024ea-9da2-4564-b9d3-ce2a85a8d5f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172856-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0eb89d8ed34b2bd7df5b7aad4ef9ba0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64b6ce51-9384-4fa7-a86a-4608c8f20514", + "x-ms-client-request-id": "e0eb89d8ed34b2bd7df5b7aad4ef9ba0", + "x-ms-correlation-request-id": "ef85e01f-8f55-4db6-87cd-af38beec9fd7", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "5d264c42-eb4c-4d46-b158-c6a09acf0f1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032945Z:ef85e01f-8f55-4db6-87cd-af38beec9fd7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172857-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "585f4fa87c4225923297703697d39389", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "199edd0e-8e20-4de8-a2e2-4014ba90f9ee", + "x-ms-client-request-id": "585f4fa87c4225923297703697d39389", + "x-ms-correlation-request-id": "6753272a-f2b7-490e-a363-dd84378f21f0", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "51a41c55-2c83-4aa6-8d74-d76d8f5083aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032946Z:6753272a-f2b7-490e-a363-dd84378f21f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172858-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e065912ec52aa6e0e857c6afa679b2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66e6bd6d-9860-4e48-876b-27947f95e105", + "x-ms-client-request-id": "8e065912ec52aa6e0e857c6afa679b2a", + "x-ms-correlation-request-id": "235adb67-0a8c-461b-b87d-bb31401e1994", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "2c0bb91e-a9a3-469f-b26c-ba0d3c906d6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032947Z:235adb67-0a8c-461b-b87d-bb31401e1994" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172859-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "614211089f195c22f6c5ae9c7c861ba9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1703c007-c1c9-4238-8147-b53244ced95a", + "x-ms-client-request-id": "614211089f195c22f6c5ae9c7c861ba9", + "x-ms-correlation-request-id": "cc441e2f-74f3-421f-811c-9782d05bc499", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "0eba067f-72b2-4a84-8f99-e99c04f8ba88", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032949Z:cc441e2f-74f3-421f-811c-9782d05bc499" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717285a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a982e620de8bb4ee1b549bcff282aca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6842431-e391-4d83-9805-da4e4349851d", + "x-ms-client-request-id": "7a982e620de8bb4ee1b549bcff282aca", + "x-ms-correlation-request-id": "f6cd789e-9441-4bfb-a8de-56fc02499582", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "2ed5d9c4-62e4-4f36-bdc0-89452d6af3a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032950Z:f6cd789e-9441-4bfb-a8de-56fc02499582" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717285b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "862e46fc3290736f37aa978c3ed12d87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "073b3ca2-a138-4d73-8f75-47466a271b80", + "x-ms-client-request-id": "862e46fc3290736f37aa978c3ed12d87", + "x-ms-correlation-request-id": "a36e0ff2-4f09-4e19-a89b-8c2cc03e2c79", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "05f205a4-886f-49bc-ad71-d027809f4921", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032951Z:a36e0ff2-4f09-4e19-a89b-8c2cc03e2c79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717285c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cc07d36a20cffb41c287806455655cce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cfffeb42-c29d-4638-ad85-3feb9794a703", + "x-ms-client-request-id": "cc07d36a20cffb41c287806455655cce", + "x-ms-correlation-request-id": "361299a9-bede-4a5a-990b-15b9c6c581bf", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "99649ed4-2c55-4157-839e-5351d6dc4b08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032953Z:361299a9-bede-4a5a-990b-15b9c6c581bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717285d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35a0e49a94583018be25433e75c17d0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4e6c1ad-f69a-4b9e-98c2-435240f9017f", + "x-ms-client-request-id": "35a0e49a94583018be25433e75c17d0f", + "x-ms-correlation-request-id": "dbf12b9f-05fe-41dc-8b6e-7d536ffb4454", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "771ee264-61e1-43b5-bdc0-92e02e6fb7fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032954Z:dbf12b9f-05fe-41dc-8b6e-7d536ffb4454" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717285e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c51c2875e20dcfa0532c309b20a1ed1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bbd24826-bd22-4f5d-910a-e8214b375da1", + "x-ms-client-request-id": "2c51c2875e20dcfa0532c309b20a1ed1", + "x-ms-correlation-request-id": "f7a7438a-efad-47a7-b711-52dc4fb04edd", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "29820f1c-9f3f-4b87-a69b-75f5e569eecb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032955Z:f7a7438a-efad-47a7-b711-52dc4fb04edd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717285f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59f2c84df731d62fbad70daadc038501", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "44a9f35b-0e79-4fc0-9788-b1057adcf512", + "x-ms-client-request-id": "59f2c84df731d62fbad70daadc038501", + "x-ms-correlation-request-id": "5248fa03-3672-45b9-822b-b29ee9744289", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "81a0283c-2d5e-4b9e-bdcc-e668499efe93", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032957Z:5248fa03-3672-45b9-822b-b29ee9744289" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172860-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93dd700a30143cade9c43025d00f7eb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c82de7a7-0b8b-4e7d-b428-f9adaf7c878f", + "x-ms-client-request-id": "93dd700a30143cade9c43025d00f7eb3", + "x-ms-correlation-request-id": "8966b28d-6279-48ef-82b5-2758b397c77f", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "c562d819-8766-4cff-a7c7-fe0dabb49f27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032958Z:8966b28d-6279-48ef-82b5-2758b397c77f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172861-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "acf0710723cf8fdd927b71495050ff01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:29:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "592f1a8e-5d33-4848-82de-663ac143eb52", + "x-ms-client-request-id": "acf0710723cf8fdd927b71495050ff01", + "x-ms-correlation-request-id": "bd3debba-73cd-4d96-b34b-76806e9c205b", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "54d54b7f-60c3-4773-b7f9-95ff3363d511", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T032959Z:bd3debba-73cd-4d96-b34b-76806e9c205b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172862-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41ffc2ac8a2d1dbd1bb56f6dc70905ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1447c8a-e22b-453b-9c19-3e0dc658af7e", + "x-ms-client-request-id": "41ffc2ac8a2d1dbd1bb56f6dc70905ab", + "x-ms-correlation-request-id": "b4729244-4a7f-46ff-87b4-cc5005e1940a", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "3fadc025-67ba-4336-8c80-e58b835b7565", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033001Z:b4729244-4a7f-46ff-87b4-cc5005e1940a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172863-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6aa35a59d813e631924d0098bf63eb99", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3baead40-fe41-4078-be5f-aa7d4a03fbb1", + "x-ms-client-request-id": "6aa35a59d813e631924d0098bf63eb99", + "x-ms-correlation-request-id": "d277a1bb-6cce-4d00-9deb-6b57047c08da", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "9921662f-88f9-474b-b2ed-f619fdcb6787", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033002Z:d277a1bb-6cce-4d00-9deb-6b57047c08da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172864-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d782ec43c0f7c86b4d29119b370c889", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "563199a5-e2f9-4b3c-ad3a-76d045e0a8a4", + "x-ms-client-request-id": "0d782ec43c0f7c86b4d29119b370c889", + "x-ms-correlation-request-id": "b3f2b865-9faf-430b-98da-510ef99664eb", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "8db4f086-7a36-401c-8d3d-e17ec7a8c17c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033003Z:b3f2b865-9faf-430b-98da-510ef99664eb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172865-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f6f0c57694acd4ee9119aee08a255eb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c44501e-4882-42ed-a16a-2f1e062d3cff", + "x-ms-client-request-id": "f6f0c57694acd4ee9119aee08a255eb7", + "x-ms-correlation-request-id": "10f16322-8eb8-4c50-ad4a-a6b6672d6380", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "186f4718-01be-4ef7-b46b-45857169545a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033005Z:10f16322-8eb8-4c50-ad4a-a6b6672d6380" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172866-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98a8d6c9f7911c9cd327b64047173222", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dee4d5bb-df05-4c15-a8ec-51425d9305a3", + "x-ms-client-request-id": "98a8d6c9f7911c9cd327b64047173222", + "x-ms-correlation-request-id": "78474517-16ef-4f0c-b340-0621795ec335", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "98b01c59-b54a-43df-97ee-ab95aeeda311", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033006Z:78474517-16ef-4f0c-b340-0621795ec335" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172867-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa217784f57330ec40a47cf68ea5f18f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12cf23fd-3db6-4116-a7bc-2dc039d08e84", + "x-ms-client-request-id": "fa217784f57330ec40a47cf68ea5f18f", + "x-ms-correlation-request-id": "ceab5754-e8f1-478e-9355-076448946fa3", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "7b73f6d9-3863-44bd-8033-9b1720a1c066", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033007Z:ceab5754-e8f1-478e-9355-076448946fa3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172868-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd4fd97430c77ef729d42285dead8c79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "42bb61ed-ac23-4a28-8481-658c6dfa8423", + "x-ms-client-request-id": "dd4fd97430c77ef729d42285dead8c79", + "x-ms-correlation-request-id": "6dda8e4c-9385-41e8-9b1a-3070d0aa2163", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "22eb2ff2-71b5-4c64-bb8e-03507804ea3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033009Z:6dda8e4c-9385-41e8-9b1a-3070d0aa2163" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172869-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "135b8ce66303d444ea7857ec7aa58d2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de8ee231-6c19-4080-a89a-4dce5a950371", + "x-ms-client-request-id": "135b8ce66303d444ea7857ec7aa58d2d", + "x-ms-correlation-request-id": "43fcf4a2-023a-4e02-a1a8-e211f1f9ce39", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "e881e3bd-464d-4ed2-95ec-0ea1f8d3f023", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033010Z:43fcf4a2-023a-4e02-a1a8-e211f1f9ce39" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717286a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ecb273554c7535a7fa2d09ed2665292", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5f30688-c02e-4366-9d87-2a0fa95a3bb8", + "x-ms-client-request-id": "6ecb273554c7535a7fa2d09ed2665292", + "x-ms-correlation-request-id": "bce2eb9a-0377-432b-9c2e-a94214801835", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "30229b7b-69ce-4441-b515-119eca6bc8b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033012Z:bce2eb9a-0377-432b-9c2e-a94214801835" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717286b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "020f0218dd4a108b947bf34fd90b0483", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25f55dd4-bb80-419e-8041-4b170a594b49", + "x-ms-client-request-id": "020f0218dd4a108b947bf34fd90b0483", + "x-ms-correlation-request-id": "53fdc6af-c37d-4f8a-96e6-8a42912e03ce", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "92eb58c2-64ee-482f-bbc7-2de02c3049af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033013Z:53fdc6af-c37d-4f8a-96e6-8a42912e03ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717286c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b64ff4461ee291b23108946092a50183", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d99933b-fabe-45cd-9437-0bf3405810ba", + "x-ms-client-request-id": "b64ff4461ee291b23108946092a50183", + "x-ms-correlation-request-id": "1b8fbcfe-0bbf-427d-8987-78f33c511f52", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "0704dbf6-ff70-4d3a-b0ef-fd1b8e83da0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033014Z:1b8fbcfe-0bbf-427d-8987-78f33c511f52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717286d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78d4c4258b9658e39bbad94c610b7a74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ad1a236-bf5c-47bf-8961-a8302de42b13", + "x-ms-client-request-id": "78d4c4258b9658e39bbad94c610b7a74", + "x-ms-correlation-request-id": "305e2449-93b0-4cd3-8042-a83ebdc91ab4", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "dd158064-54a6-4752-b881-b00f38a6ec2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033016Z:305e2449-93b0-4cd3-8042-a83ebdc91ab4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717286e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de584d9e9b17fab0507dd041492b7dee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "91c4a338-7fc7-465d-b1b4-1704a6525895", + "x-ms-client-request-id": "de584d9e9b17fab0507dd041492b7dee", + "x-ms-correlation-request-id": "445c4cf8-1fc5-465a-aa7a-0c0c06ecc58c", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "45782f61-fe73-4e50-b482-d7513f52d43d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033018Z:445c4cf8-1fc5-465a-aa7a-0c0c06ecc58c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717286f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "142a6f798b36baed10f71b2744663026", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e51d60f4-0ea8-48b1-a203-71948ac350d9", + "x-ms-client-request-id": "142a6f798b36baed10f71b2744663026", + "x-ms-correlation-request-id": "b8cd16a4-65f2-4ccd-94c7-358fb7de9d96", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "e10cb1aa-da7e-4e84-b266-60497645961d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033019Z:b8cd16a4-65f2-4ccd-94c7-358fb7de9d96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172870-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45c11f8d234d896b13da2818bba20e6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4751b52b-31d3-45b2-adb5-8ff4ddb91d63", + "x-ms-client-request-id": "45c11f8d234d896b13da2818bba20e6f", + "x-ms-correlation-request-id": "51a877c3-5a3f-4040-a59f-6e344ed15322", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "a2c6e496-45d6-4b45-8f93-6ce385caacd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033021Z:51a877c3-5a3f-4040-a59f-6e344ed15322" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172871-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1d2ea3d65e0133d609dcd1f7f89b5ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c1e98d95-740a-40a2-bd6c-44fbd4e97780", + "x-ms-client-request-id": "f1d2ea3d65e0133d609dcd1f7f89b5ea", + "x-ms-correlation-request-id": "85dda9bd-bfd6-49f4-98ca-0312052ba702", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "cbd8acca-808b-4e12-b204-c79f8cedc524", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033022Z:85dda9bd-bfd6-49f4-98ca-0312052ba702" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172872-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29b3aa4d386a56a104a0015c63d4ff6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f706a41-687f-4e39-bea2-8c5124a182c3", + "x-ms-client-request-id": "29b3aa4d386a56a104a0015c63d4ff6e", + "x-ms-correlation-request-id": "7c920649-cd87-4aa6-9310-ea69252a3cf1", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "00bb4c58-7c82-49cb-be20-8b9a699fdd64", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033023Z:7c920649-cd87-4aa6-9310-ea69252a3cf1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172873-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5aeaace83e932845e2aee4af554c0a89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b0124ab-fbbb-47f9-a167-faf26d8569a2", + "x-ms-client-request-id": "5aeaace83e932845e2aee4af554c0a89", + "x-ms-correlation-request-id": "85ea358f-5b0b-4016-b70d-0c2cfefcc875", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "f227888b-1021-442e-a5ee-844b316abd7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033024Z:85ea358f-5b0b-4016-b70d-0c2cfefcc875" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172874-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10ca3d25e4ee0405497ced4064e1af8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e55650f8-8f87-4503-b627-33a02b49bdc5", + "x-ms-client-request-id": "10ca3d25e4ee0405497ced4064e1af8b", + "x-ms-correlation-request-id": "fd010f0a-2838-4ff2-8025-268f136a6473", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "44fe0ee3-fafc-4e64-a4d2-2c2dad90fa4a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033026Z:fd010f0a-2838-4ff2-8025-268f136a6473" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172875-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3375e9e5b9f0f56658b47bc53f200b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "73fd1eb4-9da2-4c93-984d-a0352004047a", + "x-ms-client-request-id": "d3375e9e5b9f0f56658b47bc53f200b7", + "x-ms-correlation-request-id": "368982ad-d7a9-4a65-8bc7-de5de8872243", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "3c19f774-4735-4f0d-aa9c-d7c8e250eabc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033027Z:368982ad-d7a9-4a65-8bc7-de5de8872243" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172876-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25377796ee090480a6e511175004c401", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3d566c3b-2585-498d-bbe1-5e7f2e7364e3", + "x-ms-client-request-id": "25377796ee090480a6e511175004c401", + "x-ms-correlation-request-id": "48dcad32-1886-48d7-86ad-4d700ebb143c", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "caab3747-bd52-4a5b-96a7-2b4dce718836", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033028Z:48dcad32-1886-48d7-86ad-4d700ebb143c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172877-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f61159fe3615c9e9e7bbab629d49b057", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e5c4187-2cb0-4f33-8d8c-3cf08db32dbc", + "x-ms-client-request-id": "f61159fe3615c9e9e7bbab629d49b057", + "x-ms-correlation-request-id": "f323ec81-8b10-4c36-b879-f5a6b73743e1", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "38c971b3-5d6c-4860-a4a9-4a412ea678e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033030Z:f323ec81-8b10-4c36-b879-f5a6b73743e1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172878-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ecaa357b8aaaaf81de322cba4a3fbe60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd4172c1-9e6f-4fd6-bd46-fa21171f1255", + "x-ms-client-request-id": "ecaa357b8aaaaf81de322cba4a3fbe60", + "x-ms-correlation-request-id": "f73c5852-9dc3-4abb-82e9-5bcf2102001e", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "f30a4623-bc46-4872-a548-1c9f1f8675be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033031Z:f73c5852-9dc3-4abb-82e9-5bcf2102001e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172879-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fabd46c609e05fa28d6d3e4e431d665d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ba66520-ed4d-486e-92b8-3452314ab798", + "x-ms-client-request-id": "fabd46c609e05fa28d6d3e4e431d665d", + "x-ms-correlation-request-id": "9e95f224-cfbe-4412-b409-4719bc3a9093", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "232414ef-499d-43d6-88f9-afe3a78d9b9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033033Z:9e95f224-cfbe-4412-b409-4719bc3a9093" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717287a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a9bb934d85a7456d76118e2092f7fa8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "349b83c1-26c5-41d4-9dd9-2eb0e826e094", + "x-ms-client-request-id": "1a9bb934d85a7456d76118e2092f7fa8", + "x-ms-correlation-request-id": "49df1d1e-d159-41e1-9d1a-d801e7b47aeb", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "6c102ed6-1e5c-4fb7-883e-7da9d4387012", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033034Z:49df1d1e-d159-41e1-9d1a-d801e7b47aeb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717287b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "579c4bfdb68b7176924a5e3c4b336bc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b4f2039-dbf8-4ea8-908f-9fcf11351e9a", + "x-ms-client-request-id": "579c4bfdb68b7176924a5e3c4b336bc1", + "x-ms-correlation-request-id": "c2a53ce7-b824-4666-96aa-2569f083afe3", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "2a9e43f3-ac69-4d87-b64a-59d9ca82358c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033036Z:c2a53ce7-b824-4666-96aa-2569f083afe3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717287c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9085cfcca3a3ee06ef49237ff1c0565d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f762ec5f-2e7d-403d-a5d4-eada47b16afa", + "x-ms-client-request-id": "9085cfcca3a3ee06ef49237ff1c0565d", + "x-ms-correlation-request-id": "18762870-5875-4845-8575-1e315d4c4407", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "d9aade81-732b-4c36-b070-02416e8d11c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033037Z:18762870-5875-4845-8575-1e315d4c4407" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717287d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f85196ed0f817ed2432a870f791928a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d07bb793-0260-4b0c-b140-c7bbe68cd042", + "x-ms-client-request-id": "f85196ed0f817ed2432a870f791928a3", + "x-ms-correlation-request-id": "eddd9a0c-d5f3-4d87-a8a3-a1e2c2dd9065", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "c2afaeef-54af-4f8d-945d-2e05c744f383", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033040Z:eddd9a0c-d5f3-4d87-a8a3-a1e2c2dd9065" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717287e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3a1557f5efaa590445ad674192f780d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c354209-3cea-4ab4-a2d2-88c353837081", + "x-ms-client-request-id": "3a1557f5efaa590445ad674192f780d1", + "x-ms-correlation-request-id": "e2bad79e-436c-4f14-8b17-9620ce8ede14", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "38031424-7c13-408f-9f82-d4c8d1dcf613", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033041Z:e2bad79e-436c-4f14-8b17-9620ce8ede14" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717287f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b54e00f473e2bd3ffc064c781bf674d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a7f7fa8d-6ca8-432c-ac5c-f6b4437d96da", + "x-ms-client-request-id": "b54e00f473e2bd3ffc064c781bf674d5", + "x-ms-correlation-request-id": "143f9a1c-f7bd-4a9b-b77b-6e7d07547e51", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "12a824ac-d16d-47f9-ac40-cb3767dd7041", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033043Z:143f9a1c-f7bd-4a9b-b77b-6e7d07547e51" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172880-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9a897f211cabfeb391f8b2d3a790eb4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d370adaf-0035-4ad6-91df-dc02e00cf47b", + "x-ms-client-request-id": "9a897f211cabfeb391f8b2d3a790eb4c", + "x-ms-correlation-request-id": "157cf456-ec77-463f-a342-d58d3d1ac8dc", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "d2ce4337-8dda-44a2-912d-73941e271ac5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033045Z:157cf456-ec77-463f-a342-d58d3d1ac8dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172881-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "781bb5aa72ca82c117583da3a28b3d4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7280be5b-5b5c-4fa0-b8e6-9737ea9def8e", + "x-ms-client-request-id": "781bb5aa72ca82c117583da3a28b3d4e", + "x-ms-correlation-request-id": "92e293b6-2163-4964-b09f-91839f21ac50", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "c7c09973-c6de-4c11-9cb0-7561a2d054d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033046Z:92e293b6-2163-4964-b09f-91839f21ac50" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172882-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13209238e66dd7264d5023eac06c156c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5aae8cb6-9b4e-46ad-89df-ba836ca3de7f", + "x-ms-client-request-id": "13209238e66dd7264d5023eac06c156c", + "x-ms-correlation-request-id": "d59de049-a2e0-4f6c-955f-60fc69c8e008", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "6f08c522-1bd5-41d3-9e8a-ede76c0cf11f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033047Z:d59de049-a2e0-4f6c-955f-60fc69c8e008" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172883-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66ceff1afbdaae0abe078252df0f5c05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3bd96f10-adb3-4035-8ca8-e5c55189f3b6", + "x-ms-client-request-id": "66ceff1afbdaae0abe078252df0f5c05", + "x-ms-correlation-request-id": "936721e2-1df9-444c-912b-decba6e8c5ca", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "9f528439-a0c9-4106-8d64-dca189282582", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033049Z:936721e2-1df9-444c-912b-decba6e8c5ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172884-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "159a63bad870c3de8f432b7a4ed7c1ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55cedbab-663c-438e-bc16-5916f0062b22", + "x-ms-client-request-id": "159a63bad870c3de8f432b7a4ed7c1ab", + "x-ms-correlation-request-id": "452ad9dd-54e6-450e-b5cf-af69f98c7c3b", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "89a11ddc-78b3-4a4f-8d37-453ac66242f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033050Z:452ad9dd-54e6-450e-b5cf-af69f98c7c3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172885-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a289d143d7bd3c748771546663d3f83e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8282c81b-7bc8-4d57-960a-d7d08c4c02ca", + "x-ms-client-request-id": "a289d143d7bd3c748771546663d3f83e", + "x-ms-correlation-request-id": "a9c7c181-1141-4f0e-b0e4-3ed6ee38700b", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "327319e6-0b4a-4105-8326-d6805b3a9df0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033051Z:a9c7c181-1141-4f0e-b0e4-3ed6ee38700b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172886-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c2f1ef4ffd142fb200ad696d08f5fe7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dca8fba1-3c32-4bb6-b499-0da6900d911a", + "x-ms-client-request-id": "5c2f1ef4ffd142fb200ad696d08f5fe7", + "x-ms-correlation-request-id": "acfdfe1e-5111-4059-8ebe-4261cbcab952", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "0d5f7a38-abc8-462f-bc8e-4b34888a2923", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033053Z:acfdfe1e-5111-4059-8ebe-4261cbcab952" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172887-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e0fd746b986e348ef5d8efe837860bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57666ae0-14f8-429c-ad2b-1b48b72bee60", + "x-ms-client-request-id": "0e0fd746b986e348ef5d8efe837860bb", + "x-ms-correlation-request-id": "1718dad5-a918-4d5d-bfc5-dbe2f4b40207", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "72f6469e-3926-4849-ab34-bec45c2e35a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033054Z:1718dad5-a918-4d5d-bfc5-dbe2f4b40207" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172888-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3086ed4b64a743d9d54781b200dd6cf7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49baff6b-5f65-49b5-8774-7333d5f885a9", + "x-ms-client-request-id": "3086ed4b64a743d9d54781b200dd6cf7", + "x-ms-correlation-request-id": "65b57ac8-0f70-4b27-aae3-859a2472b4c6", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "10b8474a-6bf4-43ef-aaf7-92d5a5e0fb4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033056Z:65b57ac8-0f70-4b27-aae3-859a2472b4c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172889-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c206d11eac33bb7d54b6d7371fcbea8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d763370-61f5-44e1-b9a1-9f2cd506daf2", + "x-ms-client-request-id": "8c206d11eac33bb7d54b6d7371fcbea8", + "x-ms-correlation-request-id": "98758434-33c5-4c05-a671-ad2a7a02fac3", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "6c03aa87-9b15-4fb0-ab89-d32dc90b6674", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033057Z:98758434-33c5-4c05-a671-ad2a7a02fac3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717288a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e34b1baa2f09e23ffdcc383f3796e312", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:30:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8e5c210-88e8-4686-ac03-049619801724", + "x-ms-client-request-id": "e34b1baa2f09e23ffdcc383f3796e312", + "x-ms-correlation-request-id": "26eb27a0-0960-4aa7-8747-0890b9281824", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "d3b8f83e-280d-4c95-83be-9f64738d0d42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033059Z:26eb27a0-0960-4aa7-8747-0890b9281824" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717288b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16ed96f1d45760f7354b5a5cf666d1d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1996f473-a15c-43f1-a0b9-be647695f74b", + "x-ms-client-request-id": "16ed96f1d45760f7354b5a5cf666d1d8", + "x-ms-correlation-request-id": "1f83351e-dc29-4a1a-aa9a-996efe51fa53", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "d1f70ff8-12c3-4a0e-8981-5d3679b747be", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033100Z:1f83351e-dc29-4a1a-aa9a-996efe51fa53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717288c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e507d9888991e2ee2e3e8ef7b178033f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27a536ff-a84e-4cee-aa98-3d222a3cd2be", + "x-ms-client-request-id": "e507d9888991e2ee2e3e8ef7b178033f", + "x-ms-correlation-request-id": "90c22a19-f323-4436-8f77-010d69a14cd9", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "16883820-b3e0-4e79-98a1-8d16d23fdb43", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033102Z:90c22a19-f323-4436-8f77-010d69a14cd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717288d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da815a68a80fd65123eaadbdd4e3eb97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea39972c-24ae-4b19-a37f-3065f65bd40e", + "x-ms-client-request-id": "da815a68a80fd65123eaadbdd4e3eb97", + "x-ms-correlation-request-id": "fbe26886-43de-4b43-8f55-d6bfd39ba285", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "9e9f9fa8-aed4-41a1-bfa8-b113cf9b9642", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033103Z:fbe26886-43de-4b43-8f55-d6bfd39ba285" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717288e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5db660fafd8f6880a80ae7194500afbc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e972a47-ec1b-489c-b9fc-2597155fe964", + "x-ms-client-request-id": "5db660fafd8f6880a80ae7194500afbc", + "x-ms-correlation-request-id": "b9383617-d4fa-4892-8b23-80a49c55ee0f", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "547093b9-58c9-4acd-9456-da1afee0d4cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033104Z:b9383617-d4fa-4892-8b23-80a49c55ee0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717288f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cf31b47f6e4e0c98830c1a7db300d4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb95f481-3ce9-4e9a-a985-edca32c31ceb", + "x-ms-client-request-id": "9cf31b47f6e4e0c98830c1a7db300d4b", + "x-ms-correlation-request-id": "78e05638-c137-40ba-a64f-3ce0650501d5", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "11743a90-f21f-4f19-87f0-fde300b74017", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033105Z:78e05638-c137-40ba-a64f-3ce0650501d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172890-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51fcf753a5c26ab0da193205c0379123", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "398f6ffb-8394-494b-a8ca-593a645792dc", + "x-ms-client-request-id": "51fcf753a5c26ab0da193205c0379123", + "x-ms-correlation-request-id": "70b26ec6-c778-47d6-b722-6005b0e51ffc", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "571f5612-f374-4398-afcf-39a94cb4b91e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033107Z:70b26ec6-c778-47d6-b722-6005b0e51ffc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172891-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b976f03b4eef03b296d5d55e3cd98d78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af84dd01-d287-43dc-9e79-4ea6089b90a0", + "x-ms-client-request-id": "b976f03b4eef03b296d5d55e3cd98d78", + "x-ms-correlation-request-id": "baa70d9f-75ed-437e-936d-512621bf298b", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "205c6a7d-a705-4bfc-9d7f-ed58d66b7eaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033108Z:baa70d9f-75ed-437e-936d-512621bf298b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172892-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4dc59bfc5d03a1fa6b88c2cbc4c42050", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6aa26c68-743f-4ca6-90c9-59240af47bca", + "x-ms-client-request-id": "4dc59bfc5d03a1fa6b88c2cbc4c42050", + "x-ms-correlation-request-id": "ed4a0e7b-433b-47ad-abcd-708cc97b9a1a", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "c1cdcf5d-8701-4549-9852-823e26436fca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033110Z:ed4a0e7b-433b-47ad-abcd-708cc97b9a1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172893-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea6c9e9f54b9045c45f9baedd0522e01", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20fcd648-681b-4332-ac2d-c18477bfc0c6", + "x-ms-client-request-id": "ea6c9e9f54b9045c45f9baedd0522e01", + "x-ms-correlation-request-id": "0718caaa-9518-48c3-ba89-853b72c1f72e", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "5dc14241-01df-4d37-b180-f6cbb946cf15", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033111Z:0718caaa-9518-48c3-ba89-853b72c1f72e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172894-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2408b98b4372dd20f6d44e668ce73fd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "718b7e0f-8d2e-442e-981a-7e938c005a90", + "x-ms-client-request-id": "2408b98b4372dd20f6d44e668ce73fd2", + "x-ms-correlation-request-id": "0b2cc2c3-ab0a-4536-8098-edaf5c9a3923", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "949df0ac-3016-4dfa-89ab-d2e2df0f0f2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033112Z:0b2cc2c3-ab0a-4536-8098-edaf5c9a3923" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172895-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dbe85b4a26ca7be3fc1080aa20dd119", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc79614b-7858-4e7a-b7cb-dec1c45ad7a5", + "x-ms-client-request-id": "9dbe85b4a26ca7be3fc1080aa20dd119", + "x-ms-correlation-request-id": "8a8ee685-c3a2-494d-b1a5-7476594486d5", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "bbf7d6d2-3025-4d27-ac5e-dec573d4baab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033113Z:8a8ee685-c3a2-494d-b1a5-7476594486d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172896-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a3fc15afbbb5cdd7e8ef3e406f5775e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e31da6e-0e66-4ce7-b8dc-6bac8ef6e1c6", + "x-ms-client-request-id": "0a3fc15afbbb5cdd7e8ef3e406f5775e", + "x-ms-correlation-request-id": "21118531-0727-4b66-9ba6-e294946365ec", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "bc9201c3-ea02-44ce-b372-0886c74119cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033115Z:21118531-0727-4b66-9ba6-e294946365ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172897-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4a38e7ba9193e994fb60e5b13b163be9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "418ec713-c3c7-4017-bfba-fb1db8498acd", + "x-ms-client-request-id": "4a38e7ba9193e994fb60e5b13b163be9", + "x-ms-correlation-request-id": "495025e4-06f0-4827-8c6f-c8b4f9c89338", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "719821dc-5eea-4d40-8919-6df66d8cac4a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033117Z:495025e4-06f0-4827-8c6f-c8b4f9c89338" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172898-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb0c350334a8b917a7621fdeafd9a149", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65516655-e866-4edd-aa76-927a82a9621c", + "x-ms-client-request-id": "cb0c350334a8b917a7621fdeafd9a149", + "x-ms-correlation-request-id": "9b72c91a-a667-4928-9cc7-fd4d2750629c", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "6be060f5-ddff-48c5-bc65-932c47d5d7b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033118Z:9b72c91a-a667-4928-9cc7-fd4d2750629c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172899-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba50aa4986d4c9852c560f5b152c2067", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db763989-4c31-4289-b5f5-f216011f24ec", + "x-ms-client-request-id": "ba50aa4986d4c9852c560f5b152c2067", + "x-ms-correlation-request-id": "3d578dd5-ceb8-4bc5-bb58-bbdaa289e81f", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "458302de-0908-4d7c-9967-021998df952e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033119Z:3d578dd5-ceb8-4bc5-bb58-bbdaa289e81f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717289a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1e10a53ace985b5d07ea23171b53921", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26aa62af-4007-4428-9d3b-fc7752c44b0a", + "x-ms-client-request-id": "d1e10a53ace985b5d07ea23171b53921", + "x-ms-correlation-request-id": "8c6f4be3-01c2-43f2-9eb1-94865ee34f97", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "09414ae5-0e0a-4244-96c8-947257c6f9c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033121Z:8c6f4be3-01c2-43f2-9eb1-94865ee34f97" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717289b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91679bbe80c67c14af439e5124bba37a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "11510895-3761-4b4f-aaf3-b9c6a1fa5cd2", + "x-ms-client-request-id": "91679bbe80c67c14af439e5124bba37a", + "x-ms-correlation-request-id": "2279ef12-d42f-4744-a853-1f0ddcb1d649", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "0b7b6b2a-5a2f-4559-8f13-953ee0494926", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033122Z:2279ef12-d42f-4744-a853-1f0ddcb1d649" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717289c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a48bb741cff89d60f4cae956e4535777", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cc5ce389-cb4c-4e4b-9940-1cf7fbcf3d61", + "x-ms-client-request-id": "a48bb741cff89d60f4cae956e4535777", + "x-ms-correlation-request-id": "304d6834-517c-413f-9920-59ab560c2156", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "3df0a6fa-b06b-4675-9b6f-e642d5d99030", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033123Z:304d6834-517c-413f-9920-59ab560c2156" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717289d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a9cee1c8fc5d2a1f56421a50d646115", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7c9e0de-eac9-461d-8d96-504328822c73", + "x-ms-client-request-id": "7a9cee1c8fc5d2a1f56421a50d646115", + "x-ms-correlation-request-id": "6bc9fa32-2765-40a0-ab9a-b829e04f4c5f", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "96b73c2c-6ea2-4152-b696-c05e1cdf79dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033125Z:6bc9fa32-2765-40a0-ab9a-b829e04f4c5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717289e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9ef27db942aee283bca9dfb96be985b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88737541-da61-437d-96ee-1b8e81a7e1e8", + "x-ms-client-request-id": "b9ef27db942aee283bca9dfb96be985b", + "x-ms-correlation-request-id": "0cdfe2af-cfe7-47ad-9569-8eb176b1ec25", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "c7a32270-e510-4084-8fb9-e39a29bac59d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033127Z:0cdfe2af-cfe7-47ad-9569-8eb176b1ec25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717289f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "353527eb291fb2b515b8af93aeba8f90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ca6b99c-bbbd-47a2-8dec-cd9f110103c5", + "x-ms-client-request-id": "353527eb291fb2b515b8af93aeba8f90", + "x-ms-correlation-request-id": "5618a9fa-de2c-47f3-8964-91ed8c9f25b1", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "72043138-7813-47d5-86be-62f909a7a4e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033128Z:5618a9fa-de2c-47f3-8964-91ed8c9f25b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728a0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc7ad4689d64874cc5ad3ffaf2a63b37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "953a810f-f245-4275-ba2c-c532bbab2053", + "x-ms-client-request-id": "bc7ad4689d64874cc5ad3ffaf2a63b37", + "x-ms-correlation-request-id": "22e1c10b-a9e2-4fed-9203-9f4afa9627a9", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "e97c7a7b-e115-49ee-9a3d-5131e22161ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033130Z:22e1c10b-a9e2-4fed-9203-9f4afa9627a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728a1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5bac6cc2b2eb2f5713da471e5954080", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "accd3a6c-500f-46ca-8df0-2b4596111e03", + "x-ms-client-request-id": "e5bac6cc2b2eb2f5713da471e5954080", + "x-ms-correlation-request-id": "f5d52136-b53b-478d-a53b-5210d45d2afb", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "f8fb337d-4aaf-487a-9ad5-7bb12af2b660", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033132Z:f5d52136-b53b-478d-a53b-5210d45d2afb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728a2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2930c3bdb434df7daae7071eabbc06f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69402b63-fe4f-479a-8e03-d62302958d9f", + "x-ms-client-request-id": "c2930c3bdb434df7daae7071eabbc06f", + "x-ms-correlation-request-id": "ef41fcc3-3a1b-4a55-92d7-6a25afdca1c4", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "6635b9c4-895b-4b85-be40-67f60296b0f3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033133Z:ef41fcc3-3a1b-4a55-92d7-6a25afdca1c4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728a3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8c6777daa003d61dec84a26f9dba130", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e86ed28c-b504-4bb6-b100-bc1709954bc4", + "x-ms-client-request-id": "e8c6777daa003d61dec84a26f9dba130", + "x-ms-correlation-request-id": "93da34f0-9872-4716-b479-14ce8059ed57", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "2374bdab-19bf-4606-95dc-217440e9a821", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033134Z:93da34f0-9872-4716-b479-14ce8059ed57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728a4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5bfbe6c7913f0f4ce6c0a80bb84c7b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac71dde8-351c-4433-85c9-2b1d4fdcc583", + "x-ms-client-request-id": "e5bfbe6c7913f0f4ce6c0a80bb84c7b6", + "x-ms-correlation-request-id": "92709fed-7451-4425-b39c-85d3fa6fdc1a", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "86a3203d-d264-4102-abca-53c66dcf1128", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033136Z:92709fed-7451-4425-b39c-85d3fa6fdc1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728a5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ef3347d58ce9080ab55e37a91d153ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc216d23-a48b-432d-918b-bfc6f6742b75", + "x-ms-client-request-id": "6ef3347d58ce9080ab55e37a91d153ff", + "x-ms-correlation-request-id": "7e99a4b0-8e98-4eb6-b6a5-b392af6315d5", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "41892d3d-124d-49c4-8cfa-27d828ddf0d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033138Z:7e99a4b0-8e98-4eb6-b6a5-b392af6315d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728a6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2b05400cdafc035c83d519939fe0815a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4018a5ec-70f4-40f3-9d63-10425ccd0d34", + "x-ms-client-request-id": "2b05400cdafc035c83d519939fe0815a", + "x-ms-correlation-request-id": "db5baae2-421b-4515-8cef-af897414687f", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "187db3fd-aea5-4f4c-bec7-ae10a3853d0f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033140Z:db5baae2-421b-4515-8cef-af897414687f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728a7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5a9940133e713613d2e39bd96795ffd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89797b92-f5b2-4b35-8b5f-ca3d6609ab9b", + "x-ms-client-request-id": "c5a9940133e713613d2e39bd96795ffd", + "x-ms-correlation-request-id": "2279e280-93d8-4141-a681-e08875da2523", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "3aa15eb7-a60f-4a9b-a1d5-8e56126537d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033141Z:2279e280-93d8-4141-a681-e08875da2523" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728a8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b740b189b7fa2bad8f0ebf93eedf1ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2c98d30a-e4d1-4b9e-bb19-c9b3ccf2be8c", + "x-ms-client-request-id": "7b740b189b7fa2bad8f0ebf93eedf1ca", + "x-ms-correlation-request-id": "0b85cc6c-ff8f-449e-84d3-03176013030a", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "67db0e08-6cce-4e2e-982a-2d541b3694f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033142Z:0b85cc6c-ff8f-449e-84d3-03176013030a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728a9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd7988d48e27d917dff1eecda19f6d09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "802d0839-4b71-4d76-82eb-8979f8e8aa67", + "x-ms-client-request-id": "fd7988d48e27d917dff1eecda19f6d09", + "x-ms-correlation-request-id": "40a63227-4123-4b64-9880-dbd8e1b35e90", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "736cf6d4-a4db-495c-a363-97fa4d287de2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033144Z:40a63227-4123-4b64-9880-dbd8e1b35e90" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728aa-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "937a1c76066c65dbd906ecf74767d550", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59748320-2357-46e4-84cd-d2afde562b18", + "x-ms-client-request-id": "937a1c76066c65dbd906ecf74767d550", + "x-ms-correlation-request-id": "cc75943a-b936-4030-ae9e-89a690381a58", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "37db7f8e-9d27-4ac4-be13-9daf2efdb042", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033145Z:cc75943a-b936-4030-ae9e-89a690381a58" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ab-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0de86f3c620089d5f49a9c8dadec0139", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b775aa5-d9cb-496a-b744-99cd7b8619dc", + "x-ms-client-request-id": "0de86f3c620089d5f49a9c8dadec0139", + "x-ms-correlation-request-id": "1dc2be35-85a1-4d94-8b74-8ea80be3051f", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "bd5f714c-76b0-4c37-8bb1-b18bc5932371", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033146Z:1dc2be35-85a1-4d94-8b74-8ea80be3051f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ac-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2283e1825d72ce5dad132321a21f9177", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "082d516f-85f3-4f64-b7d9-7c3b51a3d5dd", + "x-ms-client-request-id": "2283e1825d72ce5dad132321a21f9177", + "x-ms-correlation-request-id": "577b0a44-37ed-4746-9433-c72e7e2fa75b", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "0d61df50-114e-4139-9f70-f46e59fbaab0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033148Z:577b0a44-37ed-4746-9433-c72e7e2fa75b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ad-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32909e1b5fb6130847f09ed26a4db7ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f3c07200-6a9a-4f09-9f25-1efecd465c74", + "x-ms-client-request-id": "32909e1b5fb6130847f09ed26a4db7ed", + "x-ms-correlation-request-id": "a4880b8b-f411-4535-824a-389d57c3916a", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "e33eb69a-a03b-43a7-9b4e-200d8cc4b04e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033149Z:a4880b8b-f411-4535-824a-389d57c3916a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ae-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6674b305b2e4dedd111a60ec3fb3e7d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a2634cb-d00d-417a-ad81-04cf4147fb53", + "x-ms-client-request-id": "6674b305b2e4dedd111a60ec3fb3e7d5", + "x-ms-correlation-request-id": "2edb44db-b0f5-4d50-aee8-01db798cb32f", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "b7bc4c02-600c-4391-a106-656beffa3dc7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033150Z:2edb44db-b0f5-4d50-aee8-01db798cb32f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728af-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0f722509cf5b2382d86fda81be8b635f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ffc9a29-413c-4fb1-b615-2b91e3542986", + "x-ms-client-request-id": "0f722509cf5b2382d86fda81be8b635f", + "x-ms-correlation-request-id": "e8347be9-2ab4-4152-b2e5-a08248fd8b8d", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "54d19c69-3b85-45ba-8049-ba457620e83e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033152Z:e8347be9-2ab4-4152-b2e5-a08248fd8b8d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728b0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee1b355b2baa6992c0b2209bff1cd393", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1909d242-c6e3-4d3b-9b55-888d1da4a9f8", + "x-ms-client-request-id": "ee1b355b2baa6992c0b2209bff1cd393", + "x-ms-correlation-request-id": "2ce4c9f5-9c98-4fe8-bb0a-3bfcc221a69f", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "9ad762e8-eb21-45ed-95dc-710c702714b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033153Z:2ce4c9f5-9c98-4fe8-bb0a-3bfcc221a69f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728b1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "45c9c908a8db369230518d75d85c1f85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fefbc808-bfc2-4106-a6ff-5c30d8bb0aea", + "x-ms-client-request-id": "45c9c908a8db369230518d75d85c1f85", + "x-ms-correlation-request-id": "cccf063f-2aa8-4025-a1a2-b2e6bf050527", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "6818eea5-abe2-4387-aad8-24774c109dba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033155Z:cccf063f-2aa8-4025-a1a2-b2e6bf050527" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728b2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a9001b6f998dd2a92084fa9aee724bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a5617c5-6b85-4b6f-adbc-802e91562fa4", + "x-ms-client-request-id": "0a9001b6f998dd2a92084fa9aee724bc", + "x-ms-correlation-request-id": "fd11b1ce-8a2b-464e-b4b2-a3f0c75934a4", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "477c6094-4e36-4157-ba62-557a98821390", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033156Z:fd11b1ce-8a2b-464e-b4b2-a3f0c75934a4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728b3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f578469c1ec2b383a3e5bd599e1d9063", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d96757f-2778-4131-be3f-30cd2b474371", + "x-ms-client-request-id": "f578469c1ec2b383a3e5bd599e1d9063", + "x-ms-correlation-request-id": "e11aba3a-3ed2-40be-b2f7-22305a6cd25a", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "2fd31e7e-3ca2-49c1-a9a5-43e5ffe9b988", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033158Z:e11aba3a-3ed2-40be-b2f7-22305a6cd25a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728b4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fee49a92c98b0ffb9febb2d259e88749", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:31:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b2a4395-8c0e-4259-ac2b-e3e569efce29", + "x-ms-client-request-id": "fee49a92c98b0ffb9febb2d259e88749", + "x-ms-correlation-request-id": "c612b675-c9d7-4dec-ab6b-2d1e1089bcf1", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "0deb275d-7f3f-479f-88ef-f51991246412", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033159Z:c612b675-c9d7-4dec-ab6b-2d1e1089bcf1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728b5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91d8d02d2ae398c37ddd66b23bd03f75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "115816ae-2b23-4ffe-a982-59c126cc84cc", + "x-ms-client-request-id": "91d8d02d2ae398c37ddd66b23bd03f75", + "x-ms-correlation-request-id": "82a6af94-abab-47d1-9c6a-177c3fe9bd66", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "127b39bf-a365-4bc3-b70e-149f68ac5ad7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033200Z:82a6af94-abab-47d1-9c6a-177c3fe9bd66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728b6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1317eb782502d2304b6855d66cb159ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f54d2674-fc11-4536-b1fb-f55afc59a555", + "x-ms-client-request-id": "1317eb782502d2304b6855d66cb159ba", + "x-ms-correlation-request-id": "ced31b01-80d3-4832-a63d-90e8197bb32e", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "defaad3e-ae4e-4fd1-bf92-b54e99bdcbe0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033202Z:ced31b01-80d3-4832-a63d-90e8197bb32e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728b7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd2c745dff44677fd74c81ae6248d4cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6a9d82f-c8e6-441c-8379-19d98f4bd17e", + "x-ms-client-request-id": "cd2c745dff44677fd74c81ae6248d4cf", + "x-ms-correlation-request-id": "05aa5178-4780-42f6-80cd-097be76df605", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "9223aa90-7f99-4c41-ba39-71649968f002", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033203Z:05aa5178-4780-42f6-80cd-097be76df605" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728b8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d5a3cac74d107469f06457bd5ec2bcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "992d1d84-a20c-4389-a920-b4702031ce1a", + "x-ms-client-request-id": "6d5a3cac74d107469f06457bd5ec2bcb", + "x-ms-correlation-request-id": "f1c29305-f8d4-4f44-814a-ca22911ffca1", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "d04d2df8-9232-478d-b1c0-9a4311df6a22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033204Z:f1c29305-f8d4-4f44-814a-ca22911ffca1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728b9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c654ac8371a478316bb03cb6a4826f02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e4100fd-fe60-40b6-b0ac-376abab952ab", + "x-ms-client-request-id": "c654ac8371a478316bb03cb6a4826f02", + "x-ms-correlation-request-id": "dedd49f0-2a0e-4dfc-8a9d-cf0fce98fd70", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "b58c1fc2-c8d6-40c1-a8aa-efc3c76172e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033206Z:dedd49f0-2a0e-4dfc-8a9d-cf0fce98fd70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ba-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2f2a8694ec56e9e92e242d3eb90491ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "131db02f-a1a0-4623-a02f-73dea1822f76", + "x-ms-client-request-id": "2f2a8694ec56e9e92e242d3eb90491ea", + "x-ms-correlation-request-id": "0f469da9-db47-41ce-9fb1-f338a2d11619", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "81608427-0799-4754-b479-b4b2a942c4e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033207Z:0f469da9-db47-41ce-9fb1-f338a2d11619" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728bb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b62bb5200df33a2a0be10121388f621d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd79761f-1baf-4a45-902c-f9dbf855f97c", + "x-ms-client-request-id": "b62bb5200df33a2a0be10121388f621d", + "x-ms-correlation-request-id": "b32096ba-17da-45bf-8580-115d22035a4b", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "5e30b7d4-b28a-4ce8-a146-410bfd5e3bbd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033208Z:b32096ba-17da-45bf-8580-115d22035a4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728bc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4fe64396fcc19775c26b988044f3bf67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59209fb9-c8ff-4403-81eb-f07e9db6f933", + "x-ms-client-request-id": "4fe64396fcc19775c26b988044f3bf67", + "x-ms-correlation-request-id": "c207e079-3276-4c7b-833b-3943964c1562", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "a2780fd9-daa5-4616-8337-6db5ffc59db4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033210Z:c207e079-3276-4c7b-833b-3943964c1562" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728bd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef96511eb957860f5bf02375eac8b19e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "086edc77-3baf-4d07-993e-a568c569225e", + "x-ms-client-request-id": "ef96511eb957860f5bf02375eac8b19e", + "x-ms-correlation-request-id": "ac03fe5e-6346-4d06-af17-84a8aa1193bd", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "8dd9f655-17ff-4ebd-a7dd-9d2a1c550096", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033211Z:ac03fe5e-6346-4d06-af17-84a8aa1193bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728be-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76a710c1421e24284093f48875aaf618", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17076e96-3b6c-4d5b-90cb-ae37a0b27388", + "x-ms-client-request-id": "76a710c1421e24284093f48875aaf618", + "x-ms-correlation-request-id": "3440b025-684e-46c7-b73d-95e32643c0aa", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "21108c17-2e28-4a9d-b47d-8361885ba81d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033212Z:3440b025-684e-46c7-b73d-95e32643c0aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728bf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6029a2273f9ddc6345ff3d1d800adfa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ef507ff-cf32-4920-8777-7181fe72f000", + "x-ms-client-request-id": "e6029a2273f9ddc6345ff3d1d800adfa", + "x-ms-correlation-request-id": "18764f6b-ee17-40ca-a349-fb99fc8941c2", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "cb99f42d-3803-43cc-81a7-ef1fa23758d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033213Z:18764f6b-ee17-40ca-a349-fb99fc8941c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728c0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "33bef9b9484bdb482871afc3c58611b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce71e9a4-59a3-4472-aa7d-ccdb84dd0363", + "x-ms-client-request-id": "33bef9b9484bdb482871afc3c58611b1", + "x-ms-correlation-request-id": "e7da6436-be3c-490e-932f-f7caac710065", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "44c13e8b-1087-4fed-a501-bd88abb9c9f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033216Z:e7da6436-be3c-490e-932f-f7caac710065" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728c1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f520bfacac54ea54aca42be4f574b40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25805517-e753-46f5-be71-c9d1b93c9c8b", + "x-ms-client-request-id": "4f520bfacac54ea54aca42be4f574b40", + "x-ms-correlation-request-id": "0ccf22a3-810b-457a-8890-8d8f68113a9a", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "389d8127-dc74-4bd7-bf50-3244952b3e9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033217Z:0ccf22a3-810b-457a-8890-8d8f68113a9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728c2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ccef9e6c2ebdacd5127be87c30217ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bab05afb-c917-466c-bde9-11c98e0f56db", + "x-ms-client-request-id": "7ccef9e6c2ebdacd5127be87c30217ad", + "x-ms-correlation-request-id": "7ae15441-ec91-415e-b777-f7452fa19128", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "76ecee0c-5534-4c6c-b18f-3053d1c86c31", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033218Z:7ae15441-ec91-415e-b777-f7452fa19128" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728c3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdd7414e5dadee34546fe980068a8cd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4762a09-6e6e-4d9b-b13f-adee9c7e61a6", + "x-ms-client-request-id": "cdd7414e5dadee34546fe980068a8cd0", + "x-ms-correlation-request-id": "efcc67a9-7072-4692-9c65-33a99f74375b", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "576bf759-84c9-466b-88e9-ee3054e0225d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033220Z:efcc67a9-7072-4692-9c65-33a99f74375b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728c4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cbdc6f2695b737c53d78fd9e0c1d8b47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9491c0ed-ed9f-4070-a5d6-89fbf88ee10a", + "x-ms-client-request-id": "cbdc6f2695b737c53d78fd9e0c1d8b47", + "x-ms-correlation-request-id": "37d0721f-f570-45c3-8813-5a10f2a1a058", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "eadd9ff7-3847-4027-93cf-8fc9d9c98a34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033221Z:37d0721f-f570-45c3-8813-5a10f2a1a058" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728c5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d7095b27e7f8892c5df287cd84dd4c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccf35c55-b9fd-443e-8f0e-d8287cb12a40", + "x-ms-client-request-id": "0d7095b27e7f8892c5df287cd84dd4c7", + "x-ms-correlation-request-id": "41b8fb68-1bc8-454a-b4d4-f9b07d76782a", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "29717fbf-cda8-4ed3-8739-93f42b0695ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033222Z:41b8fb68-1bc8-454a-b4d4-f9b07d76782a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728c6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5461ed9a4c25b9f57b9f8f356096e236", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f8e2a1f-20c0-4fd6-b1a7-aa88b796db07", + "x-ms-client-request-id": "5461ed9a4c25b9f57b9f8f356096e236", + "x-ms-correlation-request-id": "5ced5e44-f586-404c-add1-f4bc5c8bd587", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "a28a8c21-c5e6-4543-b1ce-e5cb95f97b90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033224Z:5ced5e44-f586-404c-add1-f4bc5c8bd587" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728c7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71cda2e47e19a751dd5406d86d495ff0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dfc55d16-6dc8-4213-8757-1fac71218c91", + "x-ms-client-request-id": "71cda2e47e19a751dd5406d86d495ff0", + "x-ms-correlation-request-id": "86e58502-86a7-4b21-89af-fc94597d604d", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "eb6c90e8-6957-49b4-b3c7-f76dd10dd8ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033225Z:86e58502-86a7-4b21-89af-fc94597d604d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728c8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e0335a336bb66219fb792e0ef5c282e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "514d1b65-dc1c-4918-9c72-9cb032e9baf2", + "x-ms-client-request-id": "1e0335a336bb66219fb792e0ef5c282e", + "x-ms-correlation-request-id": "ce024693-dcfb-4f82-91e6-2b617215d557", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "e9afa046-b9ae-4e7f-b7ab-429e90e715a8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033226Z:ce024693-dcfb-4f82-91e6-2b617215d557" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728c9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3697f1fc637f1cad9cba77d1461d4b31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae7de038-5f0d-41ec-a5a3-92365680f9a7", + "x-ms-client-request-id": "3697f1fc637f1cad9cba77d1461d4b31", + "x-ms-correlation-request-id": "e9f60ee7-521e-4e78-929c-01e6c5045969", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "0f3aa3c1-1539-45b9-a9d1-cc9de915e71a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033228Z:e9f60ee7-521e-4e78-929c-01e6c5045969" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ca-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a919e40c493ad7b8066d162ec71b780", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5dd8de33-4ee3-4893-a45d-425963856bcc", + "x-ms-client-request-id": "2a919e40c493ad7b8066d162ec71b780", + "x-ms-correlation-request-id": "b33588ae-920d-4f7a-954f-a3f870e010e9", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "ed720b4e-87f8-4dce-81b9-b0a5b67de982", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033229Z:b33588ae-920d-4f7a-954f-a3f870e010e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728cb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7bdbd72c29b2407088e68101bf502081", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8578e42-b3e7-4599-bb53-b5ea3457487d", + "x-ms-client-request-id": "7bdbd72c29b2407088e68101bf502081", + "x-ms-correlation-request-id": "2a2823ce-542c-412d-8aa7-9512a5a8dae7", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "e3111d39-b530-4072-a487-034d31c93bb0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033230Z:2a2823ce-542c-412d-8aa7-9512a5a8dae7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728cc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "509f606bfdca389a76e9b518914b302b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "12939f89-f05c-45b6-940d-7354591e56f5", + "x-ms-client-request-id": "509f606bfdca389a76e9b518914b302b", + "x-ms-correlation-request-id": "a2dea4c8-ffba-4606-be55-7d615ea84a74", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "b54cfbb8-75ee-40d4-887e-d5ff7f014d76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033232Z:a2dea4c8-ffba-4606-be55-7d615ea84a74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728cd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ea4f602d042167f2d51a2ac4379ed30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf8b6d8c-6fb1-4fc8-ab92-35825127dd7d", + "x-ms-client-request-id": "6ea4f602d042167f2d51a2ac4379ed30", + "x-ms-correlation-request-id": "0233e067-7853-4c8b-8231-057820951d95", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "13ca71a8-6f0c-48f1-873f-58a9a3e1821f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033233Z:0233e067-7853-4c8b-8231-057820951d95" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ce-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cf64f4667d12eb53da205c87458af3c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f28692c2-0dd3-4baf-b14a-b4d9391b8456", + "x-ms-client-request-id": "8cf64f4667d12eb53da205c87458af3c", + "x-ms-correlation-request-id": "79e33ab9-2263-4386-a76a-a49f8e85adcb", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "7e9dcfc8-f807-4941-985d-7cd42d2248c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033234Z:79e33ab9-2263-4386-a76a-a49f8e85adcb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728cf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8fe55b6b1ab9b3fe08923795bedf4fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b264e575-fad2-48d4-a741-7f77dcc49a05", + "x-ms-client-request-id": "c8fe55b6b1ab9b3fe08923795bedf4fc", + "x-ms-correlation-request-id": "cddfd55e-67a2-433f-94e4-69585cb90fdb", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "a1f4a16f-1790-46a1-a02d-f3bc95689372", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033236Z:cddfd55e-67a2-433f-94e4-69585cb90fdb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728d0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42d185fba3549b5a4176319fcab6a2d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f7225479-0b35-47e3-9096-1f4a0b8c91bd", + "x-ms-client-request-id": "42d185fba3549b5a4176319fcab6a2d5", + "x-ms-correlation-request-id": "f0fc17ac-e23a-4c55-b2bb-b73019c5cbb9", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "4db53a50-97ac-4c0a-a766-24f66414372f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033237Z:f0fc17ac-e23a-4c55-b2bb-b73019c5cbb9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728d1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "edf665a1257a95840f5bab48443bd34f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9507d653-ffa6-4dd0-aabe-7014eeefac01", + "x-ms-client-request-id": "edf665a1257a95840f5bab48443bd34f", + "x-ms-correlation-request-id": "7c472e83-617c-45c4-80b8-0ecb57dbb382", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "7c52aa82-c2eb-44cb-ab35-622b81a07309", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033238Z:7c472e83-617c-45c4-80b8-0ecb57dbb382" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728d2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eecc09ae6d8612e7fb63873580a0d029", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2535fda1-5a3f-42b3-8ed2-42b295dd6c83", + "x-ms-client-request-id": "eecc09ae6d8612e7fb63873580a0d029", + "x-ms-correlation-request-id": "fd0534c3-f13b-44e6-94cb-d34e7ee45abf", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "2e42cee6-c464-44d6-9568-2ef1892dfcbf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033240Z:fd0534c3-f13b-44e6-94cb-d34e7ee45abf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728d3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f5d74de607f7d681003c32f9f8125706", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c502601-4f12-41a3-ad90-55d9bdc881c0", + "x-ms-client-request-id": "f5d74de607f7d681003c32f9f8125706", + "x-ms-correlation-request-id": "041ca2cf-5279-4fe8-95c0-540e49a84a7d", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "f85b7130-030a-4b07-80b7-ed8abb91682b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033242Z:041ca2cf-5279-4fe8-95c0-540e49a84a7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728d4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c1f1e1a2b3ea344f7ee3f1179d4f146f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6df37e3f-18bf-4e60-9816-db4c4dd216c5", + "x-ms-client-request-id": "c1f1e1a2b3ea344f7ee3f1179d4f146f", + "x-ms-correlation-request-id": "42ff05fe-4f3b-4b18-b0b9-e23f7e67e3c7", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "7c302d01-d42d-4ac1-b53b-41cfef985acc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033243Z:42ff05fe-4f3b-4b18-b0b9-e23f7e67e3c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728d5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f661818ade63a65787f6ee493bee1ae9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7fbf2ea2-d1fd-4e4b-b41b-aad4c651b5c2", + "x-ms-client-request-id": "f661818ade63a65787f6ee493bee1ae9", + "x-ms-correlation-request-id": "ef33764d-6096-40c5-89f7-915983cade35", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "c2e39b16-6851-4044-9809-bc98389f600f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033244Z:ef33764d-6096-40c5-89f7-915983cade35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728d6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9e93810c0fae333ffda37614156a38b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "11bb22df-9ab3-4192-b04f-9a873ee9aab8", + "x-ms-client-request-id": "9e93810c0fae333ffda37614156a38b0", + "x-ms-correlation-request-id": "4929dad6-0101-4a49-8f76-0edfc94f2960", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "7498aa75-e181-4bf9-931f-3903fae62c74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033246Z:4929dad6-0101-4a49-8f76-0edfc94f2960" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728d7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "766ec22760b0c3a28a4a3af3c405f990", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "373aafac-45ce-4acd-aaa4-33492216a716", + "x-ms-client-request-id": "766ec22760b0c3a28a4a3af3c405f990", + "x-ms-correlation-request-id": "caf0bff4-aa90-4ffb-b44e-833a138f8151", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "3ea9308b-a35a-4fae-b014-df7d6b0aea67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033247Z:caf0bff4-aa90-4ffb-b44e-833a138f8151" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728d8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c0a08c876bc7bc0422ef8c06743911c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1798956f-8248-41f6-98f7-559ab564ea85", + "x-ms-client-request-id": "1c0a08c876bc7bc0422ef8c06743911c", + "x-ms-correlation-request-id": "6ff27f88-5d90-4a0e-8e58-5f0c6401eada", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "8c093a7b-2ec3-4609-be23-97b9292f1483", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033248Z:6ff27f88-5d90-4a0e-8e58-5f0c6401eada" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728d9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78223dbda47fab38decf1464d44b6ef8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94aed787-7fa4-41ee-a96d-9528cdce7b3f", + "x-ms-client-request-id": "78223dbda47fab38decf1464d44b6ef8", + "x-ms-correlation-request-id": "b69cf5f9-e751-4a52-aef9-2273f6b22baf", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "d1386a03-f7dd-4dbb-8176-412397faa6f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033250Z:b69cf5f9-e751-4a52-aef9-2273f6b22baf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728da-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d4ce6a91c5fb1f401f3348267e25b47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce28a96b-444c-44d7-8adb-32f7ae0597bd", + "x-ms-client-request-id": "0d4ce6a91c5fb1f401f3348267e25b47", + "x-ms-correlation-request-id": "6dd74243-751a-46e3-9473-090a7a334f6d", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "fc5ffb12-d532-4914-b4d2-f3413b325cf8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033251Z:6dd74243-751a-46e3-9473-090a7a334f6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728db-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86361db980e32410d05f3dec625ca6f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "40a3dd99-ee16-488c-8d80-4ba1b4d88052", + "x-ms-client-request-id": "86361db980e32410d05f3dec625ca6f6", + "x-ms-correlation-request-id": "a8c23e9e-9bf0-412a-bf2f-491b7606f20e", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "a3e951d0-3175-4215-a8c8-6fbeea0f859e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033252Z:a8c23e9e-9bf0-412a-bf2f-491b7606f20e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728dc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "811600bf84f7a0bc4971778b6fb544fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6a264b3-4bb1-45c8-b32a-7fa7d6ce0e06", + "x-ms-client-request-id": "811600bf84f7a0bc4971778b6fb544fc", + "x-ms-correlation-request-id": "ad0d3abf-9f71-4f42-809b-35dcec8d79f5", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "8841549c-a2c1-41fa-a67a-930c087641f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033254Z:ad0d3abf-9f71-4f42-809b-35dcec8d79f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728dd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b7aacd73e7142814d6273d00df074fa4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8996cc2a-27b4-408a-8c37-c91315fa2b0c", + "x-ms-client-request-id": "b7aacd73e7142814d6273d00df074fa4", + "x-ms-correlation-request-id": "8718d103-312e-4b1d-8825-8bdc83a7235d", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "6ef9a37b-7055-4b99-b8c1-19ba5933406d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033255Z:8718d103-312e-4b1d-8825-8bdc83a7235d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728de-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66c23e4ddacb354f61963d720984b41a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0128dda0-e577-4902-8ec6-967a87659eac", + "x-ms-client-request-id": "66c23e4ddacb354f61963d720984b41a", + "x-ms-correlation-request-id": "48baeb80-fa6a-4902-a209-5c32e8e8230d", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "1d80a291-d131-4b73-8750-f9554a33af4a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033256Z:48baeb80-fa6a-4902-a209-5c32e8e8230d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728df-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9478401befb2d8e1eceeabcf46bbc142", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f3ed781-ad9f-4265-94e3-7be327939721", + "x-ms-client-request-id": "9478401befb2d8e1eceeabcf46bbc142", + "x-ms-correlation-request-id": "2e652a7a-2b0d-4eeb-bc32-91888a83ef25", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "97635222-7949-45cc-b81e-93d58adf102e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033258Z:2e652a7a-2b0d-4eeb-bc32-91888a83ef25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728e0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "313ed222ddf299317d75557ea9a11f51", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:32:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "955386e2-4615-4f42-91b1-df98d3adcb09", + "x-ms-client-request-id": "313ed222ddf299317d75557ea9a11f51", + "x-ms-correlation-request-id": "c7088a24-fe0c-4bb7-ab6c-003d114873ae", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "5ba3b457-2dbe-4f13-8783-0e44e08d8dda", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033300Z:c7088a24-fe0c-4bb7-ab6c-003d114873ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728e1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ee52273ba8e5df25cea7adc2f80eea5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dcf47959-d60d-4e59-89f3-444afe817ebf", + "x-ms-client-request-id": "9ee52273ba8e5df25cea7adc2f80eea5", + "x-ms-correlation-request-id": "b44e01a0-9f6b-4663-9df0-bdd514b438b9", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "26e554f5-d3b5-43f7-ba16-4a053eb90f54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033301Z:b44e01a0-9f6b-4663-9df0-bdd514b438b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728e2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3650fad482463d270edf173d99622e4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45744a19-88cf-44de-8ce0-a4ef678b27f4", + "x-ms-client-request-id": "3650fad482463d270edf173d99622e4a", + "x-ms-correlation-request-id": "6c830d20-f6d2-4aeb-969c-461c1c73f703", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "7395f32a-5f71-4f9f-8988-c78b3c08bdf2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033302Z:6c830d20-f6d2-4aeb-969c-461c1c73f703" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728e3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "245b5acf22d567b4e0e1d40862546afc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c14362a5-b627-497e-ba23-c247e84048ef", + "x-ms-client-request-id": "245b5acf22d567b4e0e1d40862546afc", + "x-ms-correlation-request-id": "4634bc12-768b-48b5-ac44-73937d14efae", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "ba6340b5-e0c0-4fd6-a320-98f63d627433", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033304Z:4634bc12-768b-48b5-ac44-73937d14efae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728e4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afa9b086e851f00bfba78faea3b5c4fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe2fe962-5ba0-4e52-9bd2-96b63354d0d8", + "x-ms-client-request-id": "afa9b086e851f00bfba78faea3b5c4fa", + "x-ms-correlation-request-id": "e7417778-9725-4c66-8568-7602e1d2bcc0", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "20170f75-93e6-4757-be49-7dbfdd2098a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033305Z:e7417778-9725-4c66-8568-7602e1d2bcc0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728e5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d50d2fbbca24b2cf46e85564ae1fdaba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21853cfc-9233-477f-bcf3-fc57b216c8c3", + "x-ms-client-request-id": "d50d2fbbca24b2cf46e85564ae1fdaba", + "x-ms-correlation-request-id": "668288d6-70ef-4ce4-8737-48d29ff473ce", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "50280d3b-cecf-4d0a-b6dd-d3fdbb00c7d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033306Z:668288d6-70ef-4ce4-8737-48d29ff473ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728e6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9b61a747fb8e6f84e6b292e9305c42b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9904956-e572-4c56-97f9-f023c602fb7e", + "x-ms-client-request-id": "e9b61a747fb8e6f84e6b292e9305c42b", + "x-ms-correlation-request-id": "29936ecc-abc2-48dd-a689-6becde381202", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "b9446f3f-bb36-4525-8cee-b8035cd9fdea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033308Z:29936ecc-abc2-48dd-a689-6becde381202" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728e7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "324cda1c9547bcd7e0f7686892a642db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "22f87ae1-5845-41f8-b50f-3214bb2cdeb8", + "x-ms-client-request-id": "324cda1c9547bcd7e0f7686892a642db", + "x-ms-correlation-request-id": "e0da5a5c-593f-43f4-9d21-fd81a1a06a73", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "d8bd290c-50c7-4e7e-8f5a-b9dd1bb57fbb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033309Z:e0da5a5c-593f-43f4-9d21-fd81a1a06a73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728e8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "883ad5ccdbfe3c41372686b9a1a11e41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb968c36-7cc2-4654-b40f-eaab9e587715", + "x-ms-client-request-id": "883ad5ccdbfe3c41372686b9a1a11e41", + "x-ms-correlation-request-id": "fbd712fd-17c0-4373-ae6b-72641a5a6dfe", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "435a40d7-5020-4abf-a0a6-109315026c92", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033310Z:fbd712fd-17c0-4373-ae6b-72641a5a6dfe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728e9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3482a24a8d2df7242fa08c1179053a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a80f2d49-0b10-4392-88e3-f07101bc0e42", + "x-ms-client-request-id": "d3482a24a8d2df7242fa08c1179053a8", + "x-ms-correlation-request-id": "b3edede7-2d61-40f7-af40-5324dc9a2772", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "44c22b13-d643-4119-8243-4e1842f7c792", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033312Z:b3edede7-2d61-40f7-af40-5324dc9a2772" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ea-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd614d283bca412c990ffb200f1e1b3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04a76f3a-f40f-481d-af9c-4fbfbeb25881", + "x-ms-client-request-id": "bd614d283bca412c990ffb200f1e1b3f", + "x-ms-correlation-request-id": "fb7d9745-7455-456c-af5d-5016f10a626d", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "f6f3762b-590c-4e71-9531-754b4ffca269", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033313Z:fb7d9745-7455-456c-af5d-5016f10a626d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728eb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "684426d86f5d2408625a4604d27f25a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f461e1e9-80ff-4db9-ab38-d8777f77d2a5", + "x-ms-client-request-id": "684426d86f5d2408625a4604d27f25a7", + "x-ms-correlation-request-id": "ee8aaf7c-32ff-432f-a0ad-90ea884665b9", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "6400be9b-538b-486e-ad0e-7edba2053c3e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033314Z:ee8aaf7c-32ff-432f-a0ad-90ea884665b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ec-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5391ddd26140e876fe063ac3ac51cf24", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6bffa8f-3287-4d12-bb8c-958618df16e7", + "x-ms-client-request-id": "5391ddd26140e876fe063ac3ac51cf24", + "x-ms-correlation-request-id": "ba998469-1bd2-4f4c-800f-4164608a2c74", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "2ce329b9-f700-4d65-8ae8-c125da211da5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033316Z:ba998469-1bd2-4f4c-800f-4164608a2c74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ed-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1e8c9dfeb4bb94a443c5a6ff5276f19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e073674b-d55f-41e0-9a9f-8126751f1282", + "x-ms-client-request-id": "f1e8c9dfeb4bb94a443c5a6ff5276f19", + "x-ms-correlation-request-id": "15061ce9-3ab1-4fab-8c73-c8352b661c82", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "c84ae070-2ff2-4ee3-857c-fa59d3ab2a4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033317Z:15061ce9-3ab1-4fab-8c73-c8352b661c82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ee-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "314d54eac78c77feaf5b695734457811", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d54bc148-a6a4-46da-9db5-1389643cab18", + "x-ms-client-request-id": "314d54eac78c77feaf5b695734457811", + "x-ms-correlation-request-id": "fd0eb087-9367-4270-b01e-3ffc23be5cfb", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "3164e4c7-2788-4afd-a903-9d3c683eecf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033318Z:fd0eb087-9367-4270-b01e-3ffc23be5cfb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ef-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0825218b3496e75b92d70f040607f3d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c44f2e28-194d-4ad9-b29e-2d88db804019", + "x-ms-client-request-id": "0825218b3496e75b92d70f040607f3d6", + "x-ms-correlation-request-id": "515d9ebd-7564-482c-931b-25d4b234b110", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "4fa79b5b-2d4b-4893-bba7-84ec53878557", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033320Z:515d9ebd-7564-482c-931b-25d4b234b110" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728f0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "57d820979e031897cb7141ef81f384fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8287758-f842-4917-891f-ea034eaba3fa", + "x-ms-client-request-id": "57d820979e031897cb7141ef81f384fe", + "x-ms-correlation-request-id": "e682cc3b-73e2-46c9-8c86-ed849af8a685", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "179837ef-0ac7-41da-9c50-da90edc6bca0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033322Z:e682cc3b-73e2-46c9-8c86-ed849af8a685" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728f1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d3e449c36602b682f9669fb5b7fa71a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6904e10a-f1fe-4f37-840a-989d4b39e15c", + "x-ms-client-request-id": "d3e449c36602b682f9669fb5b7fa71a8", + "x-ms-correlation-request-id": "fde19d77-e49d-4527-81c3-5522cbea3739", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "5e5487fd-ebc2-4b24-8937-fe07c564a933", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033323Z:fde19d77-e49d-4527-81c3-5522cbea3739" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728f2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13c09368216ded0d890d3d25f26c659f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db23696d-26ba-44be-b279-9d25ba09e8d2", + "x-ms-client-request-id": "13c09368216ded0d890d3d25f26c659f", + "x-ms-correlation-request-id": "3f2c417f-0480-43e3-8810-732b32d62afc", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "290401cc-fff8-48f4-a566-210d98af7954", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033324Z:3f2c417f-0480-43e3-8810-732b32d62afc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728f3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc4010521f2230d39e215e9cfee260d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92480c13-37c3-4b59-8558-b65631a0c089", + "x-ms-client-request-id": "bc4010521f2230d39e215e9cfee260d0", + "x-ms-correlation-request-id": "aac5b51d-a351-4131-b488-432415e78f47", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "4b73d7f1-b2c2-4cf5-8a74-25b64766f2a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033326Z:aac5b51d-a351-4131-b488-432415e78f47" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728f4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee8699007033a2913cf749f5295dc48c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd299d8e-2b2e-47fd-b2b1-557968daad8e", + "x-ms-client-request-id": "ee8699007033a2913cf749f5295dc48c", + "x-ms-correlation-request-id": "d9f5b24f-9ae4-451f-bbcc-f267aa7ab279", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "26a98e59-da16-4c97-9ce1-cb059c7755bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033327Z:d9f5b24f-9ae4-451f-bbcc-f267aa7ab279" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728f5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7620001b4ba4985bf90754cc270eea7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee2d9617-b26a-4816-916a-560623d7680b", + "x-ms-client-request-id": "a7620001b4ba4985bf90754cc270eea7", + "x-ms-correlation-request-id": "a980aee3-3d5e-4aa9-b96e-15f7c4e438e5", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "f9491348-34e2-4dc9-a5bc-749c958743e4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033328Z:a980aee3-3d5e-4aa9-b96e-15f7c4e438e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728f6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59256dac76e5e26c7f9d7f2ad5de0641", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d749ac8-6500-4949-a5ed-c99d2da58942", + "x-ms-client-request-id": "59256dac76e5e26c7f9d7f2ad5de0641", + "x-ms-correlation-request-id": "16888803-90eb-4471-b738-bd41210f66ed", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "bf514dad-8a2f-4fcf-bec7-55e6b0e0a377", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033330Z:16888803-90eb-4471-b738-bd41210f66ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728f7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe9bd15db9804b16133d2ea2fb45dfcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d05be124-edf9-4097-8afd-bdbb94843e21", + "x-ms-client-request-id": "fe9bd15db9804b16133d2ea2fb45dfcc", + "x-ms-correlation-request-id": "bc86d0a6-58e0-45ec-a40d-2bdcacf3bac5", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "9e2dbf34-ff02-4318-984f-2e16f1146ea1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033332Z:bc86d0a6-58e0-45ec-a40d-2bdcacf3bac5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728f8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc48a2096b388aa79380271c355b74e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a190bec0-86ba-4eff-adef-b9bf9a64ecbd", + "x-ms-client-request-id": "bc48a2096b388aa79380271c355b74e1", + "x-ms-correlation-request-id": "2525602b-1c32-49c3-a743-9215c6e4594f", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "1b1d9816-b254-4116-8578-df8eee60ffd5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033333Z:2525602b-1c32-49c3-a743-9215c6e4594f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728f9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1ee3489efd5f32756d945a848c9e63a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "501c915f-7e86-47e8-a790-db9b9981f6b4", + "x-ms-client-request-id": "f1ee3489efd5f32756d945a848c9e63a", + "x-ms-correlation-request-id": "01982ef7-fe7c-485a-a544-f682df3d6483", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "c9377c25-d4a7-4bd5-a34e-ae6bfa39d2d4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033334Z:01982ef7-fe7c-485a-a544-f682df3d6483" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728fa-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3320b3bd4a95f20929106a0091f916b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa4da641-ec5a-4f40-8cac-c3cce9bc15a2", + "x-ms-client-request-id": "3320b3bd4a95f20929106a0091f916b7", + "x-ms-correlation-request-id": "3b55b325-9a18-4bd6-9ee1-4e355cd10254", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "1600d014-52fd-4878-ab8e-19a978e89ad2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033336Z:3b55b325-9a18-4bd6-9ee1-4e355cd10254" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728fb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7194dc9ee561af67b54655e25ff42ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb8607bc-c41b-40c0-90b7-e6ddd71bb189", + "x-ms-client-request-id": "c7194dc9ee561af67b54655e25ff42ca", + "x-ms-correlation-request-id": "eb524dff-9a64-48bc-ad43-e5cb93666682", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "7c2496cd-1b73-4d68-8341-115faac4d084", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033338Z:eb524dff-9a64-48bc-ad43-e5cb93666682" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728fc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "815eed99413a3e4b2afcc7c58427625d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec45cfff-f051-4fc4-ad3d-0647b92138b7", + "x-ms-client-request-id": "815eed99413a3e4b2afcc7c58427625d", + "x-ms-correlation-request-id": "c041670a-f2f1-4a41-a554-2131135dd1f6", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "785b730e-5424-450f-b870-93065d644d51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033339Z:c041670a-f2f1-4a41-a554-2131135dd1f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728fd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fadf8ec31fafcfe4bc06b840e5abcd2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ebb2d65b-eab4-4aa6-b705-1da192fedd69", + "x-ms-client-request-id": "fadf8ec31fafcfe4bc06b840e5abcd2a", + "x-ms-correlation-request-id": "19b8f632-63fa-4939-b221-30eaf988a471", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "c8d16119-b7a3-441f-b8e1-96841dc991e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033341Z:19b8f632-63fa-4939-b221-30eaf988a471" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728fe-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a466a0cd949a887d01da9c5927319553", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dc2a4f51-3968-4cd6-94e9-6a6ea8293922", + "x-ms-client-request-id": "a466a0cd949a887d01da9c5927319553", + "x-ms-correlation-request-id": "1277ee72-5bd1-4522-930e-23047f901d9c", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "c0e6a575-68fb-4283-a714-47764b3531fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033342Z:1277ee72-5bd1-4522-930e-23047f901d9c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671728ff-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "979a07f2471f791a088fc433890a597f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b80b92f-4cf1-417c-83af-1b54f036eb46", + "x-ms-client-request-id": "979a07f2471f791a088fc433890a597f", + "x-ms-correlation-request-id": "d5c49b12-1591-4b36-8db2-bbc593a64d29", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "a51bda5a-7e23-44f6-a291-d0f390eedc10", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033343Z:d5c49b12-1591-4b36-8db2-bbc593a64d29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172900-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4f79c2fbdc02ec21057f9d4828aa78b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5357534-d18e-4480-923d-7f1f61ee283f", + "x-ms-client-request-id": "e4f79c2fbdc02ec21057f9d4828aa78b", + "x-ms-correlation-request-id": "277cfbbf-eee1-4cf2-a881-1ae33c9c9ac4", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "295f5708-e443-47eb-b17c-0b08866611c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033344Z:277cfbbf-eee1-4cf2-a881-1ae33c9c9ac4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172901-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd4e64713510850a85ed9b0bcf49fff7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca660ac3-da3c-4b65-b638-bb23f8f6729e", + "x-ms-client-request-id": "dd4e64713510850a85ed9b0bcf49fff7", + "x-ms-correlation-request-id": "0dba201f-49ed-4287-92d4-8eb7501ee8b0", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "3bb41d91-31a4-4414-a6ec-6a5dce1f16bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033346Z:0dba201f-49ed-4287-92d4-8eb7501ee8b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172902-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a2a1c81b0393593456c86c84e45f77e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0444b5a9-6f1d-4685-a5bc-7e6ce582aceb", + "x-ms-client-request-id": "8a2a1c81b0393593456c86c84e45f77e", + "x-ms-correlation-request-id": "af22c141-6fed-4fe8-8827-43be3d5c1141", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "11a45080-dd57-48b4-a109-f3e27d22745c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033348Z:af22c141-6fed-4fe8-8827-43be3d5c1141" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172903-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24c139e77bbcf96f91725fd321b75ec6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd8d0602-a768-4a91-a679-d21f99373881", + "x-ms-client-request-id": "24c139e77bbcf96f91725fd321b75ec6", + "x-ms-correlation-request-id": "f85578bd-2175-4550-9026-29f5e311ba64", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "dff8f8b7-ed56-498b-9a20-1291b8dc07a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033350Z:f85578bd-2175-4550-9026-29f5e311ba64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172904-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "655301581c5fc051d01897a3af42363f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33df7b5c-6734-42ae-b0ff-47fcd288e859", + "x-ms-client-request-id": "655301581c5fc051d01897a3af42363f", + "x-ms-correlation-request-id": "7e5be2cc-6c21-46b6-9353-7cc656ce0550", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "d705e366-a43f-4f54-a458-155c66266293", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033351Z:7e5be2cc-6c21-46b6-9353-7cc656ce0550" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172905-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96231df6da88053aad31f9c751c0138e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "867076a0-db09-4c92-956f-610ec2137df7", + "x-ms-client-request-id": "96231df6da88053aad31f9c751c0138e", + "x-ms-correlation-request-id": "5cac3e25-0108-459c-a390-d7e91278b900", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "3421a2b2-7f74-402a-880e-17ab0a24608a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033353Z:5cac3e25-0108-459c-a390-d7e91278b900" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172906-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4c70bf0d91f2cb1ee80054a3e3cb4a4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2467b37b-052c-454c-807a-aa803a89d5de", + "x-ms-client-request-id": "4c70bf0d91f2cb1ee80054a3e3cb4a4f", + "x-ms-correlation-request-id": "a2ceb6b3-99ff-4200-a9d0-0ed7aa0875da", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "74e65aea-0ecb-4895-be02-a63c90b80339", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033354Z:a2ceb6b3-99ff-4200-a9d0-0ed7aa0875da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172907-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04dd1f3bc8937e3ec74db82e238a6f0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f77646ce-4a8d-4bb1-83e1-e8f745aa48a8", + "x-ms-client-request-id": "04dd1f3bc8937e3ec74db82e238a6f0f", + "x-ms-correlation-request-id": "b1c1f3f5-bccd-4711-8dcb-0a8d8bdee694", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "53351157-3115-4062-8c3a-4389435c2aeb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033356Z:b1c1f3f5-bccd-4711-8dcb-0a8d8bdee694" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172908-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef960904ead1654dfe58ae87859621e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0f493417-3df1-491e-a14b-e0a5e6b369d0", + "x-ms-client-request-id": "ef960904ead1654dfe58ae87859621e1", + "x-ms-correlation-request-id": "fba96ab5-53e5-4265-aad6-2988136440f7", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "cd77efc2-a351-44bf-ba32-3c4ab6a7e1f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033357Z:fba96ab5-53e5-4265-aad6-2988136440f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172909-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "328caae60fe345fa80f285a4d8f0a75d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:33:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15f4e8b2-f032-4ef3-8a4d-e8d0aa5c7152", + "x-ms-client-request-id": "328caae60fe345fa80f285a4d8f0a75d", + "x-ms-correlation-request-id": "b01c7f56-a7b6-4a9b-a5f3-cd7b049fd48c", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "c10dc05e-9e9e-49ef-82d4-e424fde9db6e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033358Z:b01c7f56-a7b6-4a9b-a5f3-cd7b049fd48c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717290a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da9f45915a35517dd178063b19b7f830", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0488a65f-984e-469d-93a4-5aa6227ddc33", + "x-ms-client-request-id": "da9f45915a35517dd178063b19b7f830", + "x-ms-correlation-request-id": "9cea8d98-c63f-4d0b-abc5-9527ea1cca40", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "3e10adee-b83a-4da9-adb3-f5389c61392e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033400Z:9cea8d98-c63f-4d0b-abc5-9527ea1cca40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717290b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7847d72c3cfef52b0e506edf65a98c0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fa3e7e2-6377-4d07-b001-e1632e07c4eb", + "x-ms-client-request-id": "7847d72c3cfef52b0e506edf65a98c0e", + "x-ms-correlation-request-id": "3a7c1fcf-0b58-4710-b696-3e7abcaaffc6", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "07b3c076-d6eb-497a-94a3-aa91e41cf77c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033401Z:3a7c1fcf-0b58-4710-b696-3e7abcaaffc6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717290c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ff550b047f78cab2d3a606b09bf2bc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "116b88d9-5207-452c-911e-e14f55c71274", + "x-ms-client-request-id": "3ff550b047f78cab2d3a606b09bf2bc9", + "x-ms-correlation-request-id": "15264ed8-bef3-4e84-b7e9-d1903bcc8385", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "b0f52e15-8509-4442-bbb8-53d4eb523eac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033402Z:15264ed8-bef3-4e84-b7e9-d1903bcc8385" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717290d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "007854f92ea8555f19a9cbe4eb9dec28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "490bb9a1-3598-45a3-8aec-960191629012", + "x-ms-client-request-id": "007854f92ea8555f19a9cbe4eb9dec28", + "x-ms-correlation-request-id": "bd78e2c9-0eae-4a6e-a66d-6e226d6fb567", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "9b4bf20f-a010-4d67-869f-bccab1d093f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033404Z:bd78e2c9-0eae-4a6e-a66d-6e226d6fb567" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717290e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c98af7ebb9c2e5392bbb4bc3dcc0ec4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc473291-2ef2-4ce7-98a1-93306b69285d", + "x-ms-client-request-id": "c98af7ebb9c2e5392bbb4bc3dcc0ec4f", + "x-ms-correlation-request-id": "d04f28bd-1383-4fdb-a841-05718caae60e", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "02bd88f5-8ab3-4cf1-8b75-d5f576772ee5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033405Z:d04f28bd-1383-4fdb-a841-05718caae60e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717290f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10e6a5258b308165f0a0264d7bc7a08f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e592a2f-f92f-4588-acbd-401b2c5f575e", + "x-ms-client-request-id": "10e6a5258b308165f0a0264d7bc7a08f", + "x-ms-correlation-request-id": "4aa2148c-9439-419d-9f5b-67384d022e42", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "97f6ec70-685b-4c3e-b144-c8ac25a20803", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033406Z:4aa2148c-9439-419d-9f5b-67384d022e42" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172910-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1180374e613440061b92d5ede39c7859", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be3f4879-aa11-4b9e-888d-4cd1f1c1fadf", + "x-ms-client-request-id": "1180374e613440061b92d5ede39c7859", + "x-ms-correlation-request-id": "09d146c2-603d-4e20-8dee-ff8a7ee25f9a", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "edeeec41-1266-46ca-b2c8-0ecddb78d275", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033408Z:09d146c2-603d-4e20-8dee-ff8a7ee25f9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172911-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "46bf7cbddbb65ff79109d82192eb6964", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1b57c8a-1668-4ef1-967e-d4d51d40d449", + "x-ms-client-request-id": "46bf7cbddbb65ff79109d82192eb6964", + "x-ms-correlation-request-id": "1cfbbcbd-4692-47a4-8042-16662c196dd7", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "f23cf688-87e8-4d82-8484-76e7093a1516", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033409Z:1cfbbcbd-4692-47a4-8042-16662c196dd7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172912-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a474bb1ada3fc31a9ea6f49eb6789e54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08d28f79-dea5-42af-9481-0e2cf37ce627", + "x-ms-client-request-id": "a474bb1ada3fc31a9ea6f49eb6789e54", + "x-ms-correlation-request-id": "6b0dad05-e120-4079-b8ad-895455da9e24", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "a105c56b-cbc7-44bc-a3d8-5acd2fb296df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033410Z:6b0dad05-e120-4079-b8ad-895455da9e24" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172913-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff90cd275a0773d83f207f2b89e4ad30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d61e27e1-86bd-4527-a551-b735b6095525", + "x-ms-client-request-id": "ff90cd275a0773d83f207f2b89e4ad30", + "x-ms-correlation-request-id": "48c77d59-d941-4b95-aacf-bbad3a4a3b9b", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "94b7e14f-f1a0-4c40-a526-d000cc7c3d46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033412Z:48c77d59-d941-4b95-aacf-bbad3a4a3b9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172914-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "27d27029d328e21961fba710e659a819", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54473186-338c-48ee-8426-a4100ffb4865", + "x-ms-client-request-id": "27d27029d328e21961fba710e659a819", + "x-ms-correlation-request-id": "86d703f2-7ef8-4d2a-8bb2-ff225c5956e3", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "7945dbff-846b-4df0-8ef7-fda5cf7cf8d2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033413Z:86d703f2-7ef8-4d2a-8bb2-ff225c5956e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172915-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5fa846a6a5bbf5ce300651f5bef3ab9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf672865-067e-4a73-bd54-8d22e70d69a3", + "x-ms-client-request-id": "c5fa846a6a5bbf5ce300651f5bef3ab9", + "x-ms-correlation-request-id": "0451f607-f440-4fa2-91f2-599131aafc37", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "df70cdc0-5327-4b1a-a491-4d7d3e5a545a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033414Z:0451f607-f440-4fa2-91f2-599131aafc37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172916-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4574c4f977a6532bb3ad9d0cb2c88ce5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aea08995-9395-43b6-baad-aacce0355863", + "x-ms-client-request-id": "4574c4f977a6532bb3ad9d0cb2c88ce5", + "x-ms-correlation-request-id": "3c9f9986-718c-4167-9ec2-476b378e72af", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "afdab097-9a43-4eb8-b4de-d5217ed33456", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033416Z:3c9f9986-718c-4167-9ec2-476b378e72af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172917-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04c06677e8eabfd4141244276efa8772", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4ad5820-a0ca-4ea5-a05d-cc9c7bde6830", + "x-ms-client-request-id": "04c06677e8eabfd4141244276efa8772", + "x-ms-correlation-request-id": "bf354fa9-e373-4d19-af49-9fb1f6eb316d", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "09f9def3-1067-42c0-a761-fa288e72ac56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033417Z:bf354fa9-e373-4d19-af49-9fb1f6eb316d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172918-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2217eec062e5f37258a611aecc4f0d1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "894cdf8d-85cf-4543-b321-b68e18efbc24", + "x-ms-client-request-id": "2217eec062e5f37258a611aecc4f0d1a", + "x-ms-correlation-request-id": "ccffa529-4aeb-45bf-96fa-25535f32679d", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "bc5af194-e7f3-4648-a33f-91e50c5ae064", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033418Z:ccffa529-4aeb-45bf-96fa-25535f32679d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172919-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4a77f74352e10ceefb531933304e5b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "03a839bf-3b20-4f90-852c-cc6c3a5529bd", + "x-ms-client-request-id": "f4a77f74352e10ceefb531933304e5b9", + "x-ms-correlation-request-id": "f0d47d3f-a3c6-4d9c-8672-52d9b24f9ed0", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "318a74e0-4776-4dff-82cc-906bf1aaf7f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033420Z:f0d47d3f-a3c6-4d9c-8672-52d9b24f9ed0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717291a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c44b2b256ab11400f3cdac44d626f2c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "893ec29f-8532-4cfd-a015-090964087593", + "x-ms-client-request-id": "c44b2b256ab11400f3cdac44d626f2c4", + "x-ms-correlation-request-id": "2bfa584d-5a0b-4fbc-a18a-77c5c7b19ea3", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "fc82be5f-b38f-4702-bbbd-f6e8fe68f255", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033421Z:2bfa584d-5a0b-4fbc-a18a-77c5c7b19ea3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717291b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eeb3290593528a441f06322f31dfc054", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bcffa638-c96f-4042-af40-efe5eb2f2af5", + "x-ms-client-request-id": "eeb3290593528a441f06322f31dfc054", + "x-ms-correlation-request-id": "39b32602-53a0-4efd-8ce0-68065a0fb709", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "b6020350-51d9-4651-8c59-bc3341c29c48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033422Z:39b32602-53a0-4efd-8ce0-68065a0fb709" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717291c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a18857c049040a697f920060898a3ac8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6aca1e8f-8286-407e-bf20-03a16912db0a", + "x-ms-client-request-id": "a18857c049040a697f920060898a3ac8", + "x-ms-correlation-request-id": "0f538f54-d21c-4672-a9ea-5d9c4ad67305", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "7536a048-026a-434f-ad6e-5f6ecd6f19e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033424Z:0f538f54-d21c-4672-a9ea-5d9c4ad67305" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717291d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "098e6dc2f7519266e6c0a4ab37d0e314", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25899076-48dc-46ce-b2f0-6a8a4a901bf8", + "x-ms-client-request-id": "098e6dc2f7519266e6c0a4ab37d0e314", + "x-ms-correlation-request-id": "6ab76886-0109-401f-9ef0-fe8a1813409f", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "861aaedf-8f92-4678-bf92-9a0f8755212c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033425Z:6ab76886-0109-401f-9ef0-fe8a1813409f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717291e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e83570d519ebcbfc0a86ec092e30195", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4c2573d-b576-40e3-8a9b-9b9c6cbe788c", + "x-ms-client-request-id": "7e83570d519ebcbfc0a86ec092e30195", + "x-ms-correlation-request-id": "24b67299-15b7-40dd-bd4a-32810d9d3f7e", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "f9fb694a-b8d6-4587-9a6a-cb02308a8403", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033426Z:24b67299-15b7-40dd-bd4a-32810d9d3f7e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717291f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c36d69ccb651c902f1f6ba43a4bed2af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f2ef8d7-c6fb-4a0c-877d-b47939dade8a", + "x-ms-client-request-id": "c36d69ccb651c902f1f6ba43a4bed2af", + "x-ms-correlation-request-id": "bd9c3fdf-0b31-48ad-a7fc-5c42d3f0a0ab", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "170f4d9f-bf4a-422c-a7b8-2299268dc42a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033428Z:bd9c3fdf-0b31-48ad-a7fc-5c42d3f0a0ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172920-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3153ecaebb06712aadd248a888a6ff03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1cd16f96-1bb0-4f4d-a76d-455d80bd55e3", + "x-ms-client-request-id": "3153ecaebb06712aadd248a888a6ff03", + "x-ms-correlation-request-id": "4b5cd99a-9809-48b6-844f-5c82375c87db", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "bc58bbe8-4945-447d-8136-4e7fe82dfaae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033429Z:4b5cd99a-9809-48b6-844f-5c82375c87db" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172921-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdde0fbf206356c354ba8da7977c1702", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e006999-1ef1-4ec0-8693-3653629e916f", + "x-ms-client-request-id": "cdde0fbf206356c354ba8da7977c1702", + "x-ms-correlation-request-id": "4de32188-3cca-4c7a-a4ac-f5eddd4fb0cb", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "9e658ffb-c81d-446e-8477-90dddf477bb2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033430Z:4de32188-3cca-4c7a-a4ac-f5eddd4fb0cb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/7894ebee-5541-43a7-a834-e6f7b19f5f6e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172922-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a512bfd5cf90108e3ffb157e6e5a414b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56957dcb-b199-410e-b7bb-fd8dfcae44b1", + "x-ms-client-request-id": "a512bfd5cf90108e3ffb157e6e5a414b", + "x-ms-correlation-request-id": "4cd3c1a9-1714-4e9d-aecb-c9d30b3e3ec0", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "ab0cdfe6-fc0c-44ba-86c4-b4bba830f16c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033432Z:4cd3c1a9-1714-4e9d-aecb-c9d30b3e3ec0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172923-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9583b7f605df8d4b29fcdc4b2d83da31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2412", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "829562a4-ce0c-4bee-8d8a-01b9448f31d8", + "x-ms-client-request-id": "9583b7f605df8d4b29fcdc4b2d83da31", + "x-ms-correlation-request-id": "e7ef7eb0-77f6-4609-a2f4-25f6eb07d053", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "282b6f7c-ba34-470e-9f07-9b8cdbff9989", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033432Z:e7ef7eb0-77f6-4609-a2f4-25f6eb07d053" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6086\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022879df31e-1b41-425c-928a-a542a775c463\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002213b44b85-f79d-4d90-88c2-0e52c7ca6fd7\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet705\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086/ipConfigurations/azsmnet705\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022879df31e-1b41-425c-928a-a542a775c463\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.54.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086/ipConfigurations/azsmnet705\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.54.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002223.100.29.26\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/csmrg4960?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "22", + "Content-Type": "application/json", + "traceparent": "00-71eef6c662a21d49899577a577572675-ad74a43419547b4b-00", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "93c8d245725a80efce8e670b44e8fa79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2" + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "216", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a0e4247d-024e-4853-8b28-dca08f5a37c7", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "a0e4247d-024e-4853-8b28-dca08f5a37c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033434Z:a0e4247d-024e-4853-8b28-dca08f5a37c7" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960", + "name": "csmrg4960", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "192", + "Content-Type": "application/json", + "Request-Id": "|67172924-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "82f9e0b0d02384737c93f242e2bc21e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "addressSpace": { + "addressPrefixes": [ + "10.55.0.0/16" + ] + }, + "subnets": [ + { + "name": "GatewaySubnet", + "id": null, + "properties": { + "addressPrefix": "10.55.0.0/24" + } + } + ] + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/aab96617-4ecd-47f5-aaa6-399a652c3313?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1235", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "3", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b410aaed-b5bd-43f3-adce-ee7a708f02cb", + "x-ms-client-request-id": "82f9e0b0d02384737c93f242e2bc21e4", + "x-ms-correlation-request-id": "01d9d338-9d1e-4625-821a-2e4a32993b85", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "aab96617-4ecd-47f5-aaa6-399a652c3313", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033439Z:01d9d338-9d1e-4625-821a-2e4a32993b85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5128\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022317119ac-421c-4fbd-bce7-2577df790a14\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022a5a049b9-d17e-4f1b-934b-0a3cc900590e\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.55.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022317119ac-421c-4fbd-bce7-2577df790a14\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.55.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/aab96617-4ecd-47f5-aaa6-399a652c3313?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172925-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fad2ebd237380222540fdddefd3debd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "362efa8a-9406-47bd-b438-f9776ee5c658", + "x-ms-client-request-id": "fad2ebd237380222540fdddefd3debd2", + "x-ms-correlation-request-id": "85beef7d-bd8d-4676-abc4-cd8270b8f680", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "0ceda777-4cea-4bba-a3f6-bda3efd77206", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033439Z:85beef7d-bd8d-4676-abc4-cd8270b8f680" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/aab96617-4ecd-47f5-aaa6-399a652c3313?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172926-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c08027450173148b9b656e12598f0198", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87ab8054-4b4b-40b8-a58a-15c86fe782dd", + "x-ms-client-request-id": "c08027450173148b9b656e12598f0198", + "x-ms-correlation-request-id": "b00fc894-5720-4bb5-abd6-ee632e3dd7d6", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "c1b94a08-f12f-4ce5-86ed-b19e3d4d8c7e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033440Z:b00fc894-5720-4bb5-abd6-ee632e3dd7d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/aab96617-4ecd-47f5-aaa6-399a652c3313?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172927-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f770108027e98cab058423a7be6596d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74cd0436-c727-4592-9a61-07ce425d9ba7", + "x-ms-client-request-id": "f770108027e98cab058423a7be6596d6", + "x-ms-correlation-request-id": "7b13d81e-215c-417d-a2c9-ccd8c8d4bbd8", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "34ba1ccf-aa31-4d59-82f2-d50bf662467d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033441Z:7b13d81e-215c-417d-a2c9-ccd8c8d4bbd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172928-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b9fa4255364d16e60bd5ed2c90fa9c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1237", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:42 GMT", + "ETag": "W/\u002223ef5a09-de21-487a-899f-df3211e475e3\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61d34cc2-a7c6-4846-b2cb-5f349652abf3", + "x-ms-client-request-id": "5b9fa4255364d16e60bd5ed2c90fa9c5", + "x-ms-correlation-request-id": "ce119b5c-7a36-4db9-815c-f02f2c28a589", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "55ca04ad-13bc-4f4d-aaa3-4344057bd0fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033442Z:ce119b5c-7a36-4db9-815c-f02f2c28a589" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5128\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002223ef5a09-de21-487a-899f-df3211e475e3\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022a5a049b9-d17e-4f1b-934b-0a3cc900590e\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.55.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002223ef5a09-de21-487a-899f-df3211e475e3\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.55.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|67172929-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec5e450ef4cd1de87bf3baeedde35536", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1237", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:42 GMT", + "ETag": "W/\u002223ef5a09-de21-487a-899f-df3211e475e3\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f023023-c2b9-4e76-8625-c2aa9d24a770", + "x-ms-client-request-id": "ec5e450ef4cd1de87bf3baeedde35536", + "x-ms-correlation-request-id": "6bac6b22-50b0-45e0-b1e7-9f76e60efa93", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "f3b227af-b806-4c7d-9349-e4b6f637631f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033442Z:6bac6b22-50b0-45e0-b1e7-9f76e60efa93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5128\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002223ef5a09-de21-487a-899f-df3211e475e3\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022a5a049b9-d17e-4f1b-934b-0a3cc900590e\u0022,\r\n", + " \u0022addressSpace\u0022: {\r\n", + " \u0022addressPrefixes\u0022: [\r\n", + " \u002210.55.0.0/16\u0022\r\n", + " ]\r\n", + " },\r\n", + " \u0022subnets\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002223ef5a09-de21-487a-899f-df3211e475e3\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.55.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + " }\r\n", + " ],\r\n", + " \u0022virtualNetworkPeerings\u0022: [],\r\n", + " \u0022enableDdosProtection\u0022: false\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128/subnets/GatewaySubnet?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|6717292a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4ed97cea5ef2c33a29f972bc9d9c2f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "539", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:42 GMT", + "ETag": "W/\u002223ef5a09-de21-487a-899f-df3211e475e3\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d8aa3c9-d162-497b-8d5e-ad06718cf9c5", + "x-ms-client-request-id": "b4ed97cea5ef2c33a29f972bc9d9c2f6", + "x-ms-correlation-request-id": "dbc8a9e1-43c9-4d27-a97a-5d1c1089771c", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "64d48838-2c89-4f46-afa2-fc1efe025b1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033442Z:dbc8a9e1-43c9-4d27-a97a-5d1c1089771c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022GatewaySubnet\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128/subnets/GatewaySubnet\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002223ef5a09-de21-487a-899f-df3211e475e3\\\u0022\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022addressPrefix\u0022: \u002210.55.0.0/24\u0022,\r\n", + " \u0022delegations\u0022: [],\r\n", + " \u0022privateEndpointNetworkPolicies\u0022: \u0022Enabled\u0022,\r\n", + " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "155", + "Content-Type": "application/json", + "Request-Id": "|6717292b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa067999300981bce0709880f47c6827", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "publicIPAllocationMethod": "Dynamic", + "dnsSettings": { + "domainNameLabel": "azsmnet1041" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ff715b6-2b07-4657-bd13-692f1441c68e?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "796", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "1", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d046d1cc-4b97-4840-a470-685a01718f62", + "x-ms-client-request-id": "aa067999300981bce0709880f47c6827", + "x-ms-correlation-request-id": "4f0b6406-c01c-4709-9a9b-779422f1bd98", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "7ff715b6-2b07-4657-bd13-692f1441c68e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033446Z:4f0b6406-c01c-4709-9a9b-779422f1bd98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5028\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022727878f7-7a0d-4d79-ab42-c90afd925643\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022ad0da990-5cb5-4054-ba5b-03f0b19f51db\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet1041\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet1041.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/7ff715b6-2b07-4657-bd13-692f1441c68e?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717292c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db4a7f122430bc8ef76dc5c29421ab1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48df975f-799e-4133-95c3-6877670fdb6f", + "x-ms-client-request-id": "db4a7f122430bc8ef76dc5c29421ab1a", + "x-ms-correlation-request-id": "b0fdb7c5-e84d-4123-a4f1-8b1ac64f4a19", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "901b0239-aacc-4b5b-8607-ddfad5b29949", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033447Z:b0fdb7c5-e84d-4123-a4f1-8b1ac64f4a19" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717292d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91d4a1c3e6d4308767d45fdad4ff2d3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "797", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:47 GMT", + "ETag": "W/\u002207e6f84d-90f2-4eba-a101-88646ef5ba69\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c28613b4-084f-4ccf-9aed-3148fe129d68", + "x-ms-client-request-id": "91d4a1c3e6d4308767d45fdad4ff2d3e", + "x-ms-correlation-request-id": "3f6b5e15-1c07-49e4-9f49-73128a4826c0", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "d75498d8-db33-49b7-8a0b-c4da9bad2876", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033447Z:3f6b5e15-1c07-49e4-9f49-73128a4826c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5028\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002207e6f84d-90f2-4eba-a101-88646ef5ba69\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022ad0da990-5cb5-4054-ba5b-03f0b19f51db\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet1041\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet1041.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|6717292e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "746dd3408c32dff7a264fd68a24f9d28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "797", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:47 GMT", + "ETag": "W/\u002207e6f84d-90f2-4eba-a101-88646ef5ba69\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04582a88-b943-4f37-83b8-cd105d6733c3", + "x-ms-client-request-id": "746dd3408c32dff7a264fd68a24f9d28", + "x-ms-correlation-request-id": "3a41df68-e545-4fac-b9dd-8057845a7b2f", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "e6ea7130-d925-461a-a694-3d6c907aa51b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033447Z:3a41df68-e545-4fac-b9dd-8057845a7b2f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet5028\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002207e6f84d-90f2-4eba-a101-88646ef5ba69\\\u0022\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022ad0da990-5cb5-4054-ba5b-03f0b19f51db\u0022,\r\n", + " \u0022publicIPAddressVersion\u0022: \u0022IPv4\u0022,\r\n", + " \u0022publicIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022idleTimeoutInMinutes\u0022: 4,\r\n", + " \u0022dnsSettings\u0022: {\r\n", + " \u0022domainNameLabel\u0022: \u0022azsmnet1041\u0022,\r\n", + " \u0022fqdn\u0022: \u0022azsmnet1041.westus2.cloudapp.azure.com\u0022\r\n", + " },\r\n", + " \u0022ipTags\u0022: []\r\n", + " },\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/publicIPAddresses\u0022,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Basic\u0022,\r\n", + " \u0022tier\u0022: \u0022Regional\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "573", + "Content-Type": "application/json", + "Request-Id": "|6717292f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fcdb2f92cf019f7745bc4b4e8f84087", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": null, + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet9214", + "id": null, + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "enableBgp": false + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "2535", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7322a3c9-6ada-44a4-b283-348b51b11b6f", + "x-ms-client-request-id": "9fcdb2f92cf019f7745bc4b4e8f84087", + "x-ms-correlation-request-id": "f6c51f65-34b6-4135-8be0-016d61638243", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "02d24a86-f896-4a8d-9377-8e7ef7b34b21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033451Z:f6c51f65-34b6-4135-8be0-016d61638243" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3030\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022420c6d73-a2ac-4b63-aa54-dc048d5f6259\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002299642fa7-daaa-4342-84cd-fa4e8b7a720f\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9214\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030/ipConfigurations/azsmnet9214\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022420c6d73-a2ac-4b63-aa54-dc048d5f6259\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022vpnClientConfiguration\u0022: {\r\n", + " \u0022vpnClientProtocols\u0022: [\r\n", + " \u0022SSTP\u0022\r\n", + " ],\r\n", + " \u0022vpnAuthenticationTypes\u0022: [],\r\n", + " \u0022vpnClientRootCertificates\u0022: [],\r\n", + " \u0022vpnClientRevokedCertificates\u0022: [],\r\n", + " \u0022radiusServers\u0022: [],\r\n", + " \u0022vpnClientIpsecPolicies\u0022: []\r\n", + " },\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 0,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030/ipConfigurations/azsmnet9214\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [],\r\n", + " \u0022customBgpIpAddresses\u0022: []\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172930-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a069257a07040e37d18189b1aee7c05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25277c7c-a693-477b-bb3e-fa6cc30fe3a2", + "x-ms-client-request-id": "7a069257a07040e37d18189b1aee7c05", + "x-ms-correlation-request-id": "3c5215cb-ad8a-465e-85a9-979dee59ba6c", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "9d7966f2-c169-41b7-916d-ee5b079bf551", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033451Z:3c5215cb-ad8a-465e-85a9-979dee59ba6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172931-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dccd1b284d73c25808d7b18043d78b5c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67590a14-681c-4a2c-8d5c-5efebad03090", + "x-ms-client-request-id": "dccd1b284d73c25808d7b18043d78b5c", + "x-ms-correlation-request-id": "363ddd15-6072-40a6-a9e0-d5477294e446", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "a0981717-5cb4-4d10-8ac3-6443eff37cbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033453Z:363ddd15-6072-40a6-a9e0-d5477294e446" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172932-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "565c8d25c5f1e116dd74b8d01e0edaff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52ba8f11-f864-43d5-9386-bc704069514c", + "x-ms-client-request-id": "565c8d25c5f1e116dd74b8d01e0edaff", + "x-ms-correlation-request-id": "9c085077-c429-412a-a66c-37528ae06e74", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "707d6da1-f3c7-411c-a488-1890de5595a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033454Z:9c085077-c429-412a-a66c-37528ae06e74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172933-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72f7e3f3594a0ac339437298ef63fca6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4e21dff-2ef5-4226-9a59-541117fce8df", + "x-ms-client-request-id": "72f7e3f3594a0ac339437298ef63fca6", + "x-ms-correlation-request-id": "fbc0fdad-8774-444a-ac6a-0f59c8b2ea00", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "fb28a38f-909e-4bf5-8db5-a7ac909af5c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033455Z:fbc0fdad-8774-444a-ac6a-0f59c8b2ea00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172934-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d76bb8d2592621304ebffff9488a4fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da66de47-fc78-4cb1-ab7f-55f1ff0f8e12", + "x-ms-client-request-id": "8d76bb8d2592621304ebffff9488a4fa", + "x-ms-correlation-request-id": "ad1b59d8-4ff4-413b-9f75-59d674ced8ca", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "351e86cc-3f39-498b-b706-41ea3e0adf98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033456Z:ad1b59d8-4ff4-413b-9f75-59d674ced8ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172935-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "608cb2fd18e0cb11ca521dae527df279", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "773d1fca-d188-4274-8cc3-a36b19a093f9", + "x-ms-client-request-id": "608cb2fd18e0cb11ca521dae527df279", + "x-ms-correlation-request-id": "3d9d8199-b17b-4df4-94e0-d37e469fb30f", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "a2df02c6-f550-4a88-a8c2-48b1394227ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033458Z:3d9d8199-b17b-4df4-94e0-d37e469fb30f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172936-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "624212774d97cd6dcf946d5f59c375b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:34:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "becfaa6b-2f4a-403b-ac34-92aa3cf44c21", + "x-ms-client-request-id": "624212774d97cd6dcf946d5f59c375b0", + "x-ms-correlation-request-id": "1cc9a483-ae02-457e-8dda-d203b2f73bb4", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "b3bf6293-00c5-4786-bd3e-ce3b0df34773", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033459Z:1cc9a483-ae02-457e-8dda-d203b2f73bb4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172937-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c9b789e9cd674c6aaaac23f08651087", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "562c9ed8-4669-4636-951d-e28939c81d1a", + "x-ms-client-request-id": "3c9b789e9cd674c6aaaac23f08651087", + "x-ms-correlation-request-id": "3e28817d-1c4f-4cbb-b492-051dafe75fe0", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "36f6fb8c-1938-4bd7-a5ba-e71d852560fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033500Z:3e28817d-1c4f-4cbb-b492-051dafe75fe0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172938-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "828885f84145af6245be904baab17206", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ed9e45e-67f2-4e24-be8e-133a2dc318a0", + "x-ms-client-request-id": "828885f84145af6245be904baab17206", + "x-ms-correlation-request-id": "8e8e5921-cabc-4312-8c17-750f9861b546", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "c10fd9c5-f849-49dd-a4db-2be1e686e3b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033502Z:8e8e5921-cabc-4312-8c17-750f9861b546" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172939-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da0f6cddb5e1daa34ccdb8ed8a2dc56a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "626df9db-e239-48c0-9737-51664b4fabd3", + "x-ms-client-request-id": "da0f6cddb5e1daa34ccdb8ed8a2dc56a", + "x-ms-correlation-request-id": "bb25d4db-553b-4de2-873f-b9869169664b", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "493cc98c-22fa-489a-b511-dcac47318255", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033503Z:bb25d4db-553b-4de2-873f-b9869169664b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717293a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d366e684f23b5d6a15ecf7170c7acaf8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c53e888c-bd6a-40f1-ae8e-59336a8db6d9", + "x-ms-client-request-id": "d366e684f23b5d6a15ecf7170c7acaf8", + "x-ms-correlation-request-id": "f341b374-7eef-43bd-988c-a08ba4db317f", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "54e5c209-d802-48a1-b999-4673223dc3f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033504Z:f341b374-7eef-43bd-988c-a08ba4db317f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717293b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b62bc38355542a5e2ae367789752417", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9864807-14d5-4bd8-b422-3c331f6c3cf6", + "x-ms-client-request-id": "9b62bc38355542a5e2ae367789752417", + "x-ms-correlation-request-id": "ccec74db-9c5b-491a-98c6-f455e98cfed0", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "facbf313-dd3e-44e9-83b0-ffb659d5c25d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033505Z:ccec74db-9c5b-491a-98c6-f455e98cfed0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717293c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3c725f99e4aeacb02b2c5f4bd8bced1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a441fd0-38ff-4627-9a9d-0bb7eab48c5c", + "x-ms-client-request-id": "c3c725f99e4aeacb02b2c5f4bd8bced1", + "x-ms-correlation-request-id": "644c135a-5528-433f-aea4-3173a0034412", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "de1905e4-0a69-4d27-ab47-8b1a4a5ed865", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033507Z:644c135a-5528-433f-aea4-3173a0034412" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717293d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ceb4bf032acb4f144124f18dbcf2d3a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "019f711e-ade2-4109-be52-408575c94b2f", + "x-ms-client-request-id": "ceb4bf032acb4f144124f18dbcf2d3a0", + "x-ms-correlation-request-id": "0e7875e8-8efd-47f6-93dc-b4785a01fdf5", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "9d8a6352-4a26-4e51-909c-7a44377c11c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033508Z:0e7875e8-8efd-47f6-93dc-b4785a01fdf5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717293e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e61ee0c806b39aadf17899a370b08556", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd95dae9-053a-40a0-bc64-f49e8210527e", + "x-ms-client-request-id": "e61ee0c806b39aadf17899a370b08556", + "x-ms-correlation-request-id": "005401af-60b1-4093-bf72-7bac0debb2f9", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "3180239d-3b2b-4aed-a463-324ba4f68c7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033510Z:005401af-60b1-4093-bf72-7bac0debb2f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717293f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c97464e056c0ce4c10778226ac3e2d0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed50ae95-a840-4ce5-957b-ddfecec258a9", + "x-ms-client-request-id": "c97464e056c0ce4c10778226ac3e2d0f", + "x-ms-correlation-request-id": "cd3dc32e-12c8-483b-bd4c-d738c58806d0", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "f5e71ca4-72d7-4757-b23a-fbb8056bb037", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033511Z:cd3dc32e-12c8-483b-bd4c-d738c58806d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172940-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dd2c24dee76dfc1e111adc539171df90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b62bb113-ab2a-4282-9277-9abd8fd9d2b1", + "x-ms-client-request-id": "dd2c24dee76dfc1e111adc539171df90", + "x-ms-correlation-request-id": "dd71db49-c5f0-491f-875e-848e3fb3185d", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "fcb4ea73-66ae-453f-9212-242a54528374", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033512Z:dd71db49-c5f0-491f-875e-848e3fb3185d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172941-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58ad9a9e097e72e0944fd53b8487edb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a7d8a437-3c94-4754-9576-23971e8fb44e", + "x-ms-client-request-id": "58ad9a9e097e72e0944fd53b8487edb3", + "x-ms-correlation-request-id": "2965cbb1-6284-41ac-b346-b82fee2ba34e", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "aa0c4ec6-4ce9-42d5-b20c-1185cd36ab69", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033513Z:2965cbb1-6284-41ac-b346-b82fee2ba34e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172942-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4bc4894aa783f8e94577b8a579f93d9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a65fd8ec-8d18-48ed-9179-eb67ed517651", + "x-ms-client-request-id": "4bc4894aa783f8e94577b8a579f93d9f", + "x-ms-correlation-request-id": "6565853b-7133-497d-a48f-717b244ee06e", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "902b1385-8165-4ea0-a0c4-12e80cc4f6ce", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033515Z:6565853b-7133-497d-a48f-717b244ee06e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172943-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1287f298d590d59044ba491e11e3788a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7c65a64-dcf5-4ebd-b8d6-b407533459cd", + "x-ms-client-request-id": "1287f298d590d59044ba491e11e3788a", + "x-ms-correlation-request-id": "469abb84-96fd-4b7a-bba6-5216da4ddd83", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "c0f680e5-1f1e-462b-8b6c-0af79e1b4efc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033516Z:469abb84-96fd-4b7a-bba6-5216da4ddd83" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172944-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0708292d93acf70cb1b41206513bf89b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9a8036e-3bd2-4d51-8102-e0faca0a1a78", + "x-ms-client-request-id": "0708292d93acf70cb1b41206513bf89b", + "x-ms-correlation-request-id": "3859e95b-1f10-41be-888e-e652ccc16e82", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "3195e807-3eac-421e-96d4-faf9ada9e761", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033518Z:3859e95b-1f10-41be-888e-e652ccc16e82" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172945-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "91a23611dbff7522f9ef07c95ecae762", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cadb2db0-a0c6-442b-9f3a-77df47a4273c", + "x-ms-client-request-id": "91a23611dbff7522f9ef07c95ecae762", + "x-ms-correlation-request-id": "7c6b85fd-6c15-4fbd-84f2-9a947817d3d4", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "cae126ef-0107-49ee-8304-861c0ff6c05f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033519Z:7c6b85fd-6c15-4fbd-84f2-9a947817d3d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172946-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f772dff36f005f3e59060dcc38a8309", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a941d8ec-6c32-40c4-989f-5542b799b75b", + "x-ms-client-request-id": "4f772dff36f005f3e59060dcc38a8309", + "x-ms-correlation-request-id": "2899fdfc-f427-4eb7-a4dc-7b79ae43b4d0", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "427bd83c-777e-4a6b-9620-3062dece68f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033520Z:2899fdfc-f427-4eb7-a4dc-7b79ae43b4d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172947-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db0caec1e641528b07930dbc8c4398e6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b49865c-fef6-4171-92bc-c474293abd57", + "x-ms-client-request-id": "db0caec1e641528b07930dbc8c4398e6", + "x-ms-correlation-request-id": "af34b106-a172-4b1f-b0c1-837061137a5c", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "9c176ade-12fa-405d-ac10-af413dce4146", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033521Z:af34b106-a172-4b1f-b0c1-837061137a5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172948-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2307b0cca9c3daaa429dac6e7a45b26e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "151b686b-987c-4bda-a8ec-2751f85fdd0b", + "x-ms-client-request-id": "2307b0cca9c3daaa429dac6e7a45b26e", + "x-ms-correlation-request-id": "82fe7943-5349-49de-a0d8-414c75eda5b6", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "2e6e8c40-b5e1-4052-82b2-f8b18e094ee2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033523Z:82fe7943-5349-49de-a0d8-414c75eda5b6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172949-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b007fe6c0cbe1821a225485d283678a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "19f520e2-649a-491b-8d1f-49c3a4f85e97", + "x-ms-client-request-id": "b007fe6c0cbe1821a225485d283678a2", + "x-ms-correlation-request-id": "e7870931-1e81-4a79-a10d-9fde413b4c23", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "0e2f46c2-f7f7-421f-b63d-81ca0df0d75b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033525Z:e7870931-1e81-4a79-a10d-9fde413b4c23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717294a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "121079f85f831845033198a43a1cd7c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98a1ae6c-aa8b-4237-8b4c-df153295f65a", + "x-ms-client-request-id": "121079f85f831845033198a43a1cd7c1", + "x-ms-correlation-request-id": "71e0ff72-5469-4129-b335-4247a07edd20", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "a81a82c6-6cd4-44d0-acb6-5117571b842e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033526Z:71e0ff72-5469-4129-b335-4247a07edd20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717294b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e509fe1e73bc0288eee819d604db10b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "76ef5cfa-4b57-4f67-880c-3df710d82ce1", + "x-ms-client-request-id": "8e509fe1e73bc0288eee819d604db10b", + "x-ms-correlation-request-id": "23030164-0381-4039-9195-f67c4dd031d0", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "7c6d01a2-a1a7-4f5d-95e6-d4a2ca67eb1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033527Z:23030164-0381-4039-9195-f67c4dd031d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717294c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "017609249f350cebb8eead8c747dde85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31a089aa-f535-40f3-83d6-617e451804cf", + "x-ms-client-request-id": "017609249f350cebb8eead8c747dde85", + "x-ms-correlation-request-id": "4d1ccddc-f2e8-4837-93f9-765fe5ea7209", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "9b2a4783-726c-4efd-aede-5c2a0cc8939c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033528Z:4d1ccddc-f2e8-4837-93f9-765fe5ea7209" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717294d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "897b874eeae61066504f8494dea8b8b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8c3e4d3-0aaa-4f3d-b2f4-41442d576fbd", + "x-ms-client-request-id": "897b874eeae61066504f8494dea8b8b6", + "x-ms-correlation-request-id": "903d7d7f-79ca-4bb5-aff1-8b29f5c49b92", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "115fdc2d-9cd3-428d-8754-b0dd913aa266", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033530Z:903d7d7f-79ca-4bb5-aff1-8b29f5c49b92" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717294e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31808c80d5a6428cb343d54c3a9b4c11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1a6f7b9-f95c-4495-aba4-d1671270fc1c", + "x-ms-client-request-id": "31808c80d5a6428cb343d54c3a9b4c11", + "x-ms-correlation-request-id": "929d8c11-0afc-403b-ba61-c547bde2316c", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "7b3af7cb-6f17-4ed1-9347-37d6e451eb5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033531Z:929d8c11-0afc-403b-ba61-c547bde2316c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717294f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d84ffb1027d13925a266b0e51b562e10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75a50fed-19d7-4f89-8590-64cf696945e7", + "x-ms-client-request-id": "d84ffb1027d13925a266b0e51b562e10", + "x-ms-correlation-request-id": "d0715e5f-ceef-48d1-87b4-451ff70017da", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "6d718a32-7c2a-4fe5-93c1-b5fb029a3174", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033532Z:d0715e5f-ceef-48d1-87b4-451ff70017da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172950-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e70cf736adfd78dffb39d6a3151ad5b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb792a62-1317-44bb-8675-6867e73dab30", + "x-ms-client-request-id": "e70cf736adfd78dffb39d6a3151ad5b5", + "x-ms-correlation-request-id": "21c7b43e-aa6e-4c58-baa7-8e983ba15f63", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "ee47bde9-15a4-41a2-a561-e78fd333155d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033534Z:21c7b43e-aa6e-4c58-baa7-8e983ba15f63" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172951-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e2847203df5858e467468e4025a6275c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4148d1a7-3c0d-47dd-b0c2-e90ad38f68af", + "x-ms-client-request-id": "e2847203df5858e467468e4025a6275c", + "x-ms-correlation-request-id": "bd3fd98b-7a7e-45f6-85f8-7daaf89b06f5", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "568941fe-b70e-48b9-8549-cd4e29545a09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033535Z:bd3fd98b-7a7e-45f6-85f8-7daaf89b06f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172952-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4316c515648f63141bd7dd9851812388", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35cb3135-097f-4782-ac72-b6d8749790b2", + "x-ms-client-request-id": "4316c515648f63141bd7dd9851812388", + "x-ms-correlation-request-id": "54b50673-793b-4198-8630-13cf30414f07", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "93c8605e-b7c7-4735-9ea3-8b2b9ca1b99f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033536Z:54b50673-793b-4198-8630-13cf30414f07" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172953-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8e1fb904bd256b712b480b61e9f5354", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b566020-5dfe-4f93-85dd-18239d7bc466", + "x-ms-client-request-id": "a8e1fb904bd256b712b480b61e9f5354", + "x-ms-correlation-request-id": "b2a91014-0670-40ae-a163-73a2518ce036", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "fd717f73-ab54-4bb1-95d8-9f2673b45842", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033537Z:b2a91014-0670-40ae-a163-73a2518ce036" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172954-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f8e791291039f255d21c780014c06e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "29eeb714-852c-4ab6-accb-ed902fead38d", + "x-ms-client-request-id": "4f8e791291039f255d21c780014c06e5", + "x-ms-correlation-request-id": "4c40ce4a-cb8a-48d2-aa71-fb1491168598", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "6e5354fc-9658-4620-a8cb-0e0372e784ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033539Z:4c40ce4a-cb8a-48d2-aa71-fb1491168598" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172955-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29af06227ec5ca8a0dbf30dae45e447c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7b5d9a1b-b2a6-4007-aff6-1a8e11261104", + "x-ms-client-request-id": "29af06227ec5ca8a0dbf30dae45e447c", + "x-ms-correlation-request-id": "c06f3c88-d4ca-44a3-9eb0-c4ba806207d7", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "fa3d48c3-813f-4834-876f-c4ca2b45b8df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033540Z:c06f3c88-d4ca-44a3-9eb0-c4ba806207d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172956-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8858984d3f3fe84d5424bb0833654c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3e7a2467-3376-41e8-aaef-9c9fe3b0356d", + "x-ms-client-request-id": "d8858984d3f3fe84d5424bb0833654c6", + "x-ms-correlation-request-id": "019ee355-6827-4ead-a97f-5d51d3b59e27", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "cfe4fa19-6621-4a2c-99bb-0ca83332a547", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033541Z:019ee355-6827-4ead-a97f-5d51d3b59e27" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172957-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18939aae29f0948feec44243614abafe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "be862c3a-05a5-42cb-ac83-81ab97fec35e", + "x-ms-client-request-id": "18939aae29f0948feec44243614abafe", + "x-ms-correlation-request-id": "eff4e5db-3194-45bf-8581-5c2b48f98954", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "90c69a1f-9cd7-4d2a-a817-6116efb85533", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033543Z:eff4e5db-3194-45bf-8581-5c2b48f98954" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172958-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78fc4bdc2dc64ef181b0538232d946d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86f918b5-ab52-4107-9d8c-d2fb9dd2892f", + "x-ms-client-request-id": "78fc4bdc2dc64ef181b0538232d946d6", + "x-ms-correlation-request-id": "e275dab9-5fa6-4261-b72f-69677302862e", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "f058ed97-bc5f-4c88-b61a-651052cfa96d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033544Z:e275dab9-5fa6-4261-b72f-69677302862e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172959-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "492c6a6b2ccb5a8cf9f1ea2f91419d8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eda5cbe9-f89f-450a-b27d-cdf69064407d", + "x-ms-client-request-id": "492c6a6b2ccb5a8cf9f1ea2f91419d8a", + "x-ms-correlation-request-id": "7350a07b-fe35-4d17-af22-b5c00fd385ec", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "0b1cf75f-24a7-405c-9160-182fb392f0b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033545Z:7350a07b-fe35-4d17-af22-b5c00fd385ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717295a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38d44c87dc3a8000a844973fd60c6114", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "129b97d6-b231-4080-85ae-974ee5750c08", + "x-ms-client-request-id": "38d44c87dc3a8000a844973fd60c6114", + "x-ms-correlation-request-id": "09db2d30-9f2f-402a-a690-91e72f1fa6ab", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "3f6fa950-1420-496c-826c-3100f17c47db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033547Z:09db2d30-9f2f-402a-a690-91e72f1fa6ab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717295b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7d86c7d711eb033bfa27fd443c1bd3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "974d6d69-5321-4e08-905c-f1d0ed8bfe62", + "x-ms-client-request-id": "f7d86c7d711eb033bfa27fd443c1bd3f", + "x-ms-correlation-request-id": "22462755-8dfb-47a3-b935-47f87d1431b0", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "cd0c1b81-f4d9-431b-b8aa-819435c40cbd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033548Z:22462755-8dfb-47a3-b935-47f87d1431b0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717295c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5fbc8130d058e9c69aca087944c83ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8dc0f92d-ded5-4001-9710-9cae51bd06af", + "x-ms-client-request-id": "e5fbc8130d058e9c69aca087944c83ec", + "x-ms-correlation-request-id": "e233e271-4f31-494e-b127-a8c6c7071a67", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "402685f1-c66d-49c4-95ca-81a09ba66930", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033549Z:e233e271-4f31-494e-b127-a8c6c7071a67" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717295d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25b1d590a668166c192379975c2c3de6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df55649c-2989-4542-8d11-89850108decf", + "x-ms-client-request-id": "25b1d590a668166c192379975c2c3de6", + "x-ms-correlation-request-id": "f9b993c7-92ac-4de3-aa80-8404f5be15bd", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "c2e60d1a-6bc0-45bc-a266-296d107768cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033551Z:f9b993c7-92ac-4de3-aa80-8404f5be15bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717295e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0d2b57867b11700fcf498d71d0ac1b72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1151fb27-147b-4937-94df-e7c75e190c18", + "x-ms-client-request-id": "0d2b57867b11700fcf498d71d0ac1b72", + "x-ms-correlation-request-id": "a7b1e5d0-3bcd-44ab-9316-35fe2338a259", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "83edf440-1cea-4b33-b45c-16858dbf59bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033552Z:a7b1e5d0-3bcd-44ab-9316-35fe2338a259" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717295f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d43921e97106cd65be5cce19304313c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8000fdd-a70d-4fc0-af98-e0378ecdcc5a", + "x-ms-client-request-id": "6d43921e97106cd65be5cce19304313c", + "x-ms-correlation-request-id": "1f8954b4-7d36-4827-8e64-b5f48e37a53d", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "b665bb27-638f-48f6-aa9a-ebc0e1ffabe5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033553Z:1f8954b4-7d36-4827-8e64-b5f48e37a53d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172960-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d00ba6e762114dbc641551f18fb456d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "08492ded-ec8c-4cc9-9e8a-e29769a3e212", + "x-ms-client-request-id": "3d00ba6e762114dbc641551f18fb456d", + "x-ms-correlation-request-id": "cc138673-6c36-4cf7-908f-de1192562934", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "b1d568a0-2632-41f5-87fd-c1bc190717f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033555Z:cc138673-6c36-4cf7-908f-de1192562934" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172961-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca790708d0e8eed681bfb12caf2ddccb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8600fafc-1cf8-4837-a812-a33db6d4e0ad", + "x-ms-client-request-id": "ca790708d0e8eed681bfb12caf2ddccb", + "x-ms-correlation-request-id": "d28010e7-4454-4e63-a1f4-4acab93da10c", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "6e9b5031-8d33-4059-847c-1baf6b474f5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033556Z:d28010e7-4454-4e63-a1f4-4acab93da10c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172962-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16025017deaba850b72ea6ce42b75360", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bbd43d9b-01ca-448f-8c58-349dc0722fe2", + "x-ms-client-request-id": "16025017deaba850b72ea6ce42b75360", + "x-ms-correlation-request-id": "08953a47-609e-4809-aa0f-33da9b562f73", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "6d989a7b-c94c-477e-bc90-7986c0059714", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033557Z:08953a47-609e-4809-aa0f-33da9b562f73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172963-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8cd95e9f678b9e53e311bc61c4af6499", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "96e60bc2-c298-4ff5-9b8b-827c77fd37bb", + "x-ms-client-request-id": "8cd95e9f678b9e53e311bc61c4af6499", + "x-ms-correlation-request-id": "4f62c07b-b0b8-4813-9e4f-e1513e50da11", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "5c650260-2531-41b6-8cd9-85d0debffa03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033558Z:4f62c07b-b0b8-4813-9e4f-e1513e50da11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172964-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c7078a642ff829c1b6d013b92907acc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:35:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "683fe41f-59bb-4bbf-913f-31b8f1c06a99", + "x-ms-client-request-id": "c7078a642ff829c1b6d013b92907acc9", + "x-ms-correlation-request-id": "28d0bc42-b86a-4703-8d93-5dad91c85575", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "7fce7e35-67b5-4c53-809b-d8acbea9fee9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033600Z:28d0bc42-b86a-4703-8d93-5dad91c85575" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172965-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "518c516b5053b03ffc63329922efe407", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc4b2b49-c7bc-40ba-be23-fb7d5e7f2181", + "x-ms-client-request-id": "518c516b5053b03ffc63329922efe407", + "x-ms-correlation-request-id": "53dc1b99-5133-493f-b9ce-7a085410973f", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "f2b85c39-075e-467f-8061-4f9326f2c6e0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033601Z:53dc1b99-5133-493f-b9ce-7a085410973f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172966-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b76a0cca8baf6f679cafd5ba539a74db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "810813fb-cb28-41fd-97cb-1ec0137ecdd7", + "x-ms-client-request-id": "b76a0cca8baf6f679cafd5ba539a74db", + "x-ms-correlation-request-id": "1475e276-9b09-498f-8b12-d58af53d2439", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "db03cfa8-6fe6-4310-b15f-0e80c1623cea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033602Z:1475e276-9b09-498f-8b12-d58af53d2439" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172967-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73f6f265132213454a57ca94fc2807c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c3f64a2-a33a-4f55-bc8c-bc05510dda95", + "x-ms-client-request-id": "73f6f265132213454a57ca94fc2807c7", + "x-ms-correlation-request-id": "f106712b-d74d-442b-afc9-9cc906f1a5e7", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "89d584bb-89e6-4c0b-a214-912405ef0c7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033604Z:f106712b-d74d-442b-afc9-9cc906f1a5e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172968-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1def0becf49ddf1ae91cb4a37b845c62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5c707f18-6537-49a7-98e5-ad8f7f539521", + "x-ms-client-request-id": "1def0becf49ddf1ae91cb4a37b845c62", + "x-ms-correlation-request-id": "b7a0cd22-50e1-40d7-af36-a325c029893d", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "825b6759-d079-48e1-933b-90d6822c742f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033606Z:b7a0cd22-50e1-40d7-af36-a325c029893d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172969-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "303457ee71f8b6e4c7566d58c0d27374", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ecd94d9c-b165-448b-9624-66b6b8fb0521", + "x-ms-client-request-id": "303457ee71f8b6e4c7566d58c0d27374", + "x-ms-correlation-request-id": "9b48e6ba-daab-4e49-bc89-023f6b7c386f", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "db3d9f92-3c05-48cf-9040-cbad78dea583", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033607Z:9b48e6ba-daab-4e49-bc89-023f6b7c386f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717296a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "48ce0da857aa703dd81689055ea198c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d2c6345a-70ef-4511-b209-7ebb711cfb52", + "x-ms-client-request-id": "48ce0da857aa703dd81689055ea198c5", + "x-ms-correlation-request-id": "33cd0124-af62-4876-af1c-b05b155e9aa5", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "b63d6b73-ffb3-4357-b6ff-2fd3272c2500", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033608Z:33cd0124-af62-4876-af1c-b05b155e9aa5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717296b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a5a568fad7f37bce2639554687c11e16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d8c47c1-0b2a-4988-9d66-3ed5ecd1031a", + "x-ms-client-request-id": "a5a568fad7f37bce2639554687c11e16", + "x-ms-correlation-request-id": "c846771f-57de-4453-84e1-ad99004221a5", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "a537bdac-2bfa-4a81-9333-49a6db9a2e1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033609Z:c846771f-57de-4453-84e1-ad99004221a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717296c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6dfb40a914b697b819c457e2e7de5725", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31a39622-06e9-4bf2-802f-540d859dbd1c", + "x-ms-client-request-id": "6dfb40a914b697b819c457e2e7de5725", + "x-ms-correlation-request-id": "14e324bd-6ac8-4a73-b6f3-2ca1999bad4b", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "22a17c30-f387-4aff-905f-1751d98ae148", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033611Z:14e324bd-6ac8-4a73-b6f3-2ca1999bad4b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717296d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "585da7becd2cd1813f53217001f7e816", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5012dffa-9f33-49c9-a9f4-123c41f97322", + "x-ms-client-request-id": "585da7becd2cd1813f53217001f7e816", + "x-ms-correlation-request-id": "b1adaabd-f7a0-4743-9fd7-bd2c2d5e54c0", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "25ac4d32-2d95-45c6-b489-718ff3dabe65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033612Z:b1adaabd-f7a0-4743-9fd7-bd2c2d5e54c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717296e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e5c72f72aa6e60faf0e8b2f7fec9347", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78f80a12-24d3-4507-9144-e319aa92ceef", + "x-ms-client-request-id": "1e5c72f72aa6e60faf0e8b2f7fec9347", + "x-ms-correlation-request-id": "18848d56-1049-4d9a-aab9-033755b607e6", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "7b982bed-0dea-408b-b57a-43eabbb2f3c0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033613Z:18848d56-1049-4d9a-aab9-033755b607e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717296f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e08730e1c663dbe9bf2a2e63f3479522", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e94ab269-793d-4d69-8338-27ff1bed98b5", + "x-ms-client-request-id": "e08730e1c663dbe9bf2a2e63f3479522", + "x-ms-correlation-request-id": "66a58d1f-d2c2-4ae0-8915-cc5b01957d89", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "5dc7b1cf-3aeb-4d45-acdc-b4f5b1c454f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033615Z:66a58d1f-d2c2-4ae0-8915-cc5b01957d89" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172970-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74ea41db3982937e9777a91e42525152", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "41153f18-b0f4-40c3-be37-6d7d9c5d65b4", + "x-ms-client-request-id": "74ea41db3982937e9777a91e42525152", + "x-ms-correlation-request-id": "85c54595-304f-4332-ba27-035f8be5bcd8", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "3c0b78fa-c1e8-4f59-bb1d-c2f33c239e30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033616Z:85c54595-304f-4332-ba27-035f8be5bcd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172971-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d18fd9bf086f31b289805e7cfcacf367", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ebc884de-2403-4b4b-bd8d-db3442392482", + "x-ms-client-request-id": "d18fd9bf086f31b289805e7cfcacf367", + "x-ms-correlation-request-id": "a14220cf-844e-4319-8332-d2b4fa25fcbc", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "4bd315c7-82d9-46af-b1ca-e16463902ab9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033617Z:a14220cf-844e-4319-8332-d2b4fa25fcbc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172972-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e5368791f02a8c4b1f448ec1ccb996d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d1fc584-e6e1-4b8f-a59d-78b96b9f0d62", + "x-ms-client-request-id": "3e5368791f02a8c4b1f448ec1ccb996d", + "x-ms-correlation-request-id": "d752de60-dece-4075-b13d-09485703fb7d", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "f7130d47-e3e4-4de7-ac0e-1060812e20da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033619Z:d752de60-dece-4075-b13d-09485703fb7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172973-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "19a3dbd8c4b8d3b38eb8eb02da0297eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6bc18377-2db9-458a-aaed-c503c58414bb", + "x-ms-client-request-id": "19a3dbd8c4b8d3b38eb8eb02da0297eb", + "x-ms-correlation-request-id": "88807196-aa19-4246-8c59-85b71e57544e", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "a8315bf3-3829-4ae4-bf40-91fb91d122ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033620Z:88807196-aa19-4246-8c59-85b71e57544e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172974-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d9a4418413fea05014e61f7bbfc614bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0107aaa-be93-4434-a92e-7d2e11572182", + "x-ms-client-request-id": "d9a4418413fea05014e61f7bbfc614bd", + "x-ms-correlation-request-id": "b211a8be-d41e-4511-8e31-c5c41a82057a", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "b7c5e8f1-fa36-44ac-8d04-e2f028c4730e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033621Z:b211a8be-d41e-4511-8e31-c5c41a82057a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172975-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "20a4f1e6d908b5aeb580af4934c2cdaf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec218782-ce54-45f9-a4e4-19521c7d0c9e", + "x-ms-client-request-id": "20a4f1e6d908b5aeb580af4934c2cdaf", + "x-ms-correlation-request-id": "32545adc-557c-46bf-8058-ab69f54f0992", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "e68e87fa-b677-49b2-b630-635d8989643f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033622Z:32545adc-557c-46bf-8058-ab69f54f0992" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172976-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db685d5cbf26c46e8b0304d1a43713c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0b321dfe-90c2-4635-bff6-5e8dac8bda82", + "x-ms-client-request-id": "db685d5cbf26c46e8b0304d1a43713c7", + "x-ms-correlation-request-id": "2c1d68ea-90ba-4d1a-8835-388d6e225e5c", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "98ac7303-bbdb-4981-8cf9-4d770b4e6011", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033624Z:2c1d68ea-90ba-4d1a-8835-388d6e225e5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172977-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e81b2da4765daae392ef237e63066b52", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9df4a175-b2e1-4f8d-99c6-da2b9ef7ca72", + "x-ms-client-request-id": "e81b2da4765daae392ef237e63066b52", + "x-ms-correlation-request-id": "38425c59-584c-4ce4-b54b-cd35e6775ddd", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "fe20bbaf-9ca3-4aa4-91ad-8512e1361498", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033625Z:38425c59-584c-4ce4-b54b-cd35e6775ddd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172978-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "621e6f18395e279782df9504d4dd107e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7eb64f81-5704-47a3-8064-a531298b31a0", + "x-ms-client-request-id": "621e6f18395e279782df9504d4dd107e", + "x-ms-correlation-request-id": "05160368-b47a-465f-89b0-fb7e125bd9b3", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "96925ee8-ddbc-4c12-bf96-616a1bd9c039", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033626Z:05160368-b47a-465f-89b0-fb7e125bd9b3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172979-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06a5e86de5a6e6517abd48379bf06085", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe4214a6-7e3a-48a8-a88b-3457570f6769", + "x-ms-client-request-id": "06a5e86de5a6e6517abd48379bf06085", + "x-ms-correlation-request-id": "e3061530-ec30-4542-8f09-180ac198488b", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "62d87e3a-3891-4f94-a5b5-ca89e751fd08", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033628Z:e3061530-ec30-4542-8f09-180ac198488b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717297a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "34b8b297b0196b6996f4657de1ded5b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "50643471-72c7-4fc5-932b-c87bbd2c3627", + "x-ms-client-request-id": "34b8b297b0196b6996f4657de1ded5b5", + "x-ms-correlation-request-id": "474c58e2-946a-4cfb-8749-36fe7209cbdc", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "ee2cef98-aecb-4f8e-9744-73e952afe296", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033629Z:474c58e2-946a-4cfb-8749-36fe7209cbdc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717297b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b10a5de656133ac1e37e8a0f05f8b92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bb1a30a-9f9f-41ac-bf32-0cb5e1832e16", + "x-ms-client-request-id": "7b10a5de656133ac1e37e8a0f05f8b92", + "x-ms-correlation-request-id": "e006e090-8f1e-446b-b368-93ecf340a047", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "b5ff4165-aa90-4566-8889-fe7b5d15ccc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033630Z:e006e090-8f1e-446b-b368-93ecf340a047" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717297c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "226c0f7fdb24bc647e3970b17fd3059b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b733d1df-7b3d-4e28-b5b3-776c858d43ad", + "x-ms-client-request-id": "226c0f7fdb24bc647e3970b17fd3059b", + "x-ms-correlation-request-id": "7ac4be0f-64f1-4e0b-b494-9b46f81eda3c", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "35eca08d-f253-464a-b2c1-11bd4ccf9c48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033631Z:7ac4be0f-64f1-4e0b-b494-9b46f81eda3c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717297d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f55992e7e4df3223068516e1c7c87a36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02d53f55-6c32-475e-b804-e8da2c921d41", + "x-ms-client-request-id": "f55992e7e4df3223068516e1c7c87a36", + "x-ms-correlation-request-id": "8e27ef0a-cdef-44b6-ad5f-d9a971cc6a2b", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "2190ccef-0007-426c-8233-3c92b6667b00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033633Z:8e27ef0a-cdef-44b6-ad5f-d9a971cc6a2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717297e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1fed369b37102914154fd27f4fab44a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e1f29ee3-bd41-4cde-a622-83043103105c", + "x-ms-client-request-id": "d1fed369b37102914154fd27f4fab44a", + "x-ms-correlation-request-id": "684ab743-cfde-4870-8d54-84befc44d58e", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "6daf6be1-9a60-41d5-af0f-ad9041610314", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033634Z:684ab743-cfde-4870-8d54-84befc44d58e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717297f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5db84d3296059ab2ec391b9ec583f4b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d88e069-0d8e-4630-b972-16385ac5a0ec", + "x-ms-client-request-id": "5db84d3296059ab2ec391b9ec583f4b6", + "x-ms-correlation-request-id": "1e0a54ce-44d5-4956-808b-4c044ecfe80a", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "ef2ac1e6-4fe8-4953-8f73-af899003a288", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033635Z:1e0a54ce-44d5-4956-808b-4c044ecfe80a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172980-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab483abf34d534290157b48be7fc3e0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e16bb3d-38e6-4df7-85b8-4cfd4a596544", + "x-ms-client-request-id": "ab483abf34d534290157b48be7fc3e0b", + "x-ms-correlation-request-id": "08dbe839-74be-446f-9721-6f9682c1051c", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "5723540d-e8d2-4f4f-95b3-a5c211af3d7c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033637Z:08dbe839-74be-446f-9721-6f9682c1051c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172981-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7aafccd01d0fd3302063e53797f23dbd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9f0eb53-d490-4f4c-b71e-f0319b8d2e90", + "x-ms-client-request-id": "7aafccd01d0fd3302063e53797f23dbd", + "x-ms-correlation-request-id": "ad0c616a-ff7f-492c-8519-f6a332dc35e4", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "8c77f9ce-c291-41d6-9a63-09c8fbee8fe2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033638Z:ad0c616a-ff7f-492c-8519-f6a332dc35e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172982-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ba68465f08b2fd7523845caee127b3f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37bcb7d5-a24b-4a9c-bf53-fb9ae99c280f", + "x-ms-client-request-id": "ba68465f08b2fd7523845caee127b3f0", + "x-ms-correlation-request-id": "6126dfda-06a2-4ee3-b81d-a589b48564ea", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "604084d4-bac0-4feb-be5a-eef30d0bd506", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033639Z:6126dfda-06a2-4ee3-b81d-a589b48564ea" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172983-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8ce10fb79d4a2a609758b714ff19d0f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f57ff23-3854-43dd-a1da-ecab6262d56f", + "x-ms-client-request-id": "f8ce10fb79d4a2a609758b714ff19d0f", + "x-ms-correlation-request-id": "7b8f11b3-bdd5-477c-a5a2-37d21257c786", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "89be59f3-9bce-40f3-bb24-c441904c51a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033640Z:7b8f11b3-bdd5-477c-a5a2-37d21257c786" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172984-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a02bf6198493c75956b1578bc082f1f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee07beb9-4944-41d6-bdb9-2415aa8003ed", + "x-ms-client-request-id": "a02bf6198493c75956b1578bc082f1f8", + "x-ms-correlation-request-id": "f03d6bd0-c86c-4a54-acaa-9fbcd28d062e", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "025aadb4-8e11-468b-9873-5cfe4b276a1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033642Z:f03d6bd0-c86c-4a54-acaa-9fbcd28d062e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172985-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "873cf5b04424e6e9a0c6b03d7d03ae31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5442e90f-9475-444b-a283-fba7f620e6ff", + "x-ms-client-request-id": "873cf5b04424e6e9a0c6b03d7d03ae31", + "x-ms-correlation-request-id": "3a4ff1e0-49a0-43ef-8c7c-4e08df10cd38", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "d33d345a-ef89-4336-b6b7-4a6b42a4afe5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033643Z:3a4ff1e0-49a0-43ef-8c7c-4e08df10cd38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172986-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea954de712fc765cb706a122221be187", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "339704bc-a54b-4ab1-9639-b29790deffbb", + "x-ms-client-request-id": "ea954de712fc765cb706a122221be187", + "x-ms-correlation-request-id": "625c42a8-3455-463a-993e-952d64359643", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "eb5efbf1-536b-4226-b61c-112415cac91c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033644Z:625c42a8-3455-463a-993e-952d64359643" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172987-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59c0928315b5d5ea0d4500cdd31c4a53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "deadf184-1906-46a0-8c0d-e13a511be7cb", + "x-ms-client-request-id": "59c0928315b5d5ea0d4500cdd31c4a53", + "x-ms-correlation-request-id": "24efe6db-9b8f-486e-826d-03057509d3e8", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "553e38cb-7d3c-4c58-8e02-9308896080b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033646Z:24efe6db-9b8f-486e-826d-03057509d3e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172988-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "73a4260207ed9efc98c5d01da2c6c384", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9db94423-950a-4eb0-b3a8-e5fcf7be09a7", + "x-ms-client-request-id": "73a4260207ed9efc98c5d01da2c6c384", + "x-ms-correlation-request-id": "c35723e5-bf0a-481b-9c01-4a87824ebdfe", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "dd169618-45ef-4c18-9101-013730ab253a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033647Z:c35723e5-bf0a-481b-9c01-4a87824ebdfe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172989-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eab929e55443d17b62bfddb6118fa39b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "794d1041-d68b-4e3a-9309-dda4e6546950", + "x-ms-client-request-id": "eab929e55443d17b62bfddb6118fa39b", + "x-ms-correlation-request-id": "a61424ee-914c-4438-8f5c-c0e4fa1f981a", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "504cf086-3d40-4d1f-8e81-edcefb31a7c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033648Z:a61424ee-914c-4438-8f5c-c0e4fa1f981a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717298a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc204ebb6d777c9a9522c1f045cd3246", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd8ea119-1312-454f-8d3e-248b6be4f97a", + "x-ms-client-request-id": "fc204ebb6d777c9a9522c1f045cd3246", + "x-ms-correlation-request-id": "b10daa39-4a2b-4523-9e6f-82ac27ee187c", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "1f616dfa-1afd-4bbf-98d2-3897a81a22bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033650Z:b10daa39-4a2b-4523-9e6f-82ac27ee187c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717298b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aae87c815f62ad0faad2112d2a458d09", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b1c298e-d626-46b1-bfce-e7f4a14435c7", + "x-ms-client-request-id": "aae87c815f62ad0faad2112d2a458d09", + "x-ms-correlation-request-id": "b943811d-cf46-4369-8216-7f9a7f8a8f30", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "3556d428-9c8c-4fc4-8761-e63c33998038", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033651Z:b943811d-cf46-4369-8216-7f9a7f8a8f30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717298c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53613522c7a5770d8f3c5421938b8b94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c6e66f36-37d0-4253-a271-ed70aa130342", + "x-ms-client-request-id": "53613522c7a5770d8f3c5421938b8b94", + "x-ms-correlation-request-id": "13e252e5-a4c5-4a87-94e4-b202066b47dc", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "4ddb4ef0-52e4-47d6-9429-fed25885ef41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033652Z:13e252e5-a4c5-4a87-94e4-b202066b47dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717298d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9535968df9a75c383e7351a45b6d5250", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9fa8329-fe51-4798-a918-1cbe2e45a541", + "x-ms-client-request-id": "9535968df9a75c383e7351a45b6d5250", + "x-ms-correlation-request-id": "b0eef700-4d61-484d-89ec-2637bd8d52c1", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "bed915c5-dcc5-44a3-8628-d00192fb4200", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033653Z:b0eef700-4d61-484d-89ec-2637bd8d52c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717298e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10cdb795de6bb9a06e701a250aee191e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f632e82-a951-49d6-9f0d-037fa173739b", + "x-ms-client-request-id": "10cdb795de6bb9a06e701a250aee191e", + "x-ms-correlation-request-id": "4bf61f4c-eb44-4278-9f21-9313b15e0899", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "741cc75e-e7c4-4721-8978-01fec2238b90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033655Z:4bf61f4c-eb44-4278-9f21-9313b15e0899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717298f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "949f7c47f7102962fc05153275691b22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fcb2b8d-66b4-4116-9c1f-9712407191a8", + "x-ms-client-request-id": "949f7c47f7102962fc05153275691b22", + "x-ms-correlation-request-id": "e9625132-1484-44a3-a3b0-710a88315556", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "b4709136-d2f6-444e-a4b5-df16a920dc8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033656Z:e9625132-1484-44a3-a3b0-710a88315556" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172990-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "db8c04ea7abeaf29f57b2636de125150", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bfae0a1a-6f29-47dc-8f6b-c4def74904b4", + "x-ms-client-request-id": "db8c04ea7abeaf29f57b2636de125150", + "x-ms-correlation-request-id": "7955b93e-8118-4918-8439-f1b8baa72ab9", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "65f2c739-5c45-46cb-b3c6-8fc0ac0416e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033657Z:7955b93e-8118-4918-8439-f1b8baa72ab9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172991-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "df5c3359becd9d3f55a41466c96e4305", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:36:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7977782f-f578-438a-9d23-4d1b00f6c7d0", + "x-ms-client-request-id": "df5c3359becd9d3f55a41466c96e4305", + "x-ms-correlation-request-id": "a9e2a33b-1a47-42e9-8248-a025d350607d", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "4def505f-5b85-4429-b54f-f73f783ef060", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033659Z:a9e2a33b-1a47-42e9-8248-a025d350607d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172992-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "063bf7543e62cc6053f09e94d12b4aea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a2abbb2-ca26-42c3-9473-90b510e9f4c0", + "x-ms-client-request-id": "063bf7543e62cc6053f09e94d12b4aea", + "x-ms-correlation-request-id": "c976ec4a-a9a6-4f34-9452-c0ed47a26a3f", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "2531516a-5b16-4486-8eef-b73a6792b91f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033700Z:c976ec4a-a9a6-4f34-9452-c0ed47a26a3f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172993-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "42d9c4b43c0c2c54c4ee861966c3e586", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "961f1d28-bfd5-45b0-b6c7-1c641ff75e90", + "x-ms-client-request-id": "42d9c4b43c0c2c54c4ee861966c3e586", + "x-ms-correlation-request-id": "ff8971c3-eba8-4158-b740-5378d6e49339", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "c8b705bf-bf51-4261-b2de-66d3d3b2f80c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033701Z:ff8971c3-eba8-4158-b740-5378d6e49339" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172994-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e6e121374bd71aedd3908bdd1fabcc2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a4d8764-8273-4259-827d-de78dc1a8ed3", + "x-ms-client-request-id": "e6e121374bd71aedd3908bdd1fabcc2a", + "x-ms-correlation-request-id": "f5930936-a857-4c11-b2f3-f5f557d2c594", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "99bb7fd6-9f51-49bd-a638-67a8533d904c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033703Z:f5930936-a857-4c11-b2f3-f5f557d2c594" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172995-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "04b12a5a019418f9a30f4174b8466690", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a42d4fb9-8a94-4e4a-be6f-5f1f9bd58c8b", + "x-ms-client-request-id": "04b12a5a019418f9a30f4174b8466690", + "x-ms-correlation-request-id": "7359e88b-926a-4cf7-b8e7-b1c92ecccdd8", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "28974f66-c614-4710-9b45-a3ccadf3b2ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033704Z:7359e88b-926a-4cf7-b8e7-b1c92ecccdd8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172996-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af5d170a63496913d7be6f7cb0770c19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "216548b6-891c-4d09-916d-2ae98a641a0c", + "x-ms-client-request-id": "af5d170a63496913d7be6f7cb0770c19", + "x-ms-correlation-request-id": "0e24a3c3-5bdc-4b11-9a8c-0bb270cca568", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "f773d7ae-0d93-4bed-a8f9-7f035cd9c67a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033705Z:0e24a3c3-5bdc-4b11-9a8c-0bb270cca568" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172997-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3cbf5c22e11136f228c943c70979628c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "88ac7343-e799-4009-bb27-906c3805d473", + "x-ms-client-request-id": "3cbf5c22e11136f228c943c70979628c", + "x-ms-correlation-request-id": "eda476af-1dc6-4305-8db4-1e6c7af643e5", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "773113ba-d38f-4138-9a25-ed58c535f517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033706Z:eda476af-1dc6-4305-8db4-1e6c7af643e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172998-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07d2fb291c4df6e016482dd5917d672b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7ae0aa13-ff15-45eb-b5e4-2c03a603159d", + "x-ms-client-request-id": "07d2fb291c4df6e016482dd5917d672b", + "x-ms-correlation-request-id": "54c2bc98-3a1e-40ea-87cd-edd7311bfa7b", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "99a91433-350b-4f50-b67d-720a40574385", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033708Z:54c2bc98-3a1e-40ea-87cd-edd7311bfa7b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172999-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c5127022987297e25268780204b5f5e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6255ed5-5126-4103-9f51-2f2914c43559", + "x-ms-client-request-id": "5c5127022987297e25268780204b5f5e", + "x-ms-correlation-request-id": "c582fa8e-960b-4231-a92c-4e790dbf0cb8", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "192cc387-283f-476a-89a3-f768a4cce73b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033709Z:c582fa8e-960b-4231-a92c-4e790dbf0cb8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717299a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b552e35b05a405cb7bc825c9b41ca4aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2dc2dbee-a835-4b44-9946-1017af830d08", + "x-ms-client-request-id": "b552e35b05a405cb7bc825c9b41ca4aa", + "x-ms-correlation-request-id": "d36b5902-39bb-4a04-b0d7-06ee03f26e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "02dffec3-4984-4420-84b1-510b759e14f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033710Z:d36b5902-39bb-4a04-b0d7-06ee03f26e9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717299b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1c518610627ff057ca9e226945fd6cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "747c9c58-7877-4b1b-a10c-a9ab13be12a2", + "x-ms-client-request-id": "e1c518610627ff057ca9e226945fd6cb", + "x-ms-correlation-request-id": "08f412b6-9ac3-42e7-aff9-c4929a2b7fe2", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "b77eb6fc-8333-4fc7-8f4b-e49c4854f2d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033712Z:08f412b6-9ac3-42e7-aff9-c4929a2b7fe2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717299c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae79cfe8b22afd865b4be0be04b57508", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9d1d86c8-124d-4bc2-adc4-dff7d318f4cf", + "x-ms-client-request-id": "ae79cfe8b22afd865b4be0be04b57508", + "x-ms-correlation-request-id": "ef21cf7c-5a4b-4a2f-b9f8-b23af45ff449", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "9666b145-3812-4bba-8d01-3b3c1088358a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033713Z:ef21cf7c-5a4b-4a2f-b9f8-b23af45ff449" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717299d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "071fdc827e855436dd5238fb23a5701c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "87bf1b35-7a35-43cd-a459-737c0c5bcd1a", + "x-ms-client-request-id": "071fdc827e855436dd5238fb23a5701c", + "x-ms-correlation-request-id": "d900e65c-320f-427d-a1af-2b74b533d0e0", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "2316c6a4-c34b-4078-bd5d-ed63fd2cdd82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033714Z:d900e65c-320f-427d-a1af-2b74b533d0e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717299e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5e059f2f5a3ae8091c785dc2646fbc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a6e93ac-98da-4505-8af4-44be1306231b", + "x-ms-client-request-id": "e5e059f2f5a3ae8091c785dc2646fbc7", + "x-ms-correlation-request-id": "0c4dfcb3-8b55-4dc6-b37c-dea2ac438fd1", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "9d09b377-09fa-4fd1-afb8-fcb8e463e9aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033716Z:0c4dfcb3-8b55-4dc6-b37c-dea2ac438fd1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|6717299f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8a4d934ce406a459824d0d87a8adab6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1ab9df4-2cf6-44df-9060-b4312dc19a68", + "x-ms-client-request-id": "b8a4d934ce406a459824d0d87a8adab6", + "x-ms-correlation-request-id": "7d26efda-1482-41d6-8fae-198aa122ca30", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "bb997e75-9242-4e6d-86ab-fd9865e61a24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033717Z:7d26efda-1482-41d6-8fae-198aa122ca30" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729a0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aacbc3da90d48c655c7175bef8592e97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25bca441-39f6-4082-9868-1f64a99c7dd5", + "x-ms-client-request-id": "aacbc3da90d48c655c7175bef8592e97", + "x-ms-correlation-request-id": "e7961017-cd4d-47f3-a2d7-bf60e7f051dd", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "5fd21e5e-e421-4413-ae92-fd3715971928", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033718Z:e7961017-cd4d-47f3-a2d7-bf60e7f051dd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729a1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49c77057b80124dc13764c7e24a73307", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6ee0a4a-61a0-4104-9b6c-184446969419", + "x-ms-client-request-id": "49c77057b80124dc13764c7e24a73307", + "x-ms-correlation-request-id": "d4905c98-90c9-4844-8365-9f39b51aae64", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "6761ce84-5009-4772-b9cf-5fd879309bc9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033719Z:d4905c98-90c9-4844-8365-9f39b51aae64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729a2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6201cfed507ba4f274175bcf5887713e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "671dd2dd-b3f7-42d9-b45c-1c81a6c10ec5", + "x-ms-client-request-id": "6201cfed507ba4f274175bcf5887713e", + "x-ms-correlation-request-id": "48037127-8204-4d3a-940b-ce45b704972b", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "03931c53-90cf-47bc-a943-127c36356b3b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033721Z:48037127-8204-4d3a-940b-ce45b704972b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729a3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "098039f691c322b5e7a7975e44e768b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e5e4c8d-e463-42d1-9407-b354871ce84f", + "x-ms-client-request-id": "098039f691c322b5e7a7975e44e768b4", + "x-ms-correlation-request-id": "dd8f02f2-d198-4765-b7ac-0894df6cdc8b", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "d0077df1-663c-42ee-9814-3503096b205c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033722Z:dd8f02f2-d198-4765-b7ac-0894df6cdc8b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729a4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29d06e3dcb58071c7e22d4e95c0dcb8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e30aa7b-fd1d-46a1-a8f7-1e4ee2bcb45e", + "x-ms-client-request-id": "29d06e3dcb58071c7e22d4e95c0dcb8c", + "x-ms-correlation-request-id": "cbb7b133-0ae8-4f0a-abb0-5fd90aff0344", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "b8724cff-9339-46d9-a07d-f38b6064b4c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033723Z:cbb7b133-0ae8-4f0a-abb0-5fd90aff0344" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729a5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eb870d0429275c4319df7bd3b993608d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e216caed-31ef-42e4-8019-f2c3d232c100", + "x-ms-client-request-id": "eb870d0429275c4319df7bd3b993608d", + "x-ms-correlation-request-id": "ef18d240-10bf-4345-99fe-6a526d278194", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "33790f7c-c48d-46b8-8112-5e2a2cf5e3b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033725Z:ef18d240-10bf-4345-99fe-6a526d278194" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729a6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e991a7af48b62be61d798ba0bccbc5da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ed21ba1-aa84-4a37-8306-5d5b8d94fd2f", + "x-ms-client-request-id": "e991a7af48b62be61d798ba0bccbc5da", + "x-ms-correlation-request-id": "bcda8600-9be1-4c09-af89-4a156c6462bc", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "d0ffacac-53d3-4cce-8333-238bdc3de1f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033726Z:bcda8600-9be1-4c09-af89-4a156c6462bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729a7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "365a0adb7c5f138d2b740f7950484deb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d43178f-31c6-428f-b796-83d77d5aad6b", + "x-ms-client-request-id": "365a0adb7c5f138d2b740f7950484deb", + "x-ms-correlation-request-id": "33419e77-102b-425c-8310-25519dda735b", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "ec6a99da-1666-4e19-87cf-ec81f7d19c94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033727Z:33419e77-102b-425c-8310-25519dda735b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729a8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b53a47c2e17bbbd5265bcdad9ea29f4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d81228ea-ed70-462f-b60f-1d0d13f96c82", + "x-ms-client-request-id": "b53a47c2e17bbbd5265bcdad9ea29f4d", + "x-ms-correlation-request-id": "20c92111-f6b8-4059-a241-26236779f4ff", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "e0cce34a-30f5-4865-aec5-0dcf67512365", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033729Z:20c92111-f6b8-4059-a241-26236779f4ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729a9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aef7a01a2938322d197ebe42386ddbd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3f863125-5874-4f79-8fa5-f51dc0d71969", + "x-ms-client-request-id": "aef7a01a2938322d197ebe42386ddbd4", + "x-ms-correlation-request-id": "242fadd5-99c0-4f9f-8494-7cafd0e9736a", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "ecd36b83-717c-4796-9877-63afde3e7974", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033730Z:242fadd5-99c0-4f9f-8494-7cafd0e9736a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729aa-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74dea02b0f91fa5f359f1004afdf7489", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "901b6cf5-7296-4f72-8fdd-7e328a6d8fe3", + "x-ms-client-request-id": "74dea02b0f91fa5f359f1004afdf7489", + "x-ms-correlation-request-id": "8ae1c10a-9ce6-45dd-97c6-83e5201266e4", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "7bb2e21d-45b6-4fda-8690-942b571c556c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033731Z:8ae1c10a-9ce6-45dd-97c6-83e5201266e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ab-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af5ec1d49f5099b219089cfd239282b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7840d018-14a5-44f8-b7ba-8e6b3eabc88b", + "x-ms-client-request-id": "af5ec1d49f5099b219089cfd239282b9", + "x-ms-correlation-request-id": "ddd47929-93c4-4463-9d38-d15a799e33a9", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "126bb7bb-3f23-41f6-babd-bcefb24f60b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033732Z:ddd47929-93c4-4463-9d38-d15a799e33a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ac-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe81f8802ac30abc40fd789918298239", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c412638a-d541-4b85-97f1-0b11c7991dbf", + "x-ms-client-request-id": "fe81f8802ac30abc40fd789918298239", + "x-ms-correlation-request-id": "229d1fe4-f6b9-4ad8-a46c-1d4825b0842a", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "d0736cae-6723-4f57-8e26-a8ddd7e3bb00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033734Z:229d1fe4-f6b9-4ad8-a46c-1d4825b0842a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ad-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "776d35092b0e8b83ed455a887362d7a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "27296658-2d4b-45dd-943a-041341064b62", + "x-ms-client-request-id": "776d35092b0e8b83ed455a887362d7a2", + "x-ms-correlation-request-id": "561e097b-cc6d-48ec-8b07-cafcf4124f1e", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "45b027bd-c064-4f9c-827a-1906f3e09c6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033735Z:561e097b-cc6d-48ec-8b07-cafcf4124f1e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ae-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b683571c765daac505546e53271880f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e8be1259-6278-4b01-a0a9-42f703f40bc0", + "x-ms-client-request-id": "b683571c765daac505546e53271880f0", + "x-ms-correlation-request-id": "90a9e374-1f8b-4c62-8a45-4001da4e469e", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "ec5bcfb5-40ae-4762-88f9-86942c92a0fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033736Z:90a9e374-1f8b-4c62-8a45-4001da4e469e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729af-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eef362850b2555aa74f6107ecf3497de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6664d830-5942-48eb-ba62-29c2a1f05e92", + "x-ms-client-request-id": "eef362850b2555aa74f6107ecf3497de", + "x-ms-correlation-request-id": "3f6fd8ee-6ce0-4b20-9b84-aaf66e1b7817", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "7c761139-f825-4368-9ee6-eda0874206c6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033738Z:3f6fd8ee-6ce0-4b20-9b84-aaf66e1b7817" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729b0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c17cd526cca692db6fc371babc3064d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e1c7561-717a-4cfd-98f2-b915eeafa1e7", + "x-ms-client-request-id": "c17cd526cca692db6fc371babc3064d4", + "x-ms-correlation-request-id": "73e33e13-8348-43be-95f4-0cb2df3a34cd", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "7738a260-8d6d-4929-aafc-4cdf3b6e6615", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033739Z:73e33e13-8348-43be-95f4-0cb2df3a34cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729b1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10036ac4e86e117dac2e41676546dad1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "15842b89-74be-4c30-a8e4-8002e1be459d", + "x-ms-client-request-id": "10036ac4e86e117dac2e41676546dad1", + "x-ms-correlation-request-id": "511294c0-39fb-4007-b2a6-7a2165fd1c69", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "e489a176-2fbf-4959-aa3f-5c1309366c54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033740Z:511294c0-39fb-4007-b2a6-7a2165fd1c69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729b2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "512d90bdbe9cb94a86617e6299f09844", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "591c2679-1af6-4c89-abc1-26d51692ba85", + "x-ms-client-request-id": "512d90bdbe9cb94a86617e6299f09844", + "x-ms-correlation-request-id": "ed3c85b1-7a07-4f9e-9f1b-5dc27df7cf73", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "51dd6085-1137-4bc5-8e1e-6678ea41061e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033741Z:ed3c85b1-7a07-4f9e-9f1b-5dc27df7cf73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729b3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65ba3b9186303d70586b14778a742c28", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d0de0cf1-4728-4feb-93bf-c6841d6e7d98", + "x-ms-client-request-id": "65ba3b9186303d70586b14778a742c28", + "x-ms-correlation-request-id": "8c8dc3f9-f199-49bb-bb5b-dd37404def74", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "94ca0597-90d0-4874-8331-b139c7af28b6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033743Z:8c8dc3f9-f199-49bb-bb5b-dd37404def74" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729b4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2cfca0e81302053820498a0c6a1a77bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eff3a811-098b-4e0a-9b14-ed76fdfc5a34", + "x-ms-client-request-id": "2cfca0e81302053820498a0c6a1a77bc", + "x-ms-correlation-request-id": "2ca909d8-817e-497e-a21f-9d5d9ad3c147", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "8b2c61ac-887c-4a53-8758-66ef9487644a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033744Z:2ca909d8-817e-497e-a21f-9d5d9ad3c147" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729b5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ad6fd95758c36a01feff830a9d22e12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c12575e-7bd6-424e-b7ba-77cbc6bb51b5", + "x-ms-client-request-id": "2ad6fd95758c36a01feff830a9d22e12", + "x-ms-correlation-request-id": "370788f2-9d9d-4768-a7a9-056b7cbded3b", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "c4f52caa-2c5e-460f-b999-395275663880", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033745Z:370788f2-9d9d-4768-a7a9-056b7cbded3b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729b6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f97955346cf37e4103b445e6fc63d33d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2bccc966-7cd6-4512-aeff-644118a6c94e", + "x-ms-client-request-id": "f97955346cf37e4103b445e6fc63d33d", + "x-ms-correlation-request-id": "2730f421-49f8-4eed-a247-fd83d6b21d36", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "8a97c8bc-45b0-4b21-9ad3-1a46a9138de8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033747Z:2730f421-49f8-4eed-a247-fd83d6b21d36" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729b7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8de258f4029d739c00c60c131a075b4d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a219c64a-d54f-498b-a6f3-59c76ebd7a9e", + "x-ms-client-request-id": "8de258f4029d739c00c60c131a075b4d", + "x-ms-correlation-request-id": "47a24ccc-b2bd-483f-a8b1-c73eebeb0d8c", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "3b6e5976-d990-4f61-8924-ca56717bf873", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033748Z:47a24ccc-b2bd-483f-a8b1-c73eebeb0d8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729b8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14d8771b7ea128c8bb5726d82fb93abb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "566aea41-c29e-407a-9b45-c59958ed6235", + "x-ms-client-request-id": "14d8771b7ea128c8bb5726d82fb93abb", + "x-ms-correlation-request-id": "4dfbaf31-0cf5-4c27-b16f-e359982ef051", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "fb9dcdd5-a4e3-4a84-ace6-95052e01b6b1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033749Z:4dfbaf31-0cf5-4c27-b16f-e359982ef051" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729b9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "513cba1ca0ef3274b905f82d602e63fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f4305b9c-ffb0-4c89-a763-7f635163d776", + "x-ms-client-request-id": "513cba1ca0ef3274b905f82d602e63fb", + "x-ms-correlation-request-id": "6e6a30f3-c9b4-4f17-a212-d06335029394", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "09038bbe-ae5c-4e09-aec0-2193d256de01", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033751Z:6e6a30f3-c9b4-4f17-a212-d06335029394" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ba-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84cbf758bf8b759c90bad245dbc44447", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae99acba-00bb-4136-bf41-a67ac08e115b", + "x-ms-client-request-id": "84cbf758bf8b759c90bad245dbc44447", + "x-ms-correlation-request-id": "c3cbe3ef-8ca6-406d-b444-91ea06777a54", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "770619e5-1474-4c57-b113-ddcebba639b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033752Z:c3cbe3ef-8ca6-406d-b444-91ea06777a54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729bb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60f6508b0aca7a5d02a65b9c859ac78c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a6c72be-85ef-49dd-aac8-cc8e4ed8644e", + "x-ms-client-request-id": "60f6508b0aca7a5d02a65b9c859ac78c", + "x-ms-correlation-request-id": "4ac9f136-acbf-45eb-8c24-cf6bca44e34b", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "a68cb5eb-ff1a-4883-b9cd-7fad9ab94f14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033753Z:4ac9f136-acbf-45eb-8c24-cf6bca44e34b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729bc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "387f2bf4b6ed5d301ec7c035ce2e56f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "893e73fe-c63c-4910-8f51-a04439d6bf0a", + "x-ms-client-request-id": "387f2bf4b6ed5d301ec7c035ce2e56f5", + "x-ms-correlation-request-id": "b4a517ad-5818-45f1-8d88-a487f194f1b2", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "2e4855cf-661b-4e71-aacc-ea3fb3d4e1e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033754Z:b4a517ad-5818-45f1-8d88-a487f194f1b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729bd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0fa2b1c103374d30995081e56300eff5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff2764d7-6454-4c44-8b68-5262f87089e1", + "x-ms-client-request-id": "0fa2b1c103374d30995081e56300eff5", + "x-ms-correlation-request-id": "9374e3c0-4a67-429f-8f70-c0972ab8ed02", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "e181bd9b-be81-4bf6-bcb7-bc9bcb45ef8a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033756Z:9374e3c0-4a67-429f-8f70-c0972ab8ed02" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729be-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b05145f20b44d559209941034928acd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04ac81fc-3831-45d6-adaa-9cd353bb96ee", + "x-ms-client-request-id": "b05145f20b44d559209941034928acd4", + "x-ms-correlation-request-id": "fa111657-771a-4e7b-9d14-da3ff395684a", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "1dc1f9a8-e2b4-4275-abbf-e22d9229c608", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033757Z:fa111657-771a-4e7b-9d14-da3ff395684a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729bf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d4da664fb8f8f055fa329e9d344bf91d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bd44a60-2ad6-47bd-9dab-fd48ed67d699", + "x-ms-client-request-id": "d4da664fb8f8f055fa329e9d344bf91d", + "x-ms-correlation-request-id": "e876bc29-da1d-46a3-b3d8-1e430a457504", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "8e278628-83a0-4e1b-9384-2a159f39b041", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033758Z:e876bc29-da1d-46a3-b3d8-1e430a457504" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729c0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8942cbd7a6ddb5b058ccef9ec12c0371", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:37:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a88707ef-8bfd-4a54-99c5-fe7078456a2d", + "x-ms-client-request-id": "8942cbd7a6ddb5b058ccef9ec12c0371", + "x-ms-correlation-request-id": "1529e32e-6237-41ce-b134-03a9c45941c7", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "9c028537-6fd6-499e-a5b9-d250e51803d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033800Z:1529e32e-6237-41ce-b134-03a9c45941c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729c1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fd95ada41b253afcf060b5126dbca0d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b328ca0-2894-475d-bd29-05af4efa87d9", + "x-ms-client-request-id": "fd95ada41b253afcf060b5126dbca0d5", + "x-ms-correlation-request-id": "fd4ddf67-7884-4f6c-9557-dcfa56752113", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "70ac85e1-233a-4ea1-bb63-e025831fbd21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033801Z:fd4ddf67-7884-4f6c-9557-dcfa56752113" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729c2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7e2c249f23e5a9f6b5257c2bc9b62fcd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7a3e4cd0-b85a-420a-8f5a-614d7f80164e", + "x-ms-client-request-id": "7e2c249f23e5a9f6b5257c2bc9b62fcd", + "x-ms-correlation-request-id": "5cdddd28-f3ac-4fad-bbcc-d9ecd67310e9", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "08c46343-76d9-47a0-a3b4-0bc38cf33a60", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033802Z:5cdddd28-f3ac-4fad-bbcc-d9ecd67310e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729c3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86f82c2efbb5bcf8ce08987cf19e479b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28e7caed-5d55-443d-8ccf-d4dc3fedccb7", + "x-ms-client-request-id": "86f82c2efbb5bcf8ce08987cf19e479b", + "x-ms-correlation-request-id": "0341c1a9-7e24-4cc4-ae5d-81c2d1a73ca6", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "c64346a7-c464-4c8d-bc9c-9c15fb2abe47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033803Z:0341c1a9-7e24-4cc4-ae5d-81c2d1a73ca6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729c4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dfe192c8500818bb6ec48009fd17039", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d52fa994-87e2-43ef-b434-2b6bbc77019d", + "x-ms-client-request-id": "9dfe192c8500818bb6ec48009fd17039", + "x-ms-correlation-request-id": "9f2d4f02-dc16-4632-a400-1532f464236d", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "0a163c77-8c1f-4b57-b438-c0a59fe0e9e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033805Z:9f2d4f02-dc16-4632-a400-1532f464236d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729c5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40e3e73119c3a31f2c70b0dc8a7ab816", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce0c7abe-c356-4d7a-b10c-c2827c8254fd", + "x-ms-client-request-id": "40e3e73119c3a31f2c70b0dc8a7ab816", + "x-ms-correlation-request-id": "477bf158-7226-45b8-afeb-dabba7f2f8c0", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "62f84cf3-0fb6-4534-a16a-d75f4b9590e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033806Z:477bf158-7226-45b8-afeb-dabba7f2f8c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729c6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afffe0dd92b7a9cda077d0c9b3f71dfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d491dae3-2893-490c-a948-f250c941931c", + "x-ms-client-request-id": "afffe0dd92b7a9cda077d0c9b3f71dfd", + "x-ms-correlation-request-id": "1d1a9dfd-1eec-48ce-92e7-1166f50cc6ca", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "710c6334-b78c-4089-b90e-fe3cef0f9d9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033807Z:1d1a9dfd-1eec-48ce-92e7-1166f50cc6ca" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729c7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a4b5e9806ba12d7f95a7190d5aff63c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "81a01558-5961-4ec0-bb76-5eb09ac5d1ec", + "x-ms-client-request-id": "0a4b5e9806ba12d7f95a7190d5aff63c", + "x-ms-correlation-request-id": "83d3d944-3884-4c84-8bf1-ab3b7d43642d", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "c7cbe949-f041-47d3-af4d-151314fa968b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033809Z:83d3d944-3884-4c84-8bf1-ab3b7d43642d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729c8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "be223134c1d19e82193aa04c4956f034", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0094bb9c-b22d-47cc-9c5a-0c5f4e1310d6", + "x-ms-client-request-id": "be223134c1d19e82193aa04c4956f034", + "x-ms-correlation-request-id": "26ee134c-d4c0-4c42-8d3f-6f350531e893", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "87d1ea66-b22c-4a3e-b77c-d93f1c91f964", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033810Z:26ee134c-d4c0-4c42-8d3f-6f350531e893" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729c9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c44b253ae2ed75b08edb55c203cd4f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ca956f66-f0f5-4cb3-95a1-034aab60f4fe", + "x-ms-client-request-id": "2c44b253ae2ed75b08edb55c203cd4f1", + "x-ms-correlation-request-id": "51add8ab-7492-4f78-9338-e48103a64b5e", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "d87d4dbf-7082-416c-85e7-1a3ab03998ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033811Z:51add8ab-7492-4f78-9338-e48103a64b5e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ca-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "819593815ed5d62bdcacf080668bc8a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4d701038-1b9b-4a95-89bc-e132d7580d7b", + "x-ms-client-request-id": "819593815ed5d62bdcacf080668bc8a3", + "x-ms-correlation-request-id": "9dbf1060-96df-4a14-bd54-4a6e0b8314bf", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "82340d13-b14b-450a-a001-d1cbae9aec0b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033813Z:9dbf1060-96df-4a14-bd54-4a6e0b8314bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729cb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "223d3d6aca6a860ed54bb5e40b257ddd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33c3ff6b-913c-4af7-a7e5-07bcc081ee53", + "x-ms-client-request-id": "223d3d6aca6a860ed54bb5e40b257ddd", + "x-ms-correlation-request-id": "4ece3aef-9284-47f8-a3ce-24861adbc608", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "9d2c6a95-ee42-47e5-83af-e9315b176159", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033814Z:4ece3aef-9284-47f8-a3ce-24861adbc608" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729cc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b6caae666ec1f45e866d4f81bddb707c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ceae641-0de8-4a2c-84f1-b3454ef68277", + "x-ms-client-request-id": "b6caae666ec1f45e866d4f81bddb707c", + "x-ms-correlation-request-id": "3ec2d2d8-375a-491c-b57e-411ba531574f", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "b353693a-7a26-4a65-ac82-ce0f858d1dfc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033815Z:3ec2d2d8-375a-491c-b57e-411ba531574f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729cd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3f11224b1ffb787840fac8aa847cbb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "824daeae-d7d0-404a-bc9a-21d6a5a102d4", + "x-ms-client-request-id": "e3f11224b1ffb787840fac8aa847cbb6", + "x-ms-correlation-request-id": "cfdb99ae-f347-404a-be4a-b6327086d33d", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "6d107b76-1409-4bb8-831b-26322d2f725e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033816Z:cfdb99ae-f347-404a-be4a-b6327086d33d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ce-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b719122f12c1fce1de489bfc7a8dc8fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4cb7fe8-c4f7-432a-aa59-01d66ebc0efd", + "x-ms-client-request-id": "b719122f12c1fce1de489bfc7a8dc8fa", + "x-ms-correlation-request-id": "e34dabe6-4040-4e0f-9b1a-0855b9d74269", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "5d545954-b291-4cfd-9ce6-91c72ea15762", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033818Z:e34dabe6-4040-4e0f-9b1a-0855b9d74269" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729cf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f8bf38da9a33b4dd271331b2c2d44b3f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9b3d9ba-7f2d-4cfd-a936-95dae0362933", + "x-ms-client-request-id": "f8bf38da9a33b4dd271331b2c2d44b3f", + "x-ms-correlation-request-id": "cd554e88-7ddf-40c6-a100-f57b3632cf78", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "d4263299-8284-4920-b8cf-8361957b6297", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033819Z:cd554e88-7ddf-40c6-a100-f57b3632cf78" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729d0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab5299a2b8c112bb31f505b6158a3cf7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "663a60d5-5da9-4c14-a821-efb7928128f5", + "x-ms-client-request-id": "ab5299a2b8c112bb31f505b6158a3cf7", + "x-ms-correlation-request-id": "fbdf6ed8-d03f-4867-8ffa-d6842e6242d5", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "cb52a6e1-60a2-4fa0-92e4-011564b684e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033820Z:fbdf6ed8-d03f-4867-8ffa-d6842e6242d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729d1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6fafb247d2879582356490ade02f390a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4f9081b-8fe7-43d8-90cf-f2af5f8560ba", + "x-ms-client-request-id": "6fafb247d2879582356490ade02f390a", + "x-ms-correlation-request-id": "c821dea3-5e7d-48e9-8d55-b048814e3e8f", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "8b0bb350-dfb8-4fa1-b7a2-6e6274ef0c6a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033821Z:c821dea3-5e7d-48e9-8d55-b048814e3e8f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729d2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1595cfd1c3a21387dadc73d94269f9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86978844-da96-41b2-b871-452d25ea7669", + "x-ms-client-request-id": "e1595cfd1c3a21387dadc73d94269f9c", + "x-ms-correlation-request-id": "43d363b6-8884-492a-a821-dc7ce2433d2a", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "8dd3a20a-d834-4832-90e0-f70cf4bf8459", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033823Z:43d363b6-8884-492a-a821-dc7ce2433d2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729d3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "106b3ad7db25cfb716bd755c280d3201", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "592f43d1-a37f-45c4-97f7-7cc3506200eb", + "x-ms-client-request-id": "106b3ad7db25cfb716bd755c280d3201", + "x-ms-correlation-request-id": "188d1c71-723d-43d8-9dd4-600c3adf71f3", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "0ea53bb0-0d28-4fc3-84a5-0587f28eca52", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033824Z:188d1c71-723d-43d8-9dd4-600c3adf71f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729d4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9b9fbbc5b302abd798df2da0b44000e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94f52877-2356-474c-8150-38bf52f18fd3", + "x-ms-client-request-id": "b9b9fbbc5b302abd798df2da0b44000e", + "x-ms-correlation-request-id": "0f5a9ede-7296-4b9a-9489-3a607af31e00", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "4f51a1b1-2146-4f82-8d0c-7ef5f72b512e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033825Z:0f5a9ede-7296-4b9a-9489-3a607af31e00" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729d5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a6d6f3c529c421e5a48aca7da7dbf96f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25c3bab0-ffd8-4ead-b21b-9bcee43cfdc2", + "x-ms-client-request-id": "a6d6f3c529c421e5a48aca7da7dbf96f", + "x-ms-correlation-request-id": "1c89c653-1083-4ab5-a295-ce5f3048df08", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "0993bc3a-5e61-49e5-9a51-2fed99c38e79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033827Z:1c89c653-1083-4ab5-a295-ce5f3048df08" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729d6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9981c57be56d7b6c7d409697e9ddc4d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "877bd172-ed51-4bb4-911f-fa8ae36eabdd", + "x-ms-client-request-id": "9981c57be56d7b6c7d409697e9ddc4d1", + "x-ms-correlation-request-id": "1433558b-8e92-4e3c-be59-87f4cc31cfd0", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "e1843934-4087-4fd7-86ef-42c1e8c77ddf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033828Z:1433558b-8e92-4e3c-be59-87f4cc31cfd0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729d7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "359767bd8b37923d159815a6903f829e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "694a895a-0151-42be-864a-4c582b9bbe0c", + "x-ms-client-request-id": "359767bd8b37923d159815a6903f829e", + "x-ms-correlation-request-id": "240df36f-7702-466b-88ef-05b3d99d1588", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "ec20269a-8f50-44b8-bdac-e59313c40029", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033829Z:240df36f-7702-466b-88ef-05b3d99d1588" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729d8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "455f829466c3e0a1875b2983924d38c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dce37601-309f-4737-8176-094f6f96d5e6", + "x-ms-client-request-id": "455f829466c3e0a1875b2983924d38c6", + "x-ms-correlation-request-id": "6676668c-bfd1-4673-8ad0-b0ddfeec7267", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "c9cfa2c4-38ae-4b39-ab54-d8efb86b728c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033830Z:6676668c-bfd1-4673-8ad0-b0ddfeec7267" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729d9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40c0f8c6c444ef3888ef83d5d0c5ea3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ce5222e-fc51-4f39-96d5-86aafea8a7d8", + "x-ms-client-request-id": "40c0f8c6c444ef3888ef83d5d0c5ea3d", + "x-ms-correlation-request-id": "38955c9e-b6d7-4dfe-a159-495001e79715", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "693ce76a-558a-4000-8292-72ad949736a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033832Z:38955c9e-b6d7-4dfe-a159-495001e79715" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729da-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6603f8be7e7e560ec6b6addc62baffc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eacb068a-f2ab-487f-8e9f-b28698ef33ce", + "x-ms-client-request-id": "6603f8be7e7e560ec6b6addc62baffc8", + "x-ms-correlation-request-id": "ceb0ced3-2f42-4b95-ba3f-daed81f2d5d7", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "65bc2a2b-5c20-43d9-85f1-f9ed7c84782a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033833Z:ceb0ced3-2f42-4b95-ba3f-daed81f2d5d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729db-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98e04e5f427fd0594a70bdd4e2cb10c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "675c432f-49e3-4680-889d-0e42c3f6566c", + "x-ms-client-request-id": "98e04e5f427fd0594a70bdd4e2cb10c1", + "x-ms-correlation-request-id": "194298c5-91ca-4ff3-be23-d47c7f4ae26c", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "3a253729-0405-489e-b100-8abe61875f8e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033834Z:194298c5-91ca-4ff3-be23-d47c7f4ae26c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729dc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ac5eb70d14a4748ea69798d165b8ccd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7807f40a-ed6b-40d8-b426-d9f85358e084", + "x-ms-client-request-id": "9ac5eb70d14a4748ea69798d165b8ccd", + "x-ms-correlation-request-id": "c9260981-bc4e-4bd3-8ac1-9c83fda3d99e", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "48e980dd-e6e1-4279-8cfc-d4e606f4ac21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033836Z:c9260981-bc4e-4bd3-8ac1-9c83fda3d99e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729dd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8175bbef52e57bbe9e331b0ec03a74fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1824324a-7e0e-49df-b6f8-1aa621f50765", + "x-ms-client-request-id": "8175bbef52e57bbe9e331b0ec03a74fa", + "x-ms-correlation-request-id": "24af0141-66b4-43dc-b96f-fce5ec551da0", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "bd944eae-10d8-497e-95d0-b2efeb35b54b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033837Z:24af0141-66b4-43dc-b96f-fce5ec551da0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729de-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "766ceca665f48e7d0698ad15c8ccb9ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b3b2808-739d-47e2-97db-ff06edd450c9", + "x-ms-client-request-id": "766ceca665f48e7d0698ad15c8ccb9ef", + "x-ms-correlation-request-id": "cdb4b8da-133b-4867-8fa3-404dafc959ef", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "fab40aab-b62c-48e8-906c-64a08abeff1c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033838Z:cdb4b8da-133b-4867-8fa3-404dafc959ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729df-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "26e4efe38e561ddb2d49fb17b63a86af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "979ce168-d818-4cde-87bb-98db45513ac0", + "x-ms-client-request-id": "26e4efe38e561ddb2d49fb17b63a86af", + "x-ms-correlation-request-id": "18758541-2297-4298-a0bc-0d64b6a7c321", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "6e0ce444-80e9-47ff-9e11-48045098f275", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033839Z:18758541-2297-4298-a0bc-0d64b6a7c321" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729e0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "29e77ff515ef89d93de77b4ca4a8b2d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d29555f-f35b-4d6a-8b6f-c115189d830b", + "x-ms-client-request-id": "29e77ff515ef89d93de77b4ca4a8b2d2", + "x-ms-correlation-request-id": "d600c942-15f3-4e41-946b-2ecfa3bf3203", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "8fa15c89-ce02-4470-ae1f-6e05479c3352", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033841Z:d600c942-15f3-4e41-946b-2ecfa3bf3203" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729e1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d12a2c794d5517a3104e49ab6a66d7cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ddc5841e-411c-4ba9-8ce1-aeb4e855fa56", + "x-ms-client-request-id": "d12a2c794d5517a3104e49ab6a66d7cc", + "x-ms-correlation-request-id": "6b69616c-d097-41ca-a0f2-2f250db0e328", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "adeb7912-d4ba-4814-8e01-f83dcdaca767", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033842Z:6b69616c-d097-41ca-a0f2-2f250db0e328" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729e2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4820fe118fe5ceff165be96f138f7985", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "70172ca5-8a04-4630-9717-33137b0385cc", + "x-ms-client-request-id": "4820fe118fe5ceff165be96f138f7985", + "x-ms-correlation-request-id": "79ae5d19-bf8d-48e2-b280-9956f9d133b5", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "07a2e039-82ad-4f8a-9817-2d405e5fb958", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033843Z:79ae5d19-bf8d-48e2-b280-9956f9d133b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729e3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a9d2997b50fa75adccf19a1cc2d1fd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad9af8a2-8a9c-4498-87ed-7584864cf3df", + "x-ms-client-request-id": "8a9d2997b50fa75adccf19a1cc2d1fd6", + "x-ms-correlation-request-id": "945f170e-4762-48e3-b733-c0499daca866", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "b08cf9af-bc4a-4ef2-b1f5-3b9aa5f4fd51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033845Z:945f170e-4762-48e3-b733-c0499daca866" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729e4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a63aaf0f6987e9ed2c5cbafa64330381", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "341c0a7c-35e7-46d0-9995-0372c03c04ae", + "x-ms-client-request-id": "a63aaf0f6987e9ed2c5cbafa64330381", + "x-ms-correlation-request-id": "e2c92b75-09e2-4002-82c3-482bda9a3c5b", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "863aa1b2-a30e-48fa-8e21-fb816d83fa24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033846Z:e2c92b75-09e2-4002-82c3-482bda9a3c5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729e5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4113c3d44dc95cbca3786c15765e01e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4e34dc4-ceac-4056-a7d4-94e6b3c3ad9f", + "x-ms-client-request-id": "4113c3d44dc95cbca3786c15765e01e8", + "x-ms-correlation-request-id": "7582d09b-4fda-4bc8-8d03-38b58992fedd", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "f66b5936-177b-4194-9a26-cbb66750ca63", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033847Z:7582d09b-4fda-4bc8-8d03-38b58992fedd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729e6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "645f123cd2542dfd3bb35db3fa6043a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a698ade6-0b94-4df5-9576-590e5de316ff", + "x-ms-client-request-id": "645f123cd2542dfd3bb35db3fa6043a8", + "x-ms-correlation-request-id": "99bd1b65-4f24-4b6d-8b56-6e34c312411c", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "6c004e0a-c91e-41c7-8d09-374b3e7113ac", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033848Z:99bd1b65-4f24-4b6d-8b56-6e34c312411c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729e7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09cc97cbde1ac20df2de020efdd773ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb2970c3-f8a1-4e5c-8704-04fd082d9ef4", + "x-ms-client-request-id": "09cc97cbde1ac20df2de020efdd773ce", + "x-ms-correlation-request-id": "d1763bb6-81bc-4c5e-b748-e52e67443589", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "a5da0b92-93fd-48e4-9660-fc8f53e88c2f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033850Z:d1763bb6-81bc-4c5e-b748-e52e67443589" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729e8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "51bdd25a9fd3022dc5e60515ef096143", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49788130-6dad-462b-bb16-82f4c1274105", + "x-ms-client-request-id": "51bdd25a9fd3022dc5e60515ef096143", + "x-ms-correlation-request-id": "83b23ea0-4ece-44d2-97e9-0686fa62fa99", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "f9842850-13ab-4ce3-b9aa-63c9c373ccb1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033851Z:83b23ea0-4ece-44d2-97e9-0686fa62fa99" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729e9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de4ac335f8915ece059d7275cfef3064", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67e585d9-3bde-4bfd-9de3-a1ed2eab0e24", + "x-ms-client-request-id": "de4ac335f8915ece059d7275cfef3064", + "x-ms-correlation-request-id": "18d5e20d-2629-4b5b-a5df-ff220dfbdf5f", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "89caf1b0-cd00-4268-8c5c-0b4f82e315f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033852Z:18d5e20d-2629-4b5b-a5df-ff220dfbdf5f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ea-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28588f40f1a22cd46ac94334d9f7d3e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36de415d-dbb6-4453-b727-1c2fe105a8f9", + "x-ms-client-request-id": "28588f40f1a22cd46ac94334d9f7d3e9", + "x-ms-correlation-request-id": "788aa3f1-d5dd-43a2-824d-4c803f7cf2f5", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "2f096cb1-e244-41c4-acc7-ea53a32aac75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033853Z:788aa3f1-d5dd-43a2-824d-4c803f7cf2f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729eb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39d9bf7c948d613c035f4c362cb733d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce42c921-cad6-4fbb-8df9-d571aa6d1cef", + "x-ms-client-request-id": "39d9bf7c948d613c035f4c362cb733d6", + "x-ms-correlation-request-id": "bc28cd4b-d1a6-44b7-8cb3-7dd90bdae15d", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "31bf3532-bec8-4899-b571-f901137666e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033855Z:bc28cd4b-d1a6-44b7-8cb3-7dd90bdae15d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ec-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fd4a0b539b043a1ee1d74c7b59a840d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e9d17030-5852-4df9-bb53-27f10486568d", + "x-ms-client-request-id": "5fd4a0b539b043a1ee1d74c7b59a840d", + "x-ms-correlation-request-id": "f249782b-d65b-4612-8857-fe2aec0ea609", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "c3b8bf9d-fbd4-456b-9c3f-cbb3d5a4adee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033856Z:f249782b-d65b-4612-8857-fe2aec0ea609" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ed-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10f988caf615acd752f62542a49effb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4347fe80-692a-4fad-9121-e05e636c08c1", + "x-ms-client-request-id": "10f988caf615acd752f62542a49effb2", + "x-ms-correlation-request-id": "c7e24c66-377b-477b-8f8a-cafc4a7afea4", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "4e2e6221-a755-4f5d-bf3b-9449f9789d8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033857Z:c7e24c66-377b-477b-8f8a-cafc4a7afea4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ee-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "387e6d96732243391d954b6f1f74ac69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de7b3a93-abe8-41d7-85d0-cd1cccaada40", + "x-ms-client-request-id": "387e6d96732243391d954b6f1f74ac69", + "x-ms-correlation-request-id": "43988d25-096a-4dbe-8239-dd2bb00c343b", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "728adb78-9937-44e2-b5b2-1992c4fe70ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033859Z:43988d25-096a-4dbe-8239-dd2bb00c343b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ef-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a46c3fda22bebfc0c9280cb9145f9f4f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:38:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23fb9a09-0d1c-44c0-8115-b7f040a814c1", + "x-ms-client-request-id": "a46c3fda22bebfc0c9280cb9145f9f4f", + "x-ms-correlation-request-id": "9c97faeb-0568-4164-8f93-4bbd31bc0a4a", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "b14620c4-16a6-4aa0-a7c3-734efb49c8a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033900Z:9c97faeb-0568-4164-8f93-4bbd31bc0a4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729f0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4830c11d4c1b56ea4fb6f280ab678cde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55fa1593-44b9-4885-a9fb-c97b6eeaab3d", + "x-ms-client-request-id": "4830c11d4c1b56ea4fb6f280ab678cde", + "x-ms-correlation-request-id": "26fbb420-eff9-4660-9298-11c9fd6a18c7", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "3b5358ff-eefa-454f-8504-53e8aae166e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033901Z:26fbb420-eff9-4660-9298-11c9fd6a18c7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729f1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6567bb4a5b3274f4acbf6ffa667f2ebe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d172a34c-9c6c-4eab-86b7-bb26d2051536", + "x-ms-client-request-id": "6567bb4a5b3274f4acbf6ffa667f2ebe", + "x-ms-correlation-request-id": "59159435-3600-477b-a1b2-7cc4ff1edebd", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "f1873314-a590-40ce-935d-4bedb95eece1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033902Z:59159435-3600-477b-a1b2-7cc4ff1edebd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729f2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d52fbf664438e4d551554082f401461", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "82369265-e8ca-48b9-880d-20e3b75b61d0", + "x-ms-client-request-id": "5d52fbf664438e4d551554082f401461", + "x-ms-correlation-request-id": "d8a3a13e-733c-4855-8055-5ba1b6eada1a", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "f2e30561-a7bb-4c76-b839-7474bc996622", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033904Z:d8a3a13e-733c-4855-8055-5ba1b6eada1a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729f3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "586f2e9c3af8c11dcdbc9b5cdcf0f0d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20d900bb-303e-454c-9a9f-82f64a8dd305", + "x-ms-client-request-id": "586f2e9c3af8c11dcdbc9b5cdcf0f0d0", + "x-ms-correlation-request-id": "9dacd903-5e41-497e-b932-fd007ea5ab72", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "43bdd016-c4bd-4035-9da9-a418e724050d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033905Z:9dacd903-5e41-497e-b932-fd007ea5ab72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729f4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "af8934872e14e59a6ed80f1c07ec446c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cbf24abe-fb6c-4185-82e3-dcdefa10600a", + "x-ms-client-request-id": "af8934872e14e59a6ed80f1c07ec446c", + "x-ms-correlation-request-id": "8d937aee-f0be-4701-ba0b-509d9f8e2cb4", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "f20c60f1-91e1-437d-a103-581513a5c37c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033906Z:8d937aee-f0be-4701-ba0b-509d9f8e2cb4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729f5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "375d0dabd610bcc6dd909086c9f0b165", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "052e926d-5e17-499b-a5d8-f965ce918cb5", + "x-ms-client-request-id": "375d0dabd610bcc6dd909086c9f0b165", + "x-ms-correlation-request-id": "76682f0d-672b-4d58-a7fa-ef9584756717", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "f72d79af-dc2b-46c2-b349-e8d36c6a1f2d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033907Z:76682f0d-672b-4d58-a7fa-ef9584756717" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729f6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fb80832564b66e4d948ae91f2a00b9e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9be6fbd8-0743-4a7d-a614-9bdba87e2464", + "x-ms-client-request-id": "fb80832564b66e4d948ae91f2a00b9e1", + "x-ms-correlation-request-id": "2a03df3d-d443-406f-96ee-b5d8a48bc6f9", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "c036b897-825b-4b13-b1a6-826e1828311d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033909Z:2a03df3d-d443-406f-96ee-b5d8a48bc6f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729f7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cfb12f78b892b1c06ecdd1839e131c7d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ac1dd13-7720-489a-a332-96b61072dd44", + "x-ms-client-request-id": "cfb12f78b892b1c06ecdd1839e131c7d", + "x-ms-correlation-request-id": "81331fb3-b657-4692-983d-d962fbc563a5", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "aeeb69ef-4744-44b3-a9b5-866f4a06410c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033910Z:81331fb3-b657-4692-983d-d962fbc563a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729f8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83f7aa26496b46b5c0efa285eca691dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4cfeb86d-e775-4491-b2b4-2a9b18a05b69", + "x-ms-client-request-id": "83f7aa26496b46b5c0efa285eca691dc", + "x-ms-correlation-request-id": "cbf69abe-0055-44ae-b0a4-b4642f81021d", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "f45b86d0-8f66-4edf-b98a-c1b05d785822", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033911Z:cbf69abe-0055-44ae-b0a4-b4642f81021d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729f9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "990eaed6e23f6cd2c3ce8ce892c9cf81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd61839b-8dc1-47d2-a75c-0fb524d9b2c0", + "x-ms-client-request-id": "990eaed6e23f6cd2c3ce8ce892c9cf81", + "x-ms-correlation-request-id": "e572eef1-155c-45af-b638-bf4eda5eeed3", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "8597aeca-2710-4673-904e-5ccb787bd341", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033913Z:e572eef1-155c-45af-b638-bf4eda5eeed3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729fa-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ff86b6d36092f75796a0ea2153ac5c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c87196a9-ed4d-4006-bd17-774d87993523", + "x-ms-client-request-id": "7ff86b6d36092f75796a0ea2153ac5c7", + "x-ms-correlation-request-id": "503edd04-9b04-4512-bc50-02b971b03469", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "b940c739-52a9-4211-8fe6-4c5d0a69ab45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033914Z:503edd04-9b04-4512-bc50-02b971b03469" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729fb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efadf43c8204443ed88abf9cbcccb4f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d310d4e0-779c-4e2b-8891-72e14e5098de", + "x-ms-client-request-id": "efadf43c8204443ed88abf9cbcccb4f7", + "x-ms-correlation-request-id": "25f808f0-0d12-4c6b-91f8-6b8f746c787f", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "ae8f15e8-9958-49d4-bc18-c6be9ad3b148", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033915Z:25f808f0-0d12-4c6b-91f8-6b8f746c787f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729fc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8017211f12aea0d339df1fd4d3305689", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "48fcca44-d65f-4eaa-86df-4e816ada3ff4", + "x-ms-client-request-id": "8017211f12aea0d339df1fd4d3305689", + "x-ms-correlation-request-id": "711d4e0a-8438-4f66-a529-7350072fedc1", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "9d1e22c4-a08a-4a2e-bb27-be02013be4b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033916Z:711d4e0a-8438-4f66-a529-7350072fedc1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729fd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9dacc409e01ceb7c2db3a77e76d872ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67ec1633-4f44-409c-903f-3d251f8ba3eb", + "x-ms-client-request-id": "9dacc409e01ceb7c2db3a77e76d872ac", + "x-ms-correlation-request-id": "17c6c470-1127-4ef0-9d93-113cdc609f5c", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "59863c7d-ef99-4f06-9c2b-d6bb95836b75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033918Z:17c6c470-1127-4ef0-9d93-113cdc609f5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729fe-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f48217b545222a19210cb525626a71a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d92bd5d9-0b10-48dc-b3d5-dcc45ebc588e", + "x-ms-client-request-id": "f48217b545222a19210cb525626a71a7", + "x-ms-correlation-request-id": "9ca58c4e-b2a2-40c8-9c13-8659c199f818", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "45a4eaad-f31a-44c1-bdb5-77e1a815bd41", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033919Z:9ca58c4e-b2a2-40c8-9c13-8659c199f818" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|671729ff-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f893363316203fdba42c53fa6a552a60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5da571c8-add6-44c0-b02f-8350c61b4fda", + "x-ms-client-request-id": "f893363316203fdba42c53fa6a552a60", + "x-ms-correlation-request-id": "0a1e7ace-dbfd-4bfd-a22a-9a6c6502a84a", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "18137ad9-9236-40b3-91fa-63ada5e97263", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033921Z:0a1e7ace-dbfd-4bfd-a22a-9a6c6502a84a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a00-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc1e726d62adc466aa827c0f2a5788c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c89694f-68cd-4965-b818-25b9ab363f5b", + "x-ms-client-request-id": "bc1e726d62adc466aa827c0f2a5788c3", + "x-ms-correlation-request-id": "989c6823-f6ee-458d-b40c-d8ad906ab6e0", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "25c01270-cf29-4061-af4f-f548b1d66611", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033922Z:989c6823-f6ee-458d-b40c-d8ad906ab6e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a01-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3f4aff4279459e8c3b4350f6f21fbfcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53d30ec3-5759-4928-a806-3b1a4a88c127", + "x-ms-client-request-id": "3f4aff4279459e8c3b4350f6f21fbfcc", + "x-ms-correlation-request-id": "7025a95b-9d1c-43eb-b262-a47f9935fa71", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "f5f2005b-949f-4745-aee1-ad161c70f259", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033923Z:7025a95b-9d1c-43eb-b262-a47f9935fa71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a02-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efb855e2b44bd1facfce4d9e9acb144c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "47c70b64-6eee-4bb1-8bc6-d1da338cd6be", + "x-ms-client-request-id": "efb855e2b44bd1facfce4d9e9acb144c", + "x-ms-correlation-request-id": "34035cfe-b7b7-4a84-86fd-746585089233", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "1ef84985-5d48-4b63-8f08-988bcd59b4d1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033925Z:34035cfe-b7b7-4a84-86fd-746585089233" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a03-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ab78fa3ea0af31be67f80691270d28b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a429acb8-8006-49b3-9ef2-447283e92165", + "x-ms-client-request-id": "6ab78fa3ea0af31be67f80691270d28b", + "x-ms-correlation-request-id": "0d4d5bf9-130f-444f-909e-9ad01a64f0df", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "2e8ab309-899a-484b-931c-2ef7a9d1ce04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033926Z:0d4d5bf9-130f-444f-909e-9ad01a64f0df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a04-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d52db0c2999f8d7705786f762bee046f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c74b1765-0657-4628-8ae2-9eba1ce121c6", + "x-ms-client-request-id": "d52db0c2999f8d7705786f762bee046f", + "x-ms-correlation-request-id": "b1559b68-d24c-43b6-8f7a-ed0f5905c0b7", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "5caf83fd-a97d-43ae-9f3b-97cc3202cca0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033927Z:b1559b68-d24c-43b6-8f7a-ed0f5905c0b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a05-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6252032f5567f7c139c409cb3490bf5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3b971c49-1e0c-4f05-861f-191b7ceb65d3", + "x-ms-client-request-id": "6252032f5567f7c139c409cb3490bf5f", + "x-ms-correlation-request-id": "26430098-3f1c-461a-b1b8-86721d3220d3", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "1ea3c769-b7a5-4fb4-8c8e-2c7136b94c40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033928Z:26430098-3f1c-461a-b1b8-86721d3220d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a06-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eadbc1fc3e9e0aad172a65917aa4c7f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1bbc2022-d96e-415c-8ebe-35e18fe1f742", + "x-ms-client-request-id": "eadbc1fc3e9e0aad172a65917aa4c7f8", + "x-ms-correlation-request-id": "6fc79009-032b-49ee-a1b7-efed00334f99", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "fac39f01-3156-46d7-8075-44c44370ffe0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033930Z:6fc79009-032b-49ee-a1b7-efed00334f99" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a07-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0e3a107b701e6d24ee369bda8fac5874", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "961c26d1-abb3-4e98-9208-08ecede2d615", + "x-ms-client-request-id": "0e3a107b701e6d24ee369bda8fac5874", + "x-ms-correlation-request-id": "f68dfc9c-e339-46e5-8013-cc6288ea71e0", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "64abf252-1802-480a-a5e4-acdf7e6329a1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033931Z:f68dfc9c-e339-46e5-8013-cc6288ea71e0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a08-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "697a10b91912f0d156484a3def2f7c95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0fd84a02-bb79-46c7-97b4-084b17e703e7", + "x-ms-client-request-id": "697a10b91912f0d156484a3def2f7c95", + "x-ms-correlation-request-id": "ae7f9f96-348e-4970-ab94-d399534ccf2d", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "4215bd01-97a0-4904-b2e6-8fd49c70b3a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033932Z:ae7f9f96-348e-4970-ab94-d399534ccf2d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a09-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "244f10fcb0568c409d6efb68a2d27a6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b371176c-7117-46b5-8917-859e68f9b59d", + "x-ms-client-request-id": "244f10fcb0568c409d6efb68a2d27a6b", + "x-ms-correlation-request-id": "9f599b20-b021-463f-b9ab-4d731534d5a5", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "c4d8890c-4e30-4506-ace5-f53b4fcd07bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033933Z:9f599b20-b021-463f-b9ab-4d731534d5a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a0a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6ad8f0d15d2a62e53e49b8d625e77dbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "979a4630-aeee-4b1c-bbbc-e9d65902f9b1", + "x-ms-client-request-id": "6ad8f0d15d2a62e53e49b8d625e77dbe", + "x-ms-correlation-request-id": "28aa491a-bcfb-46f0-a72c-66dd3205a55f", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "4076a992-cc93-48cd-b276-d9bc477670cd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033935Z:28aa491a-bcfb-46f0-a72c-66dd3205a55f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a0b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fdd06b9345d081dd0edcca41d694e83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bbe09031-b129-4d9a-8f15-932cdb1d7f84", + "x-ms-client-request-id": "7fdd06b9345d081dd0edcca41d694e83", + "x-ms-correlation-request-id": "79642cc3-e31a-40f1-b535-8a939eaca964", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "36b060f4-64d6-4acc-80aa-1d27ba21df45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033936Z:79642cc3-e31a-40f1-b535-8a939eaca964" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a0c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe6bdfcd12579f6a2bede50df86a66b6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3fae789a-d5d5-44ee-8cd9-1c8bc4ee906a", + "x-ms-client-request-id": "fe6bdfcd12579f6a2bede50df86a66b6", + "x-ms-correlation-request-id": "670749de-1832-4d2d-83c7-f2fed4391923", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "161f6c7b-f3ab-478b-b834-bd689a8b3151", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033937Z:670749de-1832-4d2d-83c7-f2fed4391923" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a0d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cae3cf0fbf49c0dd3cf9a3c914144d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1af3b34a-4c88-4842-840c-9c64a2c734cb", + "x-ms-client-request-id": "9cae3cf0fbf49c0dd3cf9a3c914144d5", + "x-ms-correlation-request-id": "aa0d4e82-3ee6-452a-bc71-5ffce3c9c6df", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "49ee4cf8-a758-4c93-bf52-6f9ece5085e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033939Z:aa0d4e82-3ee6-452a-bc71-5ffce3c9c6df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a0e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "460834fb7e7ba7679c3e536f4e101065", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86908373-c304-4f00-a67c-a43da1d078da", + "x-ms-client-request-id": "460834fb7e7ba7679c3e536f4e101065", + "x-ms-correlation-request-id": "213af4de-90e3-4f82-91d5-fc8c18aed1e9", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "e11cb36a-c836-4b68-a8c2-89d12d1cf26e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033940Z:213af4de-90e3-4f82-91d5-fc8c18aed1e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a0f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0b31687b1bad28ed1cf2b88782d0de9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99bc2e2a-f0a9-44bc-9127-b380b6ea52c5", + "x-ms-client-request-id": "e0b31687b1bad28ed1cf2b88782d0de9", + "x-ms-correlation-request-id": "18807fed-a4f9-46a8-bd61-cbe33dd5e8c8", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "a987cc3b-5425-46cf-9056-ed68cd632645", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033941Z:18807fed-a4f9-46a8-bd61-cbe33dd5e8c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a10-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c31110a81f61723ad507ffb6a79e4dc2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba4336d5-c76a-45d1-8c70-7f8757cbc6fd", + "x-ms-client-request-id": "c31110a81f61723ad507ffb6a79e4dc2", + "x-ms-correlation-request-id": "9925961c-05ee-468e-9118-4307d64621a9", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "1342ad18-8eef-4684-afe8-5bfe489fbe21", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033942Z:9925961c-05ee-468e-9118-4307d64621a9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a11-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ab534be638d491ba53675ab52de2e6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "655267e5-dcb4-47ad-9cf5-d21960300932", + "x-ms-client-request-id": "7ab534be638d491ba53675ab52de2e6f", + "x-ms-correlation-request-id": "ba103159-4bd5-4cb9-bd57-c50be56661e5", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "cb42beba-3453-42a5-9d0b-736151ff5343", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033944Z:ba103159-4bd5-4cb9-bd57-c50be56661e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a12-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ec669304dfe6704db400bb2b2d82a33", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "010897d5-2461-44b8-8b26-668f01f615a3", + "x-ms-client-request-id": "3ec669304dfe6704db400bb2b2d82a33", + "x-ms-correlation-request-id": "dce0a1be-5bbb-4118-b999-8bba00c309ed", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "b8cd440e-bc80-4916-a9f6-624ddafee70e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033945Z:dce0a1be-5bbb-4118-b999-8bba00c309ed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a13-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44ca69819277455cf5c81d2baa8e1ff6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1e56d8d-b84a-40e9-860b-ec08b2095b75", + "x-ms-client-request-id": "44ca69819277455cf5c81d2baa8e1ff6", + "x-ms-correlation-request-id": "d84bd23e-0ec8-4642-8c6e-7b7fb53a1bef", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "173d929a-1b40-4b32-9f5b-97b3fd22d324", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033946Z:d84bd23e-0ec8-4642-8c6e-7b7fb53a1bef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a14-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3d8590d80ed770c3304e9f4c586897cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3facd30-2e83-42d9-8327-a76885224b57", + "x-ms-client-request-id": "3d8590d80ed770c3304e9f4c586897cd", + "x-ms-correlation-request-id": "9f19fb18-974d-4d76-99c1-7b69e515b2b2", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "a0411414-9a00-4213-ad1b-b1e2fbfdb6ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033947Z:9f19fb18-974d-4d76-99c1-7b69e515b2b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a15-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e92a410bea149df70d81493630d8bc4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b533aa74-6c42-4c25-ba89-54f84f70dda9", + "x-ms-client-request-id": "e92a410bea149df70d81493630d8bc4c", + "x-ms-correlation-request-id": "dd8b4019-6d9b-41f5-84fa-d19891d24520", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "ba60bbc0-dcce-4321-a47e-7450ad24c4c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033949Z:dd8b4019-6d9b-41f5-84fa-d19891d24520" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a16-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21da1421ec53735ca5591329f30fec8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f7ab26f-59b5-46db-bc20-903fb6c52966", + "x-ms-client-request-id": "21da1421ec53735ca5591329f30fec8c", + "x-ms-correlation-request-id": "55cc3dff-1291-48e6-88c6-d3982ddd7484", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "cdcc2a88-0fe1-455e-91c6-cf587b2a411c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033950Z:55cc3dff-1291-48e6-88c6-d3982ddd7484" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a17-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "681f4f313664ede299e73055c48d4057", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85ab4141-f9bd-434d-b504-1b7ac192c10a", + "x-ms-client-request-id": "681f4f313664ede299e73055c48d4057", + "x-ms-correlation-request-id": "567fa506-dd7d-4bf6-84e0-4edea0e43b72", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "d16a8f88-00ca-4dd9-9052-c648022a394f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033951Z:567fa506-dd7d-4bf6-84e0-4edea0e43b72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a18-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "442b5291758e1f7ae5b643bad7cdaafe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "51c1390a-31ff-4c41-bb33-6ee68da6f2db", + "x-ms-client-request-id": "442b5291758e1f7ae5b643bad7cdaafe", + "x-ms-correlation-request-id": "5c0223e2-9c93-475e-a906-45597f5a9155", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "5ee346af-ebe3-4491-a16b-3f2c29f3398e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033953Z:5c0223e2-9c93-475e-a906-45597f5a9155" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a19-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e004bd9453b9eae831ec886bbc06ae18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e12bc1b-12d3-41e9-9d1e-f94859bb8a85", + "x-ms-client-request-id": "e004bd9453b9eae831ec886bbc06ae18", + "x-ms-correlation-request-id": "60c2cf85-012a-4736-bfd8-bf35bcef668c", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "dec6baf6-14a0-42ab-a6cf-6fb7d8e02ef6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033954Z:60c2cf85-012a-4736-bfd8-bf35bcef668c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a1a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a198bc19a8e3bbfed50083adf32716cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "37fe1750-bcb2-4918-9c07-85eba14abc77", + "x-ms-client-request-id": "a198bc19a8e3bbfed50083adf32716cb", + "x-ms-correlation-request-id": "4be7ea30-df97-4329-a021-3692208003c5", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "68228815-bd94-4e3e-8a1a-d9e3a8c3659b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033955Z:4be7ea30-df97-4329-a021-3692208003c5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a1b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "07c0313d5f883d9d694112a1ed0f62de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "738bab64-f7cc-437d-94a8-b7d9774af908", + "x-ms-client-request-id": "07c0313d5f883d9d694112a1ed0f62de", + "x-ms-correlation-request-id": "3e57a38a-3dfb-4e8d-aa08-99d02447f95a", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "013dd8be-3dac-4262-9650-84f2c89de5b3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033957Z:3e57a38a-3dfb-4e8d-aa08-99d02447f95a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a1c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1aa12a080835ec1abe490ab9d03af60a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb5227ab-c62b-4adc-a83b-dbbb04686b81", + "x-ms-client-request-id": "1aa12a080835ec1abe490ab9d03af60a", + "x-ms-correlation-request-id": "53ad0177-b67c-491f-b608-bda1fafa533e", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "374c0c74-ab75-4866-87d4-ac705bee5cf3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033958Z:53ad0177-b67c-491f-b608-bda1fafa533e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a1d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8a2dbcd5a646ba901e5a37a1965dcec6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:39:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a7ce6a01-6fc0-40f3-82e0-b581293ece45", + "x-ms-client-request-id": "8a2dbcd5a646ba901e5a37a1965dcec6", + "x-ms-correlation-request-id": "be4a11b0-dc89-46ef-92b0-30bd39773442", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "f94585a9-34c8-46fc-8878-cfd2af0c656a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T033959Z:be4a11b0-dc89-46ef-92b0-30bd39773442" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a1e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c8a5a49dfb86359516d4493f54e46c2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "939e6b6b-e16b-4ecf-be0a-83d0e7cb90ba", + "x-ms-client-request-id": "c8a5a49dfb86359516d4493f54e46c2f", + "x-ms-correlation-request-id": "9e71cf5c-3865-4480-b5da-c25e777e9cdb", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "9fb8f284-5f15-4cad-ac90-6c69bb3912f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034000Z:9e71cf5c-3865-4480-b5da-c25e777e9cdb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a1f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "31cc074ad8e261989ae6fcdbd1795561", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6caba7b-f2a6-47cb-acb4-3daf9dca5f3f", + "x-ms-client-request-id": "31cc074ad8e261989ae6fcdbd1795561", + "x-ms-correlation-request-id": "7181adee-e90c-40f3-94c8-76c33c603526", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "1ddf4c60-975e-4d54-950d-95be1831d956", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034002Z:7181adee-e90c-40f3-94c8-76c33c603526" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a20-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c1b447b2e95d98326f773715d516539", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c29c3dd8-9c46-4d53-8950-b4b43f7ccbac", + "x-ms-client-request-id": "2c1b447b2e95d98326f773715d516539", + "x-ms-correlation-request-id": "c754a02b-4c97-41cb-83e4-4500f94ec069", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "0b000ee4-d38f-4c62-84f7-e7839fd0c1fe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034003Z:c754a02b-4c97-41cb-83e4-4500f94ec069" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a21-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e5708ed9d90c5e40b432e9fffba639d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "267a490d-eaf2-4392-9310-2bb5a3e1d9ea", + "x-ms-client-request-id": "8e5708ed9d90c5e40b432e9fffba639d", + "x-ms-correlation-request-id": "d2eb117f-aa75-4601-bd48-73870896741d", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "df3836b3-a5ed-460a-b02d-17ecb4e871ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034004Z:d2eb117f-aa75-4601-bd48-73870896741d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a22-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10c3e87f40c81c9984f20aea64260449", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5a6f8c5-71e6-43c1-aa53-fd8e7b025597", + "x-ms-client-request-id": "10c3e87f40c81c9984f20aea64260449", + "x-ms-correlation-request-id": "8bc959f7-9e7f-4b45-b7ce-b7bc55301455", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "9ba63395-ae3c-46d2-84f7-0c414d42dc7f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034005Z:8bc959f7-9e7f-4b45-b7ce-b7bc55301455" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a23-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c9edc281c621ded060562151ffe3d96c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "212fdb15-1344-44fd-87f0-6898b9543b38", + "x-ms-client-request-id": "c9edc281c621ded060562151ffe3d96c", + "x-ms-correlation-request-id": "a132bab4-8af8-46db-90b9-9614d00c3598", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "86c22b34-7291-4bbc-bbc1-84975fbab1bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034007Z:a132bab4-8af8-46db-90b9-9614d00c3598" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a24-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74f2d593558dad706e3a0a9e92fa61e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a9847ee-8491-47e4-9627-06dd1b5599e6", + "x-ms-client-request-id": "74f2d593558dad706e3a0a9e92fa61e4", + "x-ms-correlation-request-id": "0c569be5-e890-4dc6-bf21-c2ec8fbfa2f1", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "6b19c375-75bf-4942-86d6-0f04196543e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034008Z:0c569be5-e890-4dc6-bf21-c2ec8fbfa2f1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a25-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3c1ee43e9accb87c17e5af721f471ca0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "78a789bd-bebe-4291-b65a-4632809c536b", + "x-ms-client-request-id": "3c1ee43e9accb87c17e5af721f471ca0", + "x-ms-correlation-request-id": "3174287e-5bca-46b4-810d-254dc42baf49", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "06f11e29-0413-481f-9feb-f5d08a0d7694", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034009Z:3174287e-5bca-46b4-810d-254dc42baf49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a26-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e569e188f342bbc51405ae6bc324b65", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9378989-e714-477a-ad54-e5b857315270", + "x-ms-client-request-id": "8e569e188f342bbc51405ae6bc324b65", + "x-ms-correlation-request-id": "9b7ae4f4-15ed-4a84-84b2-fa61007fba73", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "d774076a-6282-42f6-8f73-764f7cd8e5b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034011Z:9b7ae4f4-15ed-4a84-84b2-fa61007fba73" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a27-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b133cf59dc5f99f593a5ca7a5fe8e26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6066667f-596e-4bde-9d38-d1a5b933da1e", + "x-ms-client-request-id": "1b133cf59dc5f99f593a5ca7a5fe8e26", + "x-ms-correlation-request-id": "59b3ddfc-fd63-4cdb-9016-a3fc71255e10", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "8a874114-95c9-4d63-b237-6f5f6a7f6997", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034012Z:59b3ddfc-fd63-4cdb-9016-a3fc71255e10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a28-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f485691ed2a3aeb028f2ea8c3f95fce5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8fff5248-3918-4283-ac6b-1a5878df05fb", + "x-ms-client-request-id": "f485691ed2a3aeb028f2ea8c3f95fce5", + "x-ms-correlation-request-id": "297ad284-982c-4bc4-a855-6c1d60fbcbdb", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "f6f08b89-1491-4c42-998e-e88ac23088ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034013Z:297ad284-982c-4bc4-a855-6c1d60fbcbdb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a29-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e27d499a01347bdafe5d34fa33148653", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f177b23-707b-40b8-aafa-63d7b02c53e1", + "x-ms-client-request-id": "e27d499a01347bdafe5d34fa33148653", + "x-ms-correlation-request-id": "5ba70219-f33f-4c97-a2b1-58f05c1eff70", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "f55fd348-603a-4f54-b10e-bd0f9c169808", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034015Z:5ba70219-f33f-4c97-a2b1-58f05c1eff70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a2a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52c834b256ad22c18c64f2d3b213b9c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16b45ad6-67d5-4b8d-a9e5-7c5129a369fa", + "x-ms-client-request-id": "52c834b256ad22c18c64f2d3b213b9c4", + "x-ms-correlation-request-id": "79d35d22-2912-4bb5-8c90-8ad630ea16dc", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "8343f3bb-9abc-4949-a13c-4a36c7c30026", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034016Z:79d35d22-2912-4bb5-8c90-8ad630ea16dc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a2b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b0d773eab811cf18e09f6469db57b13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e935b4c-2559-4d4a-9a7c-defe0c46aab6", + "x-ms-client-request-id": "5b0d773eab811cf18e09f6469db57b13", + "x-ms-correlation-request-id": "c3785178-b10c-4aa8-a397-8af474d6d9f7", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "2b46b9fc-861d-4c78-8833-6c24587c596e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034017Z:c3785178-b10c-4aa8-a397-8af474d6d9f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a2c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0bd9976ca9cc4338885a55d00e07c9ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c89cc4e-e005-4e3c-868d-48baffc48ff7", + "x-ms-client-request-id": "0bd9976ca9cc4338885a55d00e07c9ea", + "x-ms-correlation-request-id": "308a0017-d907-4f3c-aa3d-d0b4fc7c8216", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "55e66713-b214-4a15-a1c4-22a02ee9a442", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034019Z:308a0017-d907-4f3c-aa3d-d0b4fc7c8216" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a2d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbbb70a32a0706d243acc3a3607a84d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "256485cc-32bd-462d-9516-ff9ac27fa49b", + "x-ms-client-request-id": "bbbb70a32a0706d243acc3a3607a84d6", + "x-ms-correlation-request-id": "0cdbf7d9-f889-4947-8114-758b88cb6218", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "6daafac7-7eb5-413c-8056-59d08617f909", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034020Z:0cdbf7d9-f889-4947-8114-758b88cb6218" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a2e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1a67dfe8ae3a94f73ec9d32655200d87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8a5492a-f473-4a66-8f50-b7d1460b3cac", + "x-ms-client-request-id": "1a67dfe8ae3a94f73ec9d32655200d87", + "x-ms-correlation-request-id": "ee3535bb-3de4-44a9-8167-d08ef49abf6b", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "86b4590d-63e8-46e4-aa5a-301f0cccae2a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034021Z:ee3535bb-3de4-44a9-8167-d08ef49abf6b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a2f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2da30c3fc0f9410bc4d3c720e694e30d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d66aeaf-d873-421a-b294-9db34bb4e0ef", + "x-ms-client-request-id": "2da30c3fc0f9410bc4d3c720e694e30d", + "x-ms-correlation-request-id": "c8657ddc-7dd6-43b4-96a0-8b20c7f72e45", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "80cc420c-0a53-4c9e-a62f-3b63807745bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034022Z:c8657ddc-7dd6-43b4-96a0-8b20c7f72e45" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a30-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fe87fd5aea0f5b078277d3e57acb022", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59a207b8-87cf-40e3-84e8-79337c2e0d8d", + "x-ms-client-request-id": "2fe87fd5aea0f5b078277d3e57acb022", + "x-ms-correlation-request-id": "c7306a87-e11b-4bfd-bcd4-ac8030da8a10", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "9f03d2cd-c142-41ae-9fc4-3e7a74b38c6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034024Z:c7306a87-e11b-4bfd-bcd4-ac8030da8a10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a31-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54633c9e57d728dcd3255666e6d7aeaa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3027d1ca-82a2-48a4-81a7-22ed4f1e9e86", + "x-ms-client-request-id": "54633c9e57d728dcd3255666e6d7aeaa", + "x-ms-correlation-request-id": "e1785d3a-b94b-42db-88b4-8c0e023d5aad", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "36e2232b-e6f3-4919-89ca-309f974be6eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034025Z:e1785d3a-b94b-42db-88b4-8c0e023d5aad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a32-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d651c6e6dd3891e65badb5d242cdea18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04d567ba-88c7-485c-8f6e-b68176868222", + "x-ms-client-request-id": "d651c6e6dd3891e65badb5d242cdea18", + "x-ms-correlation-request-id": "e6e20925-f515-49ee-b0a7-d7faf78ad472", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "8024dd47-b162-4d95-8134-d85902cb9978", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034026Z:e6e20925-f515-49ee-b0a7-d7faf78ad472" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a33-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a982a5228e307e35a2c05c7b58490ea0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2b115fa-77bd-4496-b0f2-3763ee2ccbc5", + "x-ms-client-request-id": "a982a5228e307e35a2c05c7b58490ea0", + "x-ms-correlation-request-id": "43b8c459-614e-48f6-a37a-888587527798", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "0c463cd5-2a64-4ad9-828e-d26b604d8eec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034028Z:43b8c459-614e-48f6-a37a-888587527798" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a34-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9058d278d95ac0ea55d2f829a10ae506", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b15e8976-3906-4658-9462-4e3857c9f18d", + "x-ms-client-request-id": "9058d278d95ac0ea55d2f829a10ae506", + "x-ms-correlation-request-id": "de7f90c6-4ff4-45d6-b3f4-5759f62d02d3", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "1be181ab-d59c-4d09-b915-48240d71ac65", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034029Z:de7f90c6-4ff4-45d6-b3f4-5759f62d02d3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a35-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "41433e3b0455577991d23377816b3911", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2a6163f-5704-4641-9ac1-f591ba4a3029", + "x-ms-client-request-id": "41433e3b0455577991d23377816b3911", + "x-ms-correlation-request-id": "710c1924-03a9-48bc-ae6c-c2ef19f3b3a2", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "a68d5083-2f4e-4dab-abe5-f6a691b95fb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034030Z:710c1924-03a9-48bc-ae6c-c2ef19f3b3a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a36-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7059149e597549bdbac1535e960bdc98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e134c354-1422-432c-af72-9ae2ba68c8b2", + "x-ms-client-request-id": "7059149e597549bdbac1535e960bdc98", + "x-ms-correlation-request-id": "b20c1795-30c8-4178-a58a-d36168b71002", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "8999a3fc-e142-40c1-aeae-66cdb41f5e04", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034031Z:b20c1795-30c8-4178-a58a-d36168b71002" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a37-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "193f55dbcd05744b5900ff88a5723eea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68831feb-b819-422d-9e80-2fa3533cbc2a", + "x-ms-client-request-id": "193f55dbcd05744b5900ff88a5723eea", + "x-ms-correlation-request-id": "482d3cc7-d9a6-45ac-8370-d397880615d7", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "d1e0d8fa-fb9f-446e-96f0-aa6096ac5845", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034033Z:482d3cc7-d9a6-45ac-8370-d397880615d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a38-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c8ae69975b0e19180fa8693b01bc185", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2561f17e-130a-4aca-bed8-abc182f4fa1c", + "x-ms-client-request-id": "8c8ae69975b0e19180fa8693b01bc185", + "x-ms-correlation-request-id": "f05eeb04-c407-4e70-8215-ed4f1f8505f4", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "f646948f-d0fa-4332-bc9f-46517e4f1258", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034034Z:f05eeb04-c407-4e70-8215-ed4f1f8505f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a39-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2c9c9bf51f2bd10cc9e516745a35a348", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a537a5e3-bacb-4d49-b7a1-0b33957424f5", + "x-ms-client-request-id": "2c9c9bf51f2bd10cc9e516745a35a348", + "x-ms-correlation-request-id": "1f6e7edf-5056-4f25-b929-5f3e3c21e591", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "cb3d81c7-368b-4d74-ab15-6e98bf208993", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034035Z:1f6e7edf-5056-4f25-b929-5f3e3c21e591" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a3a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "afc46983508065e8c45e990b47b7c33e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d8dd20a-34ba-4dd4-9273-44ba13556de0", + "x-ms-client-request-id": "afc46983508065e8c45e990b47b7c33e", + "x-ms-correlation-request-id": "9dd444e0-5302-47c4-9c0c-ef1bc373f380", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "d9aa423d-1f94-4910-bf5d-e5ece94e8324", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034036Z:9dd444e0-5302-47c4-9c0c-ef1bc373f380" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a3b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0a927a3f12d67abfdab9c2ca5e1d874b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f40d952-6f7d-4c4f-a01d-9571c138cb75", + "x-ms-client-request-id": "0a927a3f12d67abfdab9c2ca5e1d874b", + "x-ms-correlation-request-id": "70df402a-232c-4c65-ba8b-5becfe40a6ba", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "ebdefcbf-572f-4430-9ffd-c0732a21f8f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034038Z:70df402a-232c-4c65-ba8b-5becfe40a6ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a3c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "47103e571156a504b33667cd85008911", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0986dd15-10ad-4e9b-b962-6fa116739b53", + "x-ms-client-request-id": "47103e571156a504b33667cd85008911", + "x-ms-correlation-request-id": "c28ee6fb-6adf-4d22-8049-8b696e108f01", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "591f10f3-927f-464b-9eb4-a2f1916a6fca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034039Z:c28ee6fb-6adf-4d22-8049-8b696e108f01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a3d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e034d82299a37071aa4ad5c78d1d07a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18ad1b89-aec8-40ba-8375-05c46667372d", + "x-ms-client-request-id": "e034d82299a37071aa4ad5c78d1d07a7", + "x-ms-correlation-request-id": "187b4df0-043f-483a-9846-146e956c159c", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "443f3f05-5673-489d-85c8-16bdf41da61a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034040Z:187b4df0-043f-483a-9846-146e956c159c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a3e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09b44ed67ba72ee775ec579faaf2f4d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bccf25f2-79b9-4812-95a5-57f656cc6dd3", + "x-ms-client-request-id": "09b44ed67ba72ee775ec579faaf2f4d9", + "x-ms-correlation-request-id": "5049fb15-fe77-489d-9833-f5c5a7689130", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "50acd92d-f43e-46d7-8171-178666e8e296", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034042Z:5049fb15-fe77-489d-9833-f5c5a7689130" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a3f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86a8b130a7e8bea7cca09d0b3c3d1895", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49c99833-1733-4c98-a7ff-3b3d48911f7d", + "x-ms-client-request-id": "86a8b130a7e8bea7cca09d0b3c3d1895", + "x-ms-correlation-request-id": "c75da8ab-3412-445e-a2a7-a8ebdc213ee2", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "fcb41cc4-bd63-4380-bf5b-a5078fe7cd0a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034043Z:c75da8ab-3412-445e-a2a7-a8ebdc213ee2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a40-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37f6c02f804ca66af0066ab641d2c5b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e47a8cc-f10b-411b-b5bd-c797eb7c25f2", + "x-ms-client-request-id": "37f6c02f804ca66af0066ab641d2c5b8", + "x-ms-correlation-request-id": "47227692-7963-4bbe-8a18-43f544ae8ef5", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "02dbd115-5898-4e2a-bf6a-3bfef81c044c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034044Z:47227692-7963-4bbe-8a18-43f544ae8ef5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a41-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc97fb5681742fbea6f63d07dedcf238", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9badbd2-aad7-4f15-bb48-3a36f7171f41", + "x-ms-client-request-id": "dc97fb5681742fbea6f63d07dedcf238", + "x-ms-correlation-request-id": "380c1cdc-791d-42dc-b64c-de354bf9f2de", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "5a767350-ec4d-4920-b43e-f2bfa81be4c3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034045Z:380c1cdc-791d-42dc-b64c-de354bf9f2de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a42-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e970c1d4bcfbaf8d460295e13cf17cf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "63a77276-dbb8-4aee-8ae2-67f8a44873d0", + "x-ms-client-request-id": "e970c1d4bcfbaf8d460295e13cf17cf9", + "x-ms-correlation-request-id": "a4d29c69-1b23-4f9b-bc1d-7f3a0cb8b6ef", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "6c1dee74-04ae-437f-8a4d-a523dd7d49f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034047Z:a4d29c69-1b23-4f9b-bc1d-7f3a0cb8b6ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a43-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40b4e5da3ba6ad2001c691564363c814", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ae5e63ef-e5c6-4ae4-bf8c-c330ccf5c4d1", + "x-ms-client-request-id": "40b4e5da3ba6ad2001c691564363c814", + "x-ms-correlation-request-id": "5521cf90-4f62-4543-b2f7-cf107912351d", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "adab5eff-29d2-488e-ad91-8649f4b7ed3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034048Z:5521cf90-4f62-4543-b2f7-cf107912351d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a44-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7fe23214dc629abc6ee79572ebddf2b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6d452eb-6a57-4796-8f5e-f5022e0a8c60", + "x-ms-client-request-id": "7fe23214dc629abc6ee79572ebddf2b4", + "x-ms-correlation-request-id": "8d8351be-2682-4ca1-af89-a0d81fe39b2a", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "056560dd-69af-41c1-b42e-94132590cda7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034049Z:8d8351be-2682-4ca1-af89-a0d81fe39b2a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a45-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f92d4379b1279892a0c2e7352a366ce3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49029cc1-7e32-47b2-89c5-cdf63c86160e", + "x-ms-client-request-id": "f92d4379b1279892a0c2e7352a366ce3", + "x-ms-correlation-request-id": "b0d047ed-2d2a-49a6-a9d9-692ddc715517", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "c4fda8ae-7a99-4d09-a4c5-f1c74693caf5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034051Z:b0d047ed-2d2a-49a6-a9d9-692ddc715517" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a46-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0acc813afc0ffe97291ad2bea6aec224", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "82ef7fca-e12d-441c-92c9-3b470458f271", + "x-ms-client-request-id": "0acc813afc0ffe97291ad2bea6aec224", + "x-ms-correlation-request-id": "82d4a38c-1134-4aeb-a783-1498b6ee9d0e", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "02d64eea-eb4e-4e26-8d20-a72c23106815", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034052Z:82d4a38c-1134-4aeb-a783-1498b6ee9d0e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a47-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "00dddcd3cf3663eca049df9ff4866f37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59412b93-992c-4081-beb4-f9eb078b7c20", + "x-ms-client-request-id": "00dddcd3cf3663eca049df9ff4866f37", + "x-ms-correlation-request-id": "cfc755f2-30a3-42cb-8486-8ca5bf1ba68d", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "00f0ade2-6876-4a57-8dbc-2f9981e5265f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034054Z:cfc755f2-30a3-42cb-8486-8ca5bf1ba68d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a48-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a38b17ae8107da5ab2ecf0cdfd3f1f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b7549c2b-a088-4255-b901-501605fc1072", + "x-ms-client-request-id": "6a38b17ae8107da5ab2ecf0cdfd3f1f2", + "x-ms-correlation-request-id": "be62cde8-da57-4d58-9f09-3ba568252ba2", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "6cd601a5-7c2f-43b5-aa6d-76662224485e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034055Z:be62cde8-da57-4d58-9f09-3ba568252ba2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a49-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d61c3ff6c596bad94696ac51df709a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd044de6-44d0-4659-849b-58405f0defee", + "x-ms-client-request-id": "4d61c3ff6c596bad94696ac51df709a2", + "x-ms-correlation-request-id": "6aa4de30-ebb5-4718-8c68-1a110d0b7371", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "6c720473-8af6-45ed-b96b-785a7ecdb62d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034056Z:6aa4de30-ebb5-4718-8c68-1a110d0b7371" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a4a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4439aab5875eb1437605407ffdf84cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "69b85f80-068f-43b3-849a-ff667467f098", + "x-ms-client-request-id": "f4439aab5875eb1437605407ffdf84cc", + "x-ms-correlation-request-id": "30c29f05-218d-493e-832d-5255d3bcd812", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "3c8c9f9e-3103-4504-a4ec-6d572413d016", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034058Z:30c29f05-218d-493e-832d-5255d3bcd812" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a4b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "319fec5721250ede04cdd5a67edf5fb3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33dab35e-8cf2-4e6a-95d7-d735ff2a9939", + "x-ms-client-request-id": "319fec5721250ede04cdd5a67edf5fb3", + "x-ms-correlation-request-id": "802ae0a9-87a8-423b-becd-fc2bdb8084aa", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "107fe3c1-155a-4a42-8591-dc85862c3fcc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034059Z:802ae0a9-87a8-423b-becd-fc2bdb8084aa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a4c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "44612d25fd8fa77cae7616f917a66bb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:40:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c969ac20-12c2-4c5f-8139-25cfa6ee80b3", + "x-ms-client-request-id": "44612d25fd8fa77cae7616f917a66bb4", + "x-ms-correlation-request-id": "683718a9-5366-489b-a737-44b3a2ae088a", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "cbb5508a-dc6d-4a5d-a33c-e7bfe4c22fc8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034100Z:683718a9-5366-489b-a737-44b3a2ae088a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a4d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "306d9de5d857897dbc35f0a8826d6c57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fcb52c57-6ef9-4f6a-8e6d-b546ed1f1009", + "x-ms-client-request-id": "306d9de5d857897dbc35f0a8826d6c57", + "x-ms-correlation-request-id": "83668979-0bbc-4f62-a019-4aaffa2bf020", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "0905e01d-21dc-4767-9ebe-64dd2b6c968c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034101Z:83668979-0bbc-4f62-a019-4aaffa2bf020" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a4e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1e1a1003f7e5a3d6ff882ae0ae4f65e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eeaca30e-e824-41e3-9bb8-d3a9bdde857d", + "x-ms-client-request-id": "d1e1a1003f7e5a3d6ff882ae0ae4f65e", + "x-ms-correlation-request-id": "5633eb0d-ff9a-4a87-a16e-a88e5b4dab38", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "fd4cab70-2a30-439d-926f-fb2c80e39228", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034103Z:5633eb0d-ff9a-4a87-a16e-a88e5b4dab38" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a4f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0c020612e724c5bb0d888590cd42440", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33b88800-5174-41ca-9d92-355a6925af42", + "x-ms-client-request-id": "e0c020612e724c5bb0d888590cd42440", + "x-ms-correlation-request-id": "1603867c-9390-48a3-9be8-b9d90116df4c", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "f6de75cb-89a2-41a8-aef9-3c4217ed7a60", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034104Z:1603867c-9390-48a3-9be8-b9d90116df4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a50-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76f9bf099ac4a5365f13c05f55ce7ed7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "01737941-bcb5-4328-9ac6-30bfcf6dbdc9", + "x-ms-client-request-id": "76f9bf099ac4a5365f13c05f55ce7ed7", + "x-ms-correlation-request-id": "d1f631ef-40e7-4749-9a27-39aa89a24666", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "c6a02cc7-229a-4228-ac49-d5b3d45fc234", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034105Z:d1f631ef-40e7-4749-9a27-39aa89a24666" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a51-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6147913f8bacd1e5459521a6b7e34d9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1040f4f0-6e3d-42b6-a989-bce8f7275d51", + "x-ms-client-request-id": "6147913f8bacd1e5459521a6b7e34d9b", + "x-ms-correlation-request-id": "b69e59cb-300c-4b72-a6c6-59d310f218d7", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "223f77ea-17c1-465e-9f7b-1aedbd3c4fd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034106Z:b69e59cb-300c-4b72-a6c6-59d310f218d7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a52-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4ba441d37febc79aea1b815f6efbf7e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85c3b190-6654-4582-84cd-80a8774334e9", + "x-ms-client-request-id": "4ba441d37febc79aea1b815f6efbf7e1", + "x-ms-correlation-request-id": "795ef521-39c8-402e-b8a4-2add04c6a505", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "61f41f36-3800-4818-ac1f-670e16b68138", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034108Z:795ef521-39c8-402e-b8a4-2add04c6a505" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a53-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a1ab159c38d7d93da27312f7890ee7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34e37f63-5a09-4a02-ac86-d680985ea8e2", + "x-ms-client-request-id": "7a1ab159c38d7d93da27312f7890ee7c", + "x-ms-correlation-request-id": "6bb7d44b-71a8-42ef-b3c6-63cd8af97816", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "86899be4-2e45-49ca-8a29-859827a905cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034109Z:6bb7d44b-71a8-42ef-b3c6-63cd8af97816" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a54-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "138c25c5332abfebf77f77910a856349", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce59ef4b-d4df-452e-8c22-d82d1c1b53da", + "x-ms-client-request-id": "138c25c5332abfebf77f77910a856349", + "x-ms-correlation-request-id": "b152489d-dfd9-4276-8bf6-56d8e9c1c4f5", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "20d10ad4-bd67-4f56-8a57-9909380c521d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034110Z:b152489d-dfd9-4276-8bf6-56d8e9c1c4f5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a55-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "054c409dd2c8100eae2771c44e6b4e59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58ff46a8-d76b-4df0-b20d-e8dc86e74703", + "x-ms-client-request-id": "054c409dd2c8100eae2771c44e6b4e59", + "x-ms-correlation-request-id": "7d6c4d37-5915-4bc1-ba10-ea0bd5fa8f32", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "635cf775-5f03-4418-b8a5-b892fc313d56", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034112Z:7d6c4d37-5915-4bc1-ba10-ea0bd5fa8f32" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a56-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "489a042ce36f26b7c55b830d4b027254", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0824d1f2-801d-47d3-a8a7-51b8a4415fe6", + "x-ms-client-request-id": "489a042ce36f26b7c55b830d4b027254", + "x-ms-correlation-request-id": "198cdb81-021d-4171-861a-a6e940454055", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "9c0afda8-8b6d-4dc1-929b-19b920ac174b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034113Z:198cdb81-021d-4171-861a-a6e940454055" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a57-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3891e7c4e843f2b3167c6502c227708c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2b5e450f-7e3e-456c-9288-d2514f8d5708", + "x-ms-client-request-id": "3891e7c4e843f2b3167c6502c227708c", + "x-ms-correlation-request-id": "bc3a3b3d-f4a6-4f0e-86d1-d70175c46755", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "d7d3a370-3899-4a22-a60f-e96532bd50e2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034114Z:bc3a3b3d-f4a6-4f0e-86d1-d70175c46755" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a58-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "05651d311aebb9da89263f6c4f01c4ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e7a68a5-063a-4fd1-a547-3e287123974a", + "x-ms-client-request-id": "05651d311aebb9da89263f6c4f01c4ac", + "x-ms-correlation-request-id": "511bd574-885d-4b50-b29a-178293d28900", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "020a389b-c100-40d2-bcea-1a5b623a08f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034115Z:511bd574-885d-4b50-b29a-178293d28900" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a59-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "67ff1cb416d9431651a732f37eb4649e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff191133-5ed9-40ca-b03e-7600a5a25041", + "x-ms-client-request-id": "67ff1cb416d9431651a732f37eb4649e", + "x-ms-correlation-request-id": "bda32787-f0c4-4a06-b27e-f2278fa46e37", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "a258d22b-6ba6-4822-9284-2db9e9397e95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034117Z:bda32787-f0c4-4a06-b27e-f2278fa46e37" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a5a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ddbf7eb6c9caa690dd7ae1da846a214", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8de0ff8c-e68a-4336-8adc-f407e382fa56", + "x-ms-client-request-id": "2ddbf7eb6c9caa690dd7ae1da846a214", + "x-ms-correlation-request-id": "63a8fa49-80f3-4941-bde5-166a1bae6053", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "c0aee716-126f-44d4-8892-ce11dc72fbbd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034118Z:63a8fa49-80f3-4941-bde5-166a1bae6053" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a5b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a54eb9b708271ab20721b443e7e63bd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25115fa4-c049-41fb-887e-4acd97bc3cd8", + "x-ms-client-request-id": "a54eb9b708271ab20721b443e7e63bd4", + "x-ms-correlation-request-id": "d4677e06-7ba6-4262-91d9-ac1f9b222b10", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "efdee537-7e90-41f3-bdc9-d4626257656b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034119Z:d4677e06-7ba6-4262-91d9-ac1f9b222b10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a5c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5881a1c29725470fb3555a0267f99a0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f345ef71-2738-4cf6-b951-170d05533bb9", + "x-ms-client-request-id": "5881a1c29725470fb3555a0267f99a0a", + "x-ms-correlation-request-id": "d7b2ffd2-6097-42bb-afb0-f1c53750911d", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "6ad296a4-0de1-4f2d-a061-389539844800", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034121Z:d7b2ffd2-6097-42bb-afb0-f1c53750911d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a5d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c43b1d05be66e27644c0267ab725c226", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fe800229-cb26-402a-b26b-0cfe173bf14e", + "x-ms-client-request-id": "c43b1d05be66e27644c0267ab725c226", + "x-ms-correlation-request-id": "9b810b6c-8c0e-41a7-ac62-fffc97fbc642", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "843e43aa-ff7c-4003-9812-db01a184dd3a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034122Z:9b810b6c-8c0e-41a7-ac62-fffc97fbc642" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a5e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "075ad99b4ac520efa906f1d2aeafb30e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa3a21fa-2bc8-4daa-8074-1bef7ae65a4c", + "x-ms-client-request-id": "075ad99b4ac520efa906f1d2aeafb30e", + "x-ms-correlation-request-id": "972a9946-802f-4ad0-97b6-0814ff283e1e", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "f73dfba0-ddd3-4639-8fe4-79cd53bc6641", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034123Z:972a9946-802f-4ad0-97b6-0814ff283e1e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a5f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca3eaa8776ab036e2a9e136470948f8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5430d9c6-afe7-4807-9335-f1732009043f", + "x-ms-client-request-id": "ca3eaa8776ab036e2a9e136470948f8e", + "x-ms-correlation-request-id": "8da2c60c-b69f-4ee3-a1cd-29e78e5ddb59", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "151241e7-5ae4-47fb-a272-d9d35f39d17b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034124Z:8da2c60c-b69f-4ee3-a1cd-29e78e5ddb59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a60-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d673493939eba442e1b1a5fcca43495", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61234b91-ac40-4fc4-ae54-3ea62f664c65", + "x-ms-client-request-id": "8d673493939eba442e1b1a5fcca43495", + "x-ms-correlation-request-id": "df468d1f-a9b9-4734-8eaf-70a3e6c5163f", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "5548054e-03b6-4d45-b8c4-de3a60ae6028", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034126Z:df468d1f-a9b9-4734-8eaf-70a3e6c5163f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a61-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0df3180df7e6247b6b57dd27368aaf15", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccc2295f-8263-4233-85fa-8e0b8e2a9645", + "x-ms-client-request-id": "0df3180df7e6247b6b57dd27368aaf15", + "x-ms-correlation-request-id": "382dafee-a0d9-4c92-b3ea-129958d8468b", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "99d11772-8e9f-4331-b024-a7fa0890da61", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034127Z:382dafee-a0d9-4c92-b3ea-129958d8468b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a62-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a3f63762548f47066839c8f5b0f3685", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e499e8b0-6145-4794-9c04-9b1261ce5ddb", + "x-ms-client-request-id": "7a3f63762548f47066839c8f5b0f3685", + "x-ms-correlation-request-id": "30f45fd5-a7fa-422a-9dde-a90edaf6452b", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "85b80d1c-5493-4e7c-9b9b-b26fd2702057", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034128Z:30f45fd5-a7fa-422a-9dde-a90edaf6452b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a63-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58577e6a82a09ba7b9422246b51d83a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9af24cf-6b16-43d5-a143-9f560b0dec7e", + "x-ms-client-request-id": "58577e6a82a09ba7b9422246b51d83a4", + "x-ms-correlation-request-id": "1c0a9266-91de-4b71-94d3-842a5939452c", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "06069668-0238-4caa-b9cf-809ed9561e24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034130Z:1c0a9266-91de-4b71-94d3-842a5939452c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a64-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68e8056cb965e84ca8ffa7625bebc85b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e589379-e805-4fc1-b1d3-934c37b3c2f8", + "x-ms-client-request-id": "68e8056cb965e84ca8ffa7625bebc85b", + "x-ms-correlation-request-id": "61b01258-b1a2-421d-a14a-689d35897f57", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "dc9a68ff-9e0f-4c3e-9c50-b8c49ddcca83", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034131Z:61b01258-b1a2-421d-a14a-689d35897f57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a65-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8bc57205632f474bca3c10602293e48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "486cdb25-5dfb-4ad4-b8ff-c75b4d5088ff", + "x-ms-client-request-id": "b8bc57205632f474bca3c10602293e48", + "x-ms-correlation-request-id": "2c62b743-4194-4a64-82a1-1db94b7afed1", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "d0ea7cd6-f795-433b-8d57-3e15a8f182fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034132Z:2c62b743-4194-4a64-82a1-1db94b7afed1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a66-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5623f700cd26b020316fb0a0db443fcd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c60e041-bc4d-4658-ba2f-db35487344b7", + "x-ms-client-request-id": "5623f700cd26b020316fb0a0db443fcd", + "x-ms-correlation-request-id": "69da6e93-27f5-4dee-939a-80dc96faa0a7", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "02bfb57e-23ae-472c-af2e-75910191e97b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034133Z:69da6e93-27f5-4dee-939a-80dc96faa0a7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a67-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d26c679ca60157190f4acc1f846e57e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "45899b90-e88d-40b2-8d29-bf6c628ea98e", + "x-ms-client-request-id": "5d26c679ca60157190f4acc1f846e57e", + "x-ms-correlation-request-id": "b7c36a4c-73e7-4c7f-8570-494e7e3f761e", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "c471d33f-2107-49ea-9923-35df21781be6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034135Z:b7c36a4c-73e7-4c7f-8570-494e7e3f761e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a68-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63625ec172c85235370b87c3a6d31977", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e7fb82df-234a-41b9-82ca-90856d16de75", + "x-ms-client-request-id": "63625ec172c85235370b87c3a6d31977", + "x-ms-correlation-request-id": "d8c6aef3-6bca-4874-9447-e04ae8eb5f49", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "ea0d2a04-b7ff-459a-8573-3ef473669eec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034136Z:d8c6aef3-6bca-4874-9447-e04ae8eb5f49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a69-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b8df364e00235e8860ec532215eb8eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fff5c645-11c3-4726-b5fb-c85734273136", + "x-ms-client-request-id": "3b8df364e00235e8860ec532215eb8eb", + "x-ms-correlation-request-id": "1226384e-e5bc-4e3c-a5c1-ff07aa9d8449", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "83226f80-4258-4fa1-89cd-aec3d922d329", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034137Z:1226384e-e5bc-4e3c-a5c1-ff07aa9d8449" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a6a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ddf3189dbe1060491d3265443ad6ebd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f621cb5-3282-41e3-a766-626ed7a30e3c", + "x-ms-client-request-id": "7ddf3189dbe1060491d3265443ad6ebd", + "x-ms-correlation-request-id": "53e4cfbf-5c7b-4d91-95b3-bc509cd9c49d", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "752b9872-c793-49b7-a35a-23f08d1dcde3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034138Z:53e4cfbf-5c7b-4d91-95b3-bc509cd9c49d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a6b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "045c34dba9b9e07c752dddbaad0331d8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "248569dd-19a5-4416-9105-268fbc25cbd5", + "x-ms-client-request-id": "045c34dba9b9e07c752dddbaad0331d8", + "x-ms-correlation-request-id": "a3dc6eaf-f94a-4295-952e-f297d0a70cae", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "6434442c-ae3c-4505-ac55-8414ad7e654c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034140Z:a3dc6eaf-f94a-4295-952e-f297d0a70cae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a6c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "753a9c539cf48896ef86aa2fba93f1d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2040fc1c-b5bf-4d00-ae90-0ac3e6a258e6", + "x-ms-client-request-id": "753a9c539cf48896ef86aa2fba93f1d9", + "x-ms-correlation-request-id": "19b8b943-ac92-489f-8b4a-31aa7e858e98", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "f09fd404-9dfb-4e12-8304-70932c516170", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034141Z:19b8b943-ac92-489f-8b4a-31aa7e858e98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a6d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ec57089fb301df32b5fe07b3fe4a588e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3719e8b6-62f9-4b21-98f6-c7cd03e96b14", + "x-ms-client-request-id": "ec57089fb301df32b5fe07b3fe4a588e", + "x-ms-correlation-request-id": "9c38c79e-5d15-4d72-b1b1-1ab02b76ed81", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "7a2d74f2-54db-41f3-b738-528ad555cb55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034142Z:9c38c79e-5d15-4d72-b1b1-1ab02b76ed81" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a6e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a7004da2f9733ec89ed41532ff4c25e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d34d72e3-23ff-4a5a-b2c4-7222f31b8cdd", + "x-ms-client-request-id": "a7004da2f9733ec89ed41532ff4c25e2", + "x-ms-correlation-request-id": "a5a1b5ba-cc48-495f-85ca-b403bb948a8c", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "02c7b3eb-f3c6-4892-9864-1781d90631bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034144Z:a5a1b5ba-cc48-495f-85ca-b403bb948a8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a6f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a51a033c44aca0d66a5abff594e28aa4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a7879936-dce2-45ce-be9f-940f9052ac5d", + "x-ms-client-request-id": "a51a033c44aca0d66a5abff594e28aa4", + "x-ms-correlation-request-id": "f56bb2d2-9fb2-497d-9ed9-139c651b81d5", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "98812b9c-1b90-4973-a23b-cb7b1ae27d9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034145Z:f56bb2d2-9fb2-497d-9ed9-139c651b81d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a70-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d8c1b2d4a92a5663f184e2d9effe068", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1492bb7-79b1-4c25-82e9-a4fbabc57af9", + "x-ms-client-request-id": "6d8c1b2d4a92a5663f184e2d9effe068", + "x-ms-correlation-request-id": "62de2fba-da44-4b9b-80fb-e1fcaf399929", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "eecc377a-9a3c-420c-b666-5678ac54a525", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034146Z:62de2fba-da44-4b9b-80fb-e1fcaf399929" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a71-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa7724d9b32f5de276603d1839d3a9bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0d5d6828-80d9-47a4-9fcb-54a8a5ca6d19", + "x-ms-client-request-id": "fa7724d9b32f5de276603d1839d3a9bb", + "x-ms-correlation-request-id": "333ef89d-0ff6-4689-9cc4-5a49ac17e290", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "5451f272-465d-4d0f-beb7-899673db3d46", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034147Z:333ef89d-0ff6-4689-9cc4-5a49ac17e290" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a72-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3047049b8bff24f9d756693f6a8026a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db95d975-81ae-407c-b40d-41eb3f6258fd", + "x-ms-client-request-id": "e3047049b8bff24f9d756693f6a8026a", + "x-ms-correlation-request-id": "00087f91-21ad-4eeb-8c25-a0bde06cff54", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "86db7b0d-598e-48cb-b937-60c028b9ca70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034149Z:00087f91-21ad-4eeb-8c25-a0bde06cff54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a73-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "701c567a8f6a7a75392ff6310c4d6b6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c8e27af1-4e27-4aac-8ed9-bd682f8e7804", + "x-ms-client-request-id": "701c567a8f6a7a75392ff6310c4d6b6b", + "x-ms-correlation-request-id": "116ff23e-d0c5-4f32-980d-519f370d4502", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "53d3befe-4511-4e0c-972d-571f6d8d9cc0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034150Z:116ff23e-d0c5-4f32-980d-519f370d4502" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a74-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2de4926efcfa20a8d4855cba4d4e66ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cea2ca03-5ba6-4f14-a485-453b1c968415", + "x-ms-client-request-id": "2de4926efcfa20a8d4855cba4d4e66ce", + "x-ms-correlation-request-id": "adea2097-03f4-4511-8f0b-5c2c104a335e", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "64c4617b-d4d0-4dfe-833a-21ef74245a8b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034151Z:adea2097-03f4-4511-8f0b-5c2c104a335e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a75-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e29ed25e39b7b950fb8aaa90c21de54f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0289e8a2-f5d0-438e-b30d-0eeecb176ec3", + "x-ms-client-request-id": "e29ed25e39b7b950fb8aaa90c21de54f", + "x-ms-correlation-request-id": "22a1aba7-ddd8-4919-9bda-1ec209aa59f4", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "3c4f99dd-3874-479c-af52-e5e3c1d332f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034153Z:22a1aba7-ddd8-4919-9bda-1ec209aa59f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a76-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6425fa09d4c47d6faefc9be532ba2cea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f8d6224-7ff4-443f-a1ee-dad99cb003d1", + "x-ms-client-request-id": "6425fa09d4c47d6faefc9be532ba2cea", + "x-ms-correlation-request-id": "6255b8d5-658d-4d63-9861-0331efc84672", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "43bd73b0-c5ec-4e13-8341-5ce18d7526a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034154Z:6255b8d5-658d-4d63-9861-0331efc84672" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a77-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ad328c888af34b4412a317052185db6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35053682-f1d6-4e12-9f18-10aaeff74968", + "x-ms-client-request-id": "3ad328c888af34b4412a317052185db6", + "x-ms-correlation-request-id": "0f363452-555a-4f4c-b7ca-f0271ff953d0", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "a780128b-06d8-45f9-a5fc-04438356d93e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034155Z:0f363452-555a-4f4c-b7ca-f0271ff953d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a78-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53b10da002288a09622034ba9d6b8640", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "86fdec64-64f3-4ddc-8663-dc4d723b02e4", + "x-ms-client-request-id": "53b10da002288a09622034ba9d6b8640", + "x-ms-correlation-request-id": "36fbf606-5e47-4478-94a6-753998532bb7", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "fab93665-eb38-4617-b53c-2f9fc15f5953", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034156Z:36fbf606-5e47-4478-94a6-753998532bb7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a79-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ac7bf5dab4a80a045f1229aa2ff2b95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32936ea9-a5e1-4c22-a1a4-3f7c392cc8ef", + "x-ms-client-request-id": "9ac7bf5dab4a80a045f1229aa2ff2b95", + "x-ms-correlation-request-id": "865c8594-0207-4a09-9c31-5f749884b316", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "0bb56758-bbdd-44d3-86c6-e44ff88e1f51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034158Z:865c8594-0207-4a09-9c31-5f749884b316" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a7a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2545e49ed909c6c21e49d78e54f996d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:41:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5119234-3f86-42b3-ad47-e923bb457fbd", + "x-ms-client-request-id": "2545e49ed909c6c21e49d78e54f996d6", + "x-ms-correlation-request-id": "b474c18b-7918-40c4-83ab-e395a228a7ef", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "331d61c0-8899-4b25-9db5-5c2ebbc4943a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034159Z:b474c18b-7918-40c4-83ab-e395a228a7ef" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a7b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9212f1a3c351f56c6c310e37df6fe763", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b3d69bf9-21fc-4793-9e76-7e0a5f5b3d73", + "x-ms-client-request-id": "9212f1a3c351f56c6c310e37df6fe763", + "x-ms-correlation-request-id": "592c0136-1d77-4fcb-bd83-ebf5af383543", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "46be703e-f0a8-4fb3-a4b1-62c08be0381b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034200Z:592c0136-1d77-4fcb-bd83-ebf5af383543" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a7c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b91c9ff561268437fd017c01d3122b4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5be74c8a-fb1e-4841-9c5b-f171b0ee5815", + "x-ms-client-request-id": "b91c9ff561268437fd017c01d3122b4b", + "x-ms-correlation-request-id": "8c238eb5-e6b6-40c6-b015-77689b0a60cd", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "3874f1e0-7555-4f64-8b7e-c05fb730bf95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034201Z:8c238eb5-e6b6-40c6-b015-77689b0a60cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a7d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1f64c5a98ecdb44784fb9d7cb8ae6af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e6ce6ab-a957-48b2-9672-8e3abbbab653", + "x-ms-client-request-id": "b1f64c5a98ecdb44784fb9d7cb8ae6af", + "x-ms-correlation-request-id": "03c2eaa5-358a-48b2-9183-180102c490fa", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "dc8e0b14-147a-4d3f-93fc-c94a27b1a8eb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034203Z:03c2eaa5-358a-48b2-9183-180102c490fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a7e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b4997461dddd42afb98e954f476b215a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e46fc04-2302-4ce3-9a74-673849a3cfa3", + "x-ms-client-request-id": "b4997461dddd42afb98e954f476b215a", + "x-ms-correlation-request-id": "e7278754-4e11-478e-a32a-5c3edf640344", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "b94092cc-1330-4113-9886-129e7ecbd25f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034204Z:e7278754-4e11-478e-a32a-5c3edf640344" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a7f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92ddc20535785c765b4141d6a860b873", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "32510778-f70b-43b7-8e51-13be1225f1a7", + "x-ms-client-request-id": "92ddc20535785c765b4141d6a860b873", + "x-ms-correlation-request-id": "450af0b1-00d1-43e0-a841-a418e783bcbb", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "50be34f6-3398-437e-bea6-defb0ccbf8d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034205Z:450af0b1-00d1-43e0-a841-a418e783bcbb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a80-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f9fcc1a77787d6d9db4f85e03f4930c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d3fdf95-688e-4f44-a530-ea31a5010846", + "x-ms-client-request-id": "5f9fcc1a77787d6d9db4f85e03f4930c", + "x-ms-correlation-request-id": "5fd642f7-39b2-421c-9c73-7c07b0cb3f98", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "ace3c734-e2d6-4890-8cb0-4b5b86332a95", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034207Z:5fd642f7-39b2-421c-9c73-7c07b0cb3f98" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a81-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08d25e2e54ac2b36fd3c599b9cd99a59", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "25f05dbd-117b-48e3-9bbc-d67a3e6911af", + "x-ms-client-request-id": "08d25e2e54ac2b36fd3c599b9cd99a59", + "x-ms-correlation-request-id": "3c2edd56-30d1-4519-83df-1726b95303b9", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "04bb83e5-1514-4288-b389-8a9a0b6ebbb9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034208Z:3c2edd56-30d1-4519-83df-1726b95303b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a82-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a3521d5c2cc8ee15460f5c33d175866", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8eb8110a-c325-46f8-81d1-5d6664f1433e", + "x-ms-client-request-id": "7a3521d5c2cc8ee15460f5c33d175866", + "x-ms-correlation-request-id": "53608230-f407-49af-b606-6e3151838d8a", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "873c1ab9-2334-4fb7-b18c-e8c15c057ea6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034209Z:53608230-f407-49af-b606-6e3151838d8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a83-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49a734adb08dc6c69673613c1dd2e0c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ebd3581-be09-449e-b420-9d9863869d40", + "x-ms-client-request-id": "49a734adb08dc6c69673613c1dd2e0c3", + "x-ms-correlation-request-id": "0d04d388-ba21-4595-83f9-e03dbe8c55f7", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "cdf92485-4746-487c-9dd1-11e68897b361", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034210Z:0d04d388-ba21-4595-83f9-e03dbe8c55f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a84-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1889f1a19be6c407c44b34c5e72eee6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eb906254-b68a-458f-937f-c88d312db637", + "x-ms-client-request-id": "e1889f1a19be6c407c44b34c5e72eee6", + "x-ms-correlation-request-id": "641c4016-4086-4698-a049-ac9802abaa2e", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "be182614-a36e-4745-9bfd-e3a66492eda2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034212Z:641c4016-4086-4698-a049-ac9802abaa2e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a85-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68eef3e3503125cb5b6fe35860a57082", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d75179e8-7550-49fb-8b44-523a06fa94cb", + "x-ms-client-request-id": "68eef3e3503125cb5b6fe35860a57082", + "x-ms-correlation-request-id": "cabed163-4fc4-4442-9b94-d87d079f5154", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "3a3fd804-7699-4daf-86f8-a884605b1be1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034213Z:cabed163-4fc4-4442-9b94-d87d079f5154" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a86-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ea9317f778f94a7f33bcc49fc796723", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6b4c2d0f-c2c7-42db-923b-fb61554fad4b", + "x-ms-client-request-id": "9ea9317f778f94a7f33bcc49fc796723", + "x-ms-correlation-request-id": "ae4b1a8d-3c1d-4985-9260-f3ff1b30b2e4", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "fcb30a84-393f-4b4a-9f9f-84e4833479d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034214Z:ae4b1a8d-3c1d-4985-9260-f3ff1b30b2e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a87-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a587b8478e3c992d362864f35e80bd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "43802698-9cd8-4648-b894-a002fd7557e5", + "x-ms-client-request-id": "2a587b8478e3c992d362864f35e80bd7", + "x-ms-correlation-request-id": "96b66524-2f5d-4bd5-95a8-fdcf7479527a", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "abf65026-b076-4be4-b622-6247b643e1b9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034216Z:96b66524-2f5d-4bd5-95a8-fdcf7479527a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a88-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2dcd30d34fc96c564b5a75f5848129e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d7863286-24d8-41c4-985c-5d846499dba0", + "x-ms-client-request-id": "2dcd30d34fc96c564b5a75f5848129e2", + "x-ms-correlation-request-id": "6dd59713-decc-45f4-889e-752c788aa7b1", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "010b483a-3e20-4138-8f4f-54c6d2c25642", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034217Z:6dd59713-decc-45f4-889e-752c788aa7b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a89-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e4d3c008454d069e9fdfca2cf1585e0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31db69ab-b9f9-46e1-993e-420b58f7c621", + "x-ms-client-request-id": "e4d3c008454d069e9fdfca2cf1585e0a", + "x-ms-correlation-request-id": "8226f233-4e26-4d5b-a839-e450c7441fc9", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "bdce3be3-b961-41ba-9261-003ddece84d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034218Z:8226f233-4e26-4d5b-a839-e450c7441fc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a8a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb75f52f39ab345924ebdf89039c4551", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d6dde90-fd7d-4d1b-85c1-7cc766f9ee87", + "x-ms-client-request-id": "cb75f52f39ab345924ebdf89039c4551", + "x-ms-correlation-request-id": "766c6be4-78b1-45ae-b8f0-37442a2bfe0c", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "32333cc1-670b-4d5a-b984-0fe797e9c6ae", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034219Z:766c6be4-78b1-45ae-b8f0-37442a2bfe0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a8b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7546a33927148e8992c68eea85297bf3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0226daeb-77a6-4dd7-8d92-e62a6393e1fd", + "x-ms-client-request-id": "7546a33927148e8992c68eea85297bf3", + "x-ms-correlation-request-id": "54c0c01f-0355-4271-aa4d-02243de1a1b7", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "5549ac70-a0e4-45e6-abff-bd550ae4c211", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034221Z:54c0c01f-0355-4271-aa4d-02243de1a1b7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a8c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8fc66afb5d0ccf36669ebf6166140202", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20f01ea6-132d-47b2-9081-d4f3157693d2", + "x-ms-client-request-id": "8fc66afb5d0ccf36669ebf6166140202", + "x-ms-correlation-request-id": "58a2ee7d-6b42-41ab-bdc8-2fc372b55cf7", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "fad86f3a-f827-48cb-9439-7f26915eed27", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034222Z:58a2ee7d-6b42-41ab-bdc8-2fc372b55cf7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a8d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4df37999e81108f66be739e4ab6faffa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c726fb0-e8b8-45fa-86e2-d2d2db04e328", + "x-ms-client-request-id": "4df37999e81108f66be739e4ab6faffa", + "x-ms-correlation-request-id": "412a8188-d779-4159-b2f8-a7fb6c18466b", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "b6c5d49b-ea5f-4b75-bb7f-3bd17713929b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034223Z:412a8188-d779-4159-b2f8-a7fb6c18466b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a8e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "998eeb6fb6d5db456d770e756728277d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4b78016c-e0be-496a-8715-27233300f249", + "x-ms-client-request-id": "998eeb6fb6d5db456d770e756728277d", + "x-ms-correlation-request-id": "1644eba5-09af-495f-81d7-f196ff998a21", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "8321f898-6cf4-486e-9dff-35948a44e5b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034224Z:1644eba5-09af-495f-81d7-f196ff998a21" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a8f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c508bc32e3612e173be2324245123f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5b5c110e-4a92-43b6-a7d0-be28d6dbffcc", + "x-ms-client-request-id": "0c508bc32e3612e173be2324245123f6", + "x-ms-correlation-request-id": "63394c50-55b1-40df-a74c-4a72d1f2e9d5", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "624f2998-0f31-4567-9290-4590162fef82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034226Z:63394c50-55b1-40df-a74c-4a72d1f2e9d5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a90-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7af1c4ef6986e32d3317e099da80a143", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ef4ffe5-8315-4f3e-a2b8-6300c7b228b6", + "x-ms-client-request-id": "7af1c4ef6986e32d3317e099da80a143", + "x-ms-correlation-request-id": "3bd5a2ff-aea7-443e-bd55-7b00e4985d62", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "7bbb804d-bbed-4ecf-8312-e286eab808d7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034227Z:3bd5a2ff-aea7-443e-bd55-7b00e4985d62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a91-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1f20bcc0a31f41c4097b25179220b61b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6776efe4-a107-4144-ab20-b8165bd71bba", + "x-ms-client-request-id": "1f20bcc0a31f41c4097b25179220b61b", + "x-ms-correlation-request-id": "f710b837-058d-449b-91c2-1706c1e75a2c", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "5a854d7a-30e0-4ced-b12e-415e78afb564", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034228Z:f710b837-058d-449b-91c2-1706c1e75a2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a92-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2861854ac365af65e6dd81e4e4838f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60f9a9e9-e7e5-4920-85ba-db28b1c247bf", + "x-ms-client-request-id": "a2861854ac365af65e6dd81e4e4838f2", + "x-ms-correlation-request-id": "693f0f36-4321-4036-88bd-e609cc8532d1", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "fae8b8ea-f49a-4169-8319-b5873a85f2bd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034230Z:693f0f36-4321-4036-88bd-e609cc8532d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a93-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6864e01d03304bd700b0710b43155012", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9161916-ab5a-459b-9fa0-423bcd5fefed", + "x-ms-client-request-id": "6864e01d03304bd700b0710b43155012", + "x-ms-correlation-request-id": "e4b35185-fbdf-409c-95f9-9cf17d7c5149", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "2d8ce48a-912f-4143-8730-01f8abdf7443", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034231Z:e4b35185-fbdf-409c-95f9-9cf17d7c5149" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a94-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c145c461fefa130dc5c6c1b2caa5f3c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2c404e9b-8c88-4b91-b92c-e36a7fb576ac", + "x-ms-client-request-id": "c145c461fefa130dc5c6c1b2caa5f3c1", + "x-ms-correlation-request-id": "4e8d246b-0dc2-4c76-a386-b82bed12ad29", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "ec73138e-f368-4913-939b-b984b372e4a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034232Z:4e8d246b-0dc2-4c76-a386-b82bed12ad29" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a95-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1fa33424ebc50eb403aa1863bea1649", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6c78ff09-8e19-4f9f-8d44-fb1840afe755", + "x-ms-client-request-id": "b1fa33424ebc50eb403aa1863bea1649", + "x-ms-correlation-request-id": "767f0b7e-5a03-43e1-a40f-dc8217281b7c", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "337680eb-ce06-4067-b4c5-3445eab76467", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034233Z:767f0b7e-5a03-43e1-a40f-dc8217281b7c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a96-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89bdc51c76021ef8d350a26a4225805b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "19604257-4071-4579-8d45-a5274c949ed4", + "x-ms-client-request-id": "89bdc51c76021ef8d350a26a4225805b", + "x-ms-correlation-request-id": "6b613833-1ae3-485b-9ad2-8968ab251248", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "e147ad84-a69b-470f-8efa-74a1b3741de0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034235Z:6b613833-1ae3-485b-9ad2-8968ab251248" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a97-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10c8afbc9f1a1256d9f581bf5c86d8da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cdc2a02a-23ad-468e-8b14-c741e850f2fa", + "x-ms-client-request-id": "10c8afbc9f1a1256d9f581bf5c86d8da", + "x-ms-correlation-request-id": "0e549367-b804-4599-9c8a-5139e0563d77", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "87c7da5c-d1c0-4906-9df7-0bef306104b7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034236Z:0e549367-b804-4599-9c8a-5139e0563d77" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a98-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "059678af6ae7cbbe3adcde6bab800d1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c256165-90cc-49fe-8ec1-0380d76b1a58", + "x-ms-client-request-id": "059678af6ae7cbbe3adcde6bab800d1a", + "x-ms-correlation-request-id": "1f2c46ab-620c-4668-94e9-204c4ef48c49", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "42170726-06c9-4d88-893a-ca5e77f176ca", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034237Z:1f2c46ab-620c-4668-94e9-204c4ef48c49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a99-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bc946ba06227c2e6eabb00df438c14c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4ca6326f-a9e0-419d-bc7f-bc64106cbecd", + "x-ms-client-request-id": "8bc946ba06227c2e6eabb00df438c14c", + "x-ms-correlation-request-id": "f1942520-5f41-4269-8fa7-bf2bf8031142", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "be885d63-35cc-4415-9380-756de6d3b51f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034239Z:f1942520-5f41-4269-8fa7-bf2bf8031142" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a9a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cabac7787b8f5273f1fcd53ec0eb6758", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eef0e4b3-85ad-4182-b3f4-ef847e9838c3", + "x-ms-client-request-id": "cabac7787b8f5273f1fcd53ec0eb6758", + "x-ms-correlation-request-id": "c386e521-9838-41b4-a772-c3411648ed35", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "18770c89-2f33-4b66-bc83-40d29d9c3fb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034240Z:c386e521-9838-41b4-a772-c3411648ed35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a9b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "160567e74cbda9b84919963cb9b0d601", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8615328-d789-4298-927b-c156658a77ab", + "x-ms-client-request-id": "160567e74cbda9b84919963cb9b0d601", + "x-ms-correlation-request-id": "0d23134a-98a7-40ae-b49b-72e4ebbf1fed", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "239f3f18-ff96-461c-86a0-edcb01faf772", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034241Z:0d23134a-98a7-40ae-b49b-72e4ebbf1fed" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a9c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e3f3921a42c63e8ad2779a2530efbc83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0001e52-4815-4248-88d7-f652d2c78615", + "x-ms-client-request-id": "e3f3921a42c63e8ad2779a2530efbc83", + "x-ms-correlation-request-id": "1dfa668f-b4e5-485c-9186-42c5f5e24339", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "2f4fe47f-2805-4375-98bc-5b2b11c78880", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034242Z:1dfa668f-b4e5-485c-9186-42c5f5e24339" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a9d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d255843ab332b8f0e118076e5379840", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21bd7bd1-3b58-4e7d-9b41-ecf1130099e6", + "x-ms-client-request-id": "8d255843ab332b8f0e118076e5379840", + "x-ms-correlation-request-id": "955ecb53-785c-4413-be73-f3a5799474b9", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "9da58d8a-500a-449c-8060-504b28bb33ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034244Z:955ecb53-785c-4413-be73-f3a5799474b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a9e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e24d32683f8a491dcc64345b293785a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb3b59f3-0d02-4ba1-b86e-36f2cdcc5cac", + "x-ms-client-request-id": "2e24d32683f8a491dcc64345b293785a", + "x-ms-correlation-request-id": "50d78e61-b280-4072-b525-ebc9493834f3", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "ae93857f-d45d-4223-afaa-0d65f8ce34b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034245Z:50d78e61-b280-4072-b525-ebc9493834f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172a9f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "61f8125c498b6ece02c7d4b5c213599b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f348041-330f-4dd1-82fb-a0643dfbb243", + "x-ms-client-request-id": "61f8125c498b6ece02c7d4b5c213599b", + "x-ms-correlation-request-id": "edc47d88-f935-474f-9e92-add5df395bb2", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "97b7ba0e-b4b9-4d42-94fe-3be514481af1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034246Z:edc47d88-f935-474f-9e92-add5df395bb2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aa0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5cff59de8ecbc08bc680b06c6849797b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6f47dd95-e642-410d-9b7f-2059939e1ddd", + "x-ms-client-request-id": "5cff59de8ecbc08bc680b06c6849797b", + "x-ms-correlation-request-id": "e667d02a-765d-489a-b6c3-ff4fe3e37f52", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "9b7dea96-05f7-4acf-b993-23606f0f2215", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034248Z:e667d02a-765d-489a-b6c3-ff4fe3e37f52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aa1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d21a2698373edcb505b52b30aedce2c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d6fa16cc-4c09-4aed-bed4-1978f1481fb0", + "x-ms-client-request-id": "d21a2698373edcb505b52b30aedce2c9", + "x-ms-correlation-request-id": "1f548970-44fd-4ba4-8113-21ac0371a7c3", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "75dd6573-f024-4c4f-aad6-1f4e5db1ed49", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034249Z:1f548970-44fd-4ba4-8113-21ac0371a7c3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aa2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5866a76d1b94ce8e87379a0a986106b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f80b4d8d-fdb6-45d1-a95f-7fc9c1ebaba1", + "x-ms-client-request-id": "5866a76d1b94ce8e87379a0a986106b8", + "x-ms-correlation-request-id": "c921ce60-5586-475d-8809-e24083525736", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "50443388-3ee2-4a0a-bcc0-494cff837aa8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034250Z:c921ce60-5586-475d-8809-e24083525736" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aa3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9b1c594e87f9a75ca4225715625b12e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99050e62-f5ea-46d1-8773-ab83f89f258d", + "x-ms-client-request-id": "9b1c594e87f9a75ca4225715625b12e9", + "x-ms-correlation-request-id": "660ff5dc-bc36-47fc-a8fd-c3b53ce4d1a2", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "01f0bd08-d42b-428d-80a8-1131a9c14b75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034251Z:660ff5dc-bc36-47fc-a8fd-c3b53ce4d1a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aa4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c0ffe79e20e37ce6974b4a079dab43a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1c94a4f-1620-419f-8604-51906a8a74c6", + "x-ms-client-request-id": "c0ffe79e20e37ce6974b4a079dab43a3", + "x-ms-correlation-request-id": "1980f009-1d2d-4121-8325-14947a3cf8be", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "2cb4af47-b4c0-4cb2-b851-fc042c86a2f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034253Z:1980f009-1d2d-4121-8325-14947a3cf8be" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aa5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54e172af46c0e6cf4bbfb372c4796c2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd97c044-cee5-4efb-8bb2-bda1cca91de3", + "x-ms-client-request-id": "54e172af46c0e6cf4bbfb372c4796c2c", + "x-ms-correlation-request-id": "dbdb3ec8-d490-44f4-9797-4f15ea4b250d", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "273691c9-5766-4e47-acae-7962dd71c297", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034254Z:dbdb3ec8-d490-44f4-9797-4f15ea4b250d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aa6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b16cb02545622dd5739f04ad3c550af9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f21fd1cb-5bda-4174-b66b-ba59429017ad", + "x-ms-client-request-id": "b16cb02545622dd5739f04ad3c550af9", + "x-ms-correlation-request-id": "15d80348-0416-4107-914d-90265730f51f", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "c136db16-e199-43ce-a114-a22062019297", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034255Z:15d80348-0416-4107-914d-90265730f51f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aa7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef65b3debd795729171875236c74b81e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "809f0650-af6b-4945-8dbe-16610275b00f", + "x-ms-client-request-id": "ef65b3debd795729171875236c74b81e", + "x-ms-correlation-request-id": "31cff8ab-9b58-42c6-b033-b823e108f7cd", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "bbd14e4c-0d19-45ab-b9ec-cd671848d918", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034256Z:31cff8ab-9b58-42c6-b033-b823e108f7cd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aa8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ece11edf913e69419db3e1214222aaf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dce71e92-b7bd-40f9-8bb8-6cc99e17f579", + "x-ms-client-request-id": "ece11edf913e69419db3e1214222aaf5", + "x-ms-correlation-request-id": "8782375c-809a-410f-8a86-ba5b8d9d3db8", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "eedcbebd-2a62-4f00-8504-439d9512784d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034258Z:8782375c-809a-410f-8a86-ba5b8d9d3db8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aa9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1193bab57d1368b287149a49d0b1c0ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:42:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39bc17ce-399e-4f65-9ff7-4f1870014c31", + "x-ms-client-request-id": "1193bab57d1368b287149a49d0b1c0ff", + "x-ms-correlation-request-id": "f1042c7b-bfb4-4f53-bb70-bd4aa876a94d", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "176359ce-5c48-41bf-9b2b-f9de01135786", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034259Z:f1042c7b-bfb4-4f53-bb70-bd4aa876a94d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aaa-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1dcee5e71d734cba71fc51c5dc0814f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b3d7274c-b56c-41c3-a66c-33255c82bceb", + "x-ms-client-request-id": "1dcee5e71d734cba71fc51c5dc0814f5", + "x-ms-correlation-request-id": "21e8f711-1f73-4161-9750-2da8f83be87b", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "2a17cff8-9f54-4911-8886-bc4756b53937", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034300Z:21e8f711-1f73-4161-9750-2da8f83be87b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aab-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b26e7f6ea6e0620a6c796529f7f799ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9924f649-7eb9-4c4b-b943-84093163d0bc", + "x-ms-client-request-id": "b26e7f6ea6e0620a6c796529f7f799ec", + "x-ms-correlation-request-id": "4de5edd0-9fa1-477f-8ad2-857506c319d6", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "61da06c3-13c9-4d88-af53-95611330c588", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034302Z:4de5edd0-9fa1-477f-8ad2-857506c319d6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aac-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c39e2f38c539781ff469f172bec8b7e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccba7304-b533-48e7-bfd8-29fbecb2d906", + "x-ms-client-request-id": "5c39e2f38c539781ff469f172bec8b7e", + "x-ms-correlation-request-id": "4b8b860a-29f1-4ea0-b8f5-97ceb4ac86f4", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "20bfb79c-8c9c-48d9-9835-6ba50e917085", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034303Z:4b8b860a-29f1-4ea0-b8f5-97ceb4ac86f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aad-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "50daa5000e42401edb6cb1fab890557a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "49cdfefd-116d-4644-b7b5-b480a856a0d7", + "x-ms-client-request-id": "50daa5000e42401edb6cb1fab890557a", + "x-ms-correlation-request-id": "196c6591-18ea-4962-925f-5b0da9582885", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "0552d07c-0a2e-42df-b670-f19ff780bf5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034304Z:196c6591-18ea-4962-925f-5b0da9582885" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aae-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fad26562b8cee2a1fdd7b29a07f3367f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ad41789a-aa50-4f84-94ce-f553c0b6a12c", + "x-ms-client-request-id": "fad26562b8cee2a1fdd7b29a07f3367f", + "x-ms-correlation-request-id": "e45113e5-327d-4677-85a6-a9d1810755e2", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "3eb09b31-e6e2-40d9-a341-5f8aea9e9694", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034305Z:e45113e5-327d-4677-85a6-a9d1810755e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aaf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5229e6ed481de5a9c4f981e7db87df6f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "505fa3ff-6f32-4112-960f-e019d23991b8", + "x-ms-client-request-id": "5229e6ed481de5a9c4f981e7db87df6f", + "x-ms-correlation-request-id": "e8a212b2-3ab6-43e2-9b86-2e9aa77158e5", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "7384b3d0-0197-4f3b-8078-7ad9eaae6c24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034307Z:e8a212b2-3ab6-43e2-9b86-2e9aa77158e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ab0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5b425f1911a47b003f8536b5b8339e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5151c83d-9403-4d47-ad14-481b29d6757c", + "x-ms-client-request-id": "c5b425f1911a47b003f8536b5b8339e7", + "x-ms-correlation-request-id": "a5a55067-d7da-43c5-99ec-b9657a397135", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "af84a6f1-b1c2-41b2-ac1d-5859a3853b30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034308Z:a5a55067-d7da-43c5-99ec-b9657a397135" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ab1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d10c31350266195dbced35d436ba0676", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "751f1adc-cae6-46d7-b983-eab2f20e3025", + "x-ms-client-request-id": "d10c31350266195dbced35d436ba0676", + "x-ms-correlation-request-id": "edb2f1e1-ecb6-421f-9a2f-ba2a316fc259", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "b44b1d5b-f541-462e-826d-f62736c19e58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034309Z:edb2f1e1-ecb6-421f-9a2f-ba2a316fc259" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ab2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1a943f7713e5c6436e24f24f53d8940", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95f6f75f-b043-47f3-aaac-801550e5d4c4", + "x-ms-client-request-id": "e1a943f7713e5c6436e24f24f53d8940", + "x-ms-correlation-request-id": "26844e6e-c35c-4e96-b518-97bf4cd27923", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "36cf03e4-40c9-4486-b2ba-7088e3a4e575", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034310Z:26844e6e-c35c-4e96-b518-97bf4cd27923" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ab3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aab29ac00d7aee08c89b092d5bdb1149", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d9524583-9cc4-4116-a819-0f256097887a", + "x-ms-client-request-id": "aab29ac00d7aee08c89b092d5bdb1149", + "x-ms-correlation-request-id": "7b95c8c9-4874-4794-9791-48447cfb189e", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "25d656a7-64bf-4713-97a6-4adcca8ca691", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034312Z:7b95c8c9-4874-4794-9791-48447cfb189e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ab4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1873dcf257dac3a8ccb09b84b338247e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5f4005f-e1a0-44c1-a860-5ae84c40e393", + "x-ms-client-request-id": "1873dcf257dac3a8ccb09b84b338247e", + "x-ms-correlation-request-id": "3cec62da-8a6f-451e-af00-82d4af2dbf5b", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "da58cb5c-1c07-4750-a535-46a781c1305f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034313Z:3cec62da-8a6f-451e-af00-82d4af2dbf5b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ab5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c14f5635c07eafb3bbb19a36737005a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0fdca911-ed87-4ffe-978b-efd5acffb14e", + "x-ms-client-request-id": "9c14f5635c07eafb3bbb19a36737005a", + "x-ms-correlation-request-id": "fe5f2a21-9c8d-41b7-a0fc-2c3cbb089c9e", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "a11b6ce7-4348-436b-ab4e-136a00a1589b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034314Z:fe5f2a21-9c8d-41b7-a0fc-2c3cbb089c9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ab6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "183205d071ca6966f1eeddca71833a8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a8d3f73-9f07-4573-ba3d-b334625b79e2", + "x-ms-client-request-id": "183205d071ca6966f1eeddca71833a8f", + "x-ms-correlation-request-id": "8e640bbb-a465-46d7-bb8b-2a4109262ec8", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "e045938c-1f8d-4de0-b064-acfac9cf28f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034316Z:8e640bbb-a465-46d7-bb8b-2a4109262ec8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ab7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "66c98a7674c79641e189dd1e3d055c95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0009f0ce-a0f4-4aba-a7cd-4232444ff39a", + "x-ms-client-request-id": "66c98a7674c79641e189dd1e3d055c95", + "x-ms-correlation-request-id": "c4c6ee37-de61-4b37-b9ee-95dcb1c30136", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "eb02bb6f-1772-4425-992c-552a65cc0cc2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034317Z:c4c6ee37-de61-4b37-b9ee-95dcb1c30136" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ab8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aeb341af0b06f2b48eabab197f3178b7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "525e3c68-b9d0-40f3-987e-e71e5a28ab3f", + "x-ms-client-request-id": "aeb341af0b06f2b48eabab197f3178b7", + "x-ms-correlation-request-id": "8d21098e-e728-4879-bbb5-2db2e893c772", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "16e0360f-ab1d-47a8-b510-9188c620c503", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034318Z:8d21098e-e728-4879-bbb5-2db2e893c772" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ab9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dc2c89809a6e5c93c49c374094472beb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cf5896f-67aa-459e-ac0d-2e21769c26c2", + "x-ms-client-request-id": "dc2c89809a6e5c93c49c374094472beb", + "x-ms-correlation-request-id": "07a3b6e6-ea0a-49a7-8dc0-3cedd497268c", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "020a953e-bffe-4738-8c5a-56aca5b95e5b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034319Z:07a3b6e6-ea0a-49a7-8dc0-3cedd497268c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aba-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "301a47928cd06a89d6d6d71cc92717b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8b0473a9-2b00-4156-b52e-cc242642f381", + "x-ms-client-request-id": "301a47928cd06a89d6d6d71cc92717b0", + "x-ms-correlation-request-id": "3dc0f0bd-ead7-4aa5-be0c-246fc5f763a5", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "c5d5a9ef-5f6f-4c5a-95cd-fe86c77ac812", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034321Z:3dc0f0bd-ead7-4aa5-be0c-246fc5f763a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172abb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b49e25107fd81427ad57e96ad4735d47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "940a0435-c887-4d45-bb0e-53c5178b7ce1", + "x-ms-client-request-id": "b49e25107fd81427ad57e96ad4735d47", + "x-ms-correlation-request-id": "e106272b-c3d3-498f-9885-2277ccccc318", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "b773ef8a-fb74-41ed-8531-ca71ee572b24", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034322Z:e106272b-c3d3-498f-9885-2277ccccc318" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172abc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3787bf7f4816f4e700c10697c377929c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d1d8d1b-ee46-4e81-89d3-5093b03d67df", + "x-ms-client-request-id": "3787bf7f4816f4e700c10697c377929c", + "x-ms-correlation-request-id": "f82a0ce9-e9e0-47bf-8d78-54261a60d35f", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "fd5f7dbd-d1f2-48d5-95b0-78e3b53b4f1e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034323Z:f82a0ce9-e9e0-47bf-8d78-54261a60d35f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172abd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e30868477a9121220058278a21e9562", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "54da9e67-8363-4856-af6f-ae7010ab9cb5", + "x-ms-client-request-id": "6e30868477a9121220058278a21e9562", + "x-ms-correlation-request-id": "77b93f78-a46f-4727-b036-74c4e7909705", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "aee1baf0-863a-4821-9ae4-5f02a18f78ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034325Z:77b93f78-a46f-4727-b036-74c4e7909705" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172abe-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "099c9079dfa0c7993ea9b31678905136", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d17ace18-6ed4-4b22-933c-28230b7218d7", + "x-ms-client-request-id": "099c9079dfa0c7993ea9b31678905136", + "x-ms-correlation-request-id": "f2e6cd14-b887-4bbe-b7bc-b31333a1c029", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "93bf6c35-1c1a-49ab-adc1-e4e8ee16aacf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034326Z:f2e6cd14-b887-4bbe-b7bc-b31333a1c029" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172abf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4de54dc4ef42089dac741610c66e52e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "62818987-b737-45ac-81ca-dcf5ab5e6b28", + "x-ms-client-request-id": "4de54dc4ef42089dac741610c66e52e1", + "x-ms-correlation-request-id": "37bdc511-079b-4476-98ef-ed224609a1fb", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "7d944102-db89-4688-9173-b1c4146efc5a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034327Z:37bdc511-079b-4476-98ef-ed224609a1fb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ac0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "321ea32b89daa5fced692f00c3fc9a90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eec5141c-e6c0-4b12-95f6-23913013b2d6", + "x-ms-client-request-id": "321ea32b89daa5fced692f00c3fc9a90", + "x-ms-correlation-request-id": "f54d8438-0c49-490a-8055-cd85980a2e6e", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "84d45eea-6ae5-4f6d-b4d3-c7f62bcac1f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034328Z:f54d8438-0c49-490a-8055-cd85980a2e6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ac1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "55b34bb34839891ff3945c2cc98901d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "94def899-7d65-4c0a-b758-9af5ee8580cf", + "x-ms-client-request-id": "55b34bb34839891ff3945c2cc98901d0", + "x-ms-correlation-request-id": "720c59dd-f3c4-4d1a-a7d3-db9a04efa5c1", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "5febaab7-6436-466e-87f5-fd6e03858e44", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034330Z:720c59dd-f3c4-4d1a-a7d3-db9a04efa5c1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ac2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d5ead1571f713b5b504060d9bf9d44b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66c1aea3-fe1b-44cb-a9a0-987e792e474b", + "x-ms-client-request-id": "d5ead1571f713b5b504060d9bf9d44b0", + "x-ms-correlation-request-id": "f5e8e363-c87e-4ba6-89bd-e04801b11da6", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "28190735-e86a-461f-9edd-ed36d6061017", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034331Z:f5e8e363-c87e-4ba6-89bd-e04801b11da6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ac3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7a5c85dafcbae3a883943f462ccfdb63", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2e6d7286-f48c-4768-a88d-94322318ffa6", + "x-ms-client-request-id": "7a5c85dafcbae3a883943f462ccfdb63", + "x-ms-correlation-request-id": "3e5de1c6-bf71-4e0b-9b89-138d19b1dfd9", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "2588cfec-d998-472a-8f2e-8b74480ccaf9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034332Z:3e5de1c6-bf71-4e0b-9b89-138d19b1dfd9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ac4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1a95f67c411941ef07804f8e746ca56", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4a9958f5-3e75-4984-95cd-eba5610acac3", + "x-ms-client-request-id": "f1a95f67c411941ef07804f8e746ca56", + "x-ms-correlation-request-id": "ac76ae3d-2f2b-4921-93b4-a10bf639273c", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "fde028ec-e4c2-442e-ab3c-e1f528aecb96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034334Z:ac76ae3d-2f2b-4921-93b4-a10bf639273c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ac5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4351ac4f872c5a15290751dddf150e81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80571be8-eeb4-407f-b8eb-94ba39ea4177", + "x-ms-client-request-id": "4351ac4f872c5a15290751dddf150e81", + "x-ms-correlation-request-id": "303b7bb5-4c28-4030-bb6d-6f972428f9b5", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "91ff6c4e-91c6-4a20-a2d7-40872ce46fe6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034335Z:303b7bb5-4c28-4030-bb6d-6f972428f9b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ac6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f72fc6453f3159f67c78a42f8b0fc3d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c0131e4-bd02-4608-8d2c-ef8192763561", + "x-ms-client-request-id": "5f72fc6453f3159f67c78a42f8b0fc3d", + "x-ms-correlation-request-id": "20dbc967-199f-44af-970f-b45b94f1f514", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "34944c77-b991-41a3-9657-50d82a5785e5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034336Z:20dbc967-199f-44af-970f-b45b94f1f514" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ac7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80f7e9ca987ee0374a4ec8097341b4da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a6e32a0f-3ef2-4cfc-859c-327db14ae1d1", + "x-ms-client-request-id": "80f7e9ca987ee0374a4ec8097341b4da", + "x-ms-correlation-request-id": "75bfda14-bbe0-4b90-b785-8f2c7e0f17bf", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "3d5df5ce-9ac6-4b58-baf6-bd1af3a43abb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034337Z:75bfda14-bbe0-4b90-b785-8f2c7e0f17bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ac8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea9383696ad3fb620c3cdc64fdd26178", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d1f800e-7a03-4875-b545-ba10f2944de6", + "x-ms-client-request-id": "ea9383696ad3fb620c3cdc64fdd26178", + "x-ms-correlation-request-id": "2ba95d1a-28d6-417b-a356-d4e85e8fd2d0", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "e5225d8c-1f3c-4c3c-932d-03a89f67247c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034339Z:2ba95d1a-28d6-417b-a356-d4e85e8fd2d0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ac9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f613130a8e1ecc02c59215a48a95a126", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "391f1ded-b94e-4bba-94d2-0cfdebd34bcf", + "x-ms-client-request-id": "f613130a8e1ecc02c59215a48a95a126", + "x-ms-correlation-request-id": "852deb4d-d2f9-4873-ac2c-a1dbace2d869", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "584ab299-1e33-4041-882a-9db6f92ad93f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034340Z:852deb4d-d2f9-4873-ac2c-a1dbace2d869" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aca-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74d8af12111c5f6987fb7341bcd2e277", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "99b715da-bf10-4436-97ba-b2ca76034cf8", + "x-ms-client-request-id": "74d8af12111c5f6987fb7341bcd2e277", + "x-ms-correlation-request-id": "c0f2d14a-b424-496d-b361-0a988e75f5ba", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "dfb98e89-dd88-4a50-a271-4c8e09156f51", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034341Z:c0f2d14a-b424-496d-b361-0a988e75f5ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172acb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60ff4fedbe2ddabc80c6244155bd7176", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fdb709bc-0e29-4aa7-993e-ecb39c0599ea", + "x-ms-client-request-id": "60ff4fedbe2ddabc80c6244155bd7176", + "x-ms-correlation-request-id": "ed209998-cef3-41cd-8730-fb31825f57e6", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "eb57c0f0-6233-4f8d-81ad-cc2669f76164", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034342Z:ed209998-cef3-41cd-8730-fb31825f57e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172acc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d52b59aedf9f85ba9b36e221ac110f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b77b1cf3-ab91-42be-b5d2-c0d8048af16b", + "x-ms-client-request-id": "4d52b59aedf9f85ba9b36e221ac110f3", + "x-ms-correlation-request-id": "51d8aff4-e77a-4dbf-ad15-d93cc112d526", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "67354f4b-da9f-4039-9fd9-80038718a19f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034344Z:51d8aff4-e77a-4dbf-ad15-d93cc112d526" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172acd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3bb79daf419654f8f2fef456ed280ac9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3fcb0e7-db15-4d4b-887b-e5a2a2258b19", + "x-ms-client-request-id": "3bb79daf419654f8f2fef456ed280ac9", + "x-ms-correlation-request-id": "09ad701c-d50e-46e0-bfa6-fae60558b299", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "9e4f32bb-5889-415a-a0b4-57074c26e3f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034345Z:09ad701c-d50e-46e0-bfa6-fae60558b299" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ace-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06a7fc8a9480ff7df306b67a4f9abfbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4e7f6b7-6ee9-4ff3-b69a-4d4906ac2627", + "x-ms-client-request-id": "06a7fc8a9480ff7df306b67a4f9abfbf", + "x-ms-correlation-request-id": "5d0eec4c-8c5a-464b-a5c9-a246023c6e5c", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "7010b66c-f6a9-4ca1-b6b9-e1af3e053db7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034346Z:5d0eec4c-8c5a-464b-a5c9-a246023c6e5c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172acf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b89231b5360558e0bdfd5bfbf8050b81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7af54d5d-797b-4236-af78-141d660ffac9", + "x-ms-client-request-id": "b89231b5360558e0bdfd5bfbf8050b81", + "x-ms-correlation-request-id": "04685c48-1d53-4d9a-954c-f4b058b2ee5a", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "d69b1fe0-7fd6-4825-bc98-dbc185494a66", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034348Z:04685c48-1d53-4d9a-954c-f4b058b2ee5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ad0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e98a5a90a191a731fb7478f8b7e0458", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9e82dae5-6414-45ef-a240-0528900b8f7b", + "x-ms-client-request-id": "1e98a5a90a191a731fb7478f8b7e0458", + "x-ms-correlation-request-id": "0b1e8048-af5a-4508-a1b2-5951715c39f7", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "17d778f8-c490-4fd0-9851-dccf86a1f3f5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034349Z:0b1e8048-af5a-4508-a1b2-5951715c39f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ad1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bba0343e529554c41c4e4982398207ed", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c1070ef5-e33c-47ce-aa37-eae1063c1f30", + "x-ms-client-request-id": "bba0343e529554c41c4e4982398207ed", + "x-ms-correlation-request-id": "40d9e99b-af61-45aa-83aa-26e4ba148bbd", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "0736245f-413e-433b-9660-1d4b282b8660", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034350Z:40d9e99b-af61-45aa-83aa-26e4ba148bbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ad2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aad135fba101aba5be78984dee50cd3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "114f7cbf-9146-46ab-809c-14953cdbad97", + "x-ms-client-request-id": "aad135fba101aba5be78984dee50cd3e", + "x-ms-correlation-request-id": "e92b03f7-4f98-4103-9c6a-db95ede81218", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "97ee5d4d-6bf6-41a8-8828-3269d716cadf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034351Z:e92b03f7-4f98-4103-9c6a-db95ede81218" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ad3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3bd02f94f6556ebe14402cbc0f0e09d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "67a51d0e-1f3f-4ee7-afac-8e1aa525b5bc", + "x-ms-client-request-id": "c3bd02f94f6556ebe14402cbc0f0e09d", + "x-ms-correlation-request-id": "0304f81e-f2a8-42b6-8256-e1472ecf547f", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "b4f207e5-2300-437f-ba3a-8ebf5c3bdc54", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034353Z:0304f81e-f2a8-42b6-8256-e1472ecf547f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ad4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "569459b059ac9c568ff4fd1db97665cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "42f01d2e-f349-45fa-a642-b27a1bf795d6", + "x-ms-client-request-id": "569459b059ac9c568ff4fd1db97665cb", + "x-ms-correlation-request-id": "6a76f73a-e3b7-4673-ac3a-0a118b002ae4", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "e0b23447-0b72-4a61-8b0f-195eb082ad79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034354Z:6a76f73a-e3b7-4673-ac3a-0a118b002ae4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ad5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "37880a8143c4ab88497ac9bd9fdaeacd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a81827f-d0ff-49bb-b920-184faeea0f80", + "x-ms-client-request-id": "37880a8143c4ab88497ac9bd9fdaeacd", + "x-ms-correlation-request-id": "899013ba-c1f8-4586-b20a-66c4f11ae604", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "f5448161-909f-4dbc-973b-34b7b343de94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034355Z:899013ba-c1f8-4586-b20a-66c4f11ae604" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ad6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "959dfb9776bc9f92ab21347052ce9d6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "59ad3dea-2709-48ff-a2dd-5d1c641815be", + "x-ms-client-request-id": "959dfb9776bc9f92ab21347052ce9d6a", + "x-ms-correlation-request-id": "5452237b-bb63-467e-b5a7-f0625005e1fe", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "2f930e97-5201-4668-af06-204d5b091909", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034357Z:5452237b-bb63-467e-b5a7-f0625005e1fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ad7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b64a37dea9676dd9d1e90c329099fcb5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dae7392e-16b7-4800-b8ea-9b399cc04506", + "x-ms-client-request-id": "b64a37dea9676dd9d1e90c329099fcb5", + "x-ms-correlation-request-id": "d45274d7-5ffe-4b71-a187-3d84621fc8e9", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "1597f761-0f9f-4517-a014-a0a3a4fef2a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034358Z:d45274d7-5ffe-4b71-a187-3d84621fc8e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ad8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bd85300acfd90a0e78e98ca20e17597b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:43:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16ba3cac-64b0-47c4-9357-2f3e85aea458", + "x-ms-client-request-id": "bd85300acfd90a0e78e98ca20e17597b", + "x-ms-correlation-request-id": "12aef387-21b2-48f1-bc49-8eb5b0d6c530", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "cfc3db80-b362-4e25-975c-8dc46c6b0066", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034359Z:12aef387-21b2-48f1-bc49-8eb5b0d6c530" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ad9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68de5edd3490ee65222fc4d36a5f0e12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4c1abe7f-98a6-4e01-b053-d36f59184d49", + "x-ms-client-request-id": "68de5edd3490ee65222fc4d36a5f0e12", + "x-ms-correlation-request-id": "66906b50-f406-4f81-8671-fb15a64d4404", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "c0d8bd21-16af-40c3-be31-d66606a9a080", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034401Z:66906b50-f406-4f81-8671-fb15a64d4404" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ada-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "21667f25df480e91283f3d7e1c365fb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2892d700-d392-4e0e-9df8-be92baafe1c7", + "x-ms-client-request-id": "21667f25df480e91283f3d7e1c365fb9", + "x-ms-correlation-request-id": "3a165ba7-9775-4d4b-9858-37ec6669d44d", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "2f84e7eb-9b51-4160-83a5-6b8213ce44a0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034402Z:3a165ba7-9775-4d4b-9858-37ec6669d44d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172adb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3155919093bad524ca979ba90b3ba018", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3c9ad0d7-59d6-4933-9798-e5d408769961", + "x-ms-client-request-id": "3155919093bad524ca979ba90b3ba018", + "x-ms-correlation-request-id": "bb53bca2-dc1b-48da-b846-763e4308063f", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "2aeccbf6-deb8-4d72-a91c-34fa5b8e1078", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034403Z:bb53bca2-dc1b-48da-b846-763e4308063f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172adc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e7d7ada37b0fd32cdd04050f6e6d1ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d4948937-04dc-43c6-a3f7-cc789bda6d58", + "x-ms-client-request-id": "8e7d7ada37b0fd32cdd04050f6e6d1ec", + "x-ms-correlation-request-id": "de9ae6c6-972f-4525-8ab4-8095c668aae3", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "cc94d68f-c522-4ca7-8e6f-c61a3c6793ee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034404Z:de9ae6c6-972f-4525-8ab4-8095c668aae3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172add-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8420ad0dd0a91575a9156b044e703ec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0821c61-7ec4-467f-9021-8d0754437ac5", + "x-ms-client-request-id": "d8420ad0dd0a91575a9156b044e703ec", + "x-ms-correlation-request-id": "4d27a5da-1f83-444d-8bd9-68aeaefbb6d9", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "2b9769e7-4b4f-4c34-822b-2e7643d4f39a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034406Z:4d27a5da-1f83-444d-8bd9-68aeaefbb6d9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ade-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a2a3259fd0b859085f5764ea53d4dfe4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d3ad37fb-d314-4ee0-9760-492ae5d11a3d", + "x-ms-client-request-id": "a2a3259fd0b859085f5764ea53d4dfe4", + "x-ms-correlation-request-id": "276f3a0e-195d-49a6-bd88-aa6f31b31b5a", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "f479ccd7-eed9-4d9e-b051-53c0fcf0ef4d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034407Z:276f3a0e-195d-49a6-bd88-aa6f31b31b5a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172adf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01d9aec5c7f8fd0d22ec331fe081b8e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "18611a04-f5e8-4e78-ba66-39d7dbad588d", + "x-ms-client-request-id": "01d9aec5c7f8fd0d22ec331fe081b8e5", + "x-ms-correlation-request-id": "4d78542d-1146-495d-aa17-c4e53d5fa2cc", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "8fbdb523-837d-4bcd-bb3a-c3661d781956", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034408Z:4d78542d-1146-495d-aa17-c4e53d5fa2cc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ae0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d1b053cd2f42ff3301e979b3786d3d86", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b5b7cc9b-a35c-4252-9bbd-87f2e3953b7e", + "x-ms-client-request-id": "d1b053cd2f42ff3301e979b3786d3d86", + "x-ms-correlation-request-id": "101f12df-6a34-4196-9bd5-dbeb844327e6", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "7521bdbf-a82e-4e63-8356-8e4dca087aa7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034410Z:101f12df-6a34-4196-9bd5-dbeb844327e6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ae1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95eb72b1020ed7f317a680cc9ce978dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e76e930c-d3d8-46d5-bb54-a60e36104320", + "x-ms-client-request-id": "95eb72b1020ed7f317a680cc9ce978dd", + "x-ms-correlation-request-id": "001b6ce0-dad1-4475-b6d4-c9c7d9027093", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "d0929902-0afe-4c15-ac9f-c2a467ce32d8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034411Z:001b6ce0-dad1-4475-b6d4-c9c7d9027093" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ae2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "001d7f9f0e2396a17bd9ff0f4e5a84b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8faf6656-8baf-457e-8c9c-a80436c256fe", + "x-ms-client-request-id": "001d7f9f0e2396a17bd9ff0f4e5a84b5", + "x-ms-correlation-request-id": "25ad5b63-4d62-49d7-b9f9-baad2853d7ec", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "c26adcb2-565c-49c6-b505-18190b5f7e03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034412Z:25ad5b63-4d62-49d7-b9f9-baad2853d7ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ae3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6d6dadaf2396cad65fd8b99cae676218", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2eb20510-dc81-450f-bd32-518870cca5b0", + "x-ms-client-request-id": "6d6dadaf2396cad65fd8b99cae676218", + "x-ms-correlation-request-id": "fe128742-5800-4f52-892a-5f55ad4eaca3", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "20ad6af3-00d0-454d-b7fe-ab9e769c9779", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034413Z:fe128742-5800-4f52-892a-5f55ad4eaca3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ae4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f9139b713d50a362d1541a3502e488bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "734523ae-e232-4439-9d76-bbe1a23efa74", + "x-ms-client-request-id": "f9139b713d50a362d1541a3502e488bd", + "x-ms-correlation-request-id": "b13cf2a7-d958-4e38-81d8-4527da4c4df3", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "18940c36-aa9b-4d06-84b3-aa69842652fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034415Z:b13cf2a7-d958-4e38-81d8-4527da4c4df3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ae5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef1dcb210b7b7c46a852a04b5404e714", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "594da1a0-b761-4153-8334-5f4c5a14add1", + "x-ms-client-request-id": "ef1dcb210b7b7c46a852a04b5404e714", + "x-ms-correlation-request-id": "505f7426-2c53-48e8-8a96-b16912da4128", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "2e7536f0-50ef-43d3-85ae-062b0b803a1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034416Z:505f7426-2c53-48e8-8a96-b16912da4128" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ae6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b29ee7768b4672644bc99b4108a1c87a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb2e43a0-e25d-48e9-bfdc-7de1ba0a8b4a", + "x-ms-client-request-id": "b29ee7768b4672644bc99b4108a1c87a", + "x-ms-correlation-request-id": "29a65052-2077-49d4-baa9-97ade6e5fd2b", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "5faf27b8-e43e-4adb-9c53-f3629f113c70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034417Z:29a65052-2077-49d4-baa9-97ade6e5fd2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ae7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e37afb507349659c559750fe9c174fcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3aeedf50-4ee0-4142-a90d-75fc4da93758", + "x-ms-client-request-id": "e37afb507349659c559750fe9c174fcc", + "x-ms-correlation-request-id": "cfaeba10-8ade-40be-83e5-deec6aa9e2b8", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "30551be2-2b98-43c2-9ddf-6359ab840ee6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034419Z:cfaeba10-8ade-40be-83e5-deec6aa9e2b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ae8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bbe056dd646967666aba3b26f057306", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dedbf488-6355-437b-b192-68da9decca28", + "x-ms-client-request-id": "1bbe056dd646967666aba3b26f057306", + "x-ms-correlation-request-id": "2d33c6c8-2063-4e42-8f86-69cc0d940b40", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "992ae159-6618-46ac-9fad-a29eabf12937", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034420Z:2d33c6c8-2063-4e42-8f86-69cc0d940b40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ae9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58fa2689038a02ca4a385daf3a66d534", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb416d50-ea2c-46c0-beed-56ef3c0424f5", + "x-ms-client-request-id": "58fa2689038a02ca4a385daf3a66d534", + "x-ms-correlation-request-id": "3e29ee41-3d59-4762-9221-4931e186d54a", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "16e695f7-457a-4e0c-a34d-07bdd8fa4a94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034421Z:3e29ee41-3d59-4762-9221-4931e186d54a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aea-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03d3ce7aace37a3385e37d9ecfeaf54f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9eca718-c74f-4b5c-bb9f-7aa046026b11", + "x-ms-client-request-id": "03d3ce7aace37a3385e37d9ecfeaf54f", + "x-ms-correlation-request-id": "b1144d89-9d09-4bf1-a880-e565cc11ba59", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "f5385fc2-b1f1-4610-84fd-c11bfe3e1dea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034422Z:b1144d89-9d09-4bf1-a880-e565cc11ba59" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aeb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "75744924f61c69423bbbd10e78c75bff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ebfb22fb-3007-46f8-aded-6d5578cb8d3b", + "x-ms-client-request-id": "75744924f61c69423bbbd10e78c75bff", + "x-ms-correlation-request-id": "90fa66aa-4ed9-447e-8561-b836769aaf20", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "dd713e4b-18db-4b1e-8f4e-7620cede6e16", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034424Z:90fa66aa-4ed9-447e-8561-b836769aaf20" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aec-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0376fd57031dd23f280d3a7862b3360", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b51fcfcf-15db-46d7-a183-ce94a7252293", + "x-ms-client-request-id": "a0376fd57031dd23f280d3a7862b3360", + "x-ms-correlation-request-id": "b44b6c60-f085-4ab0-8963-124ab1bef32a", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "c21ac831-101d-4dbf-9a23-5903429a6ff6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034425Z:b44b6c60-f085-4ab0-8963-124ab1bef32a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aed-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f18a0d425ff283178c69c727db2501bd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98123c28-6b3d-4894-9476-8e8c59205f64", + "x-ms-client-request-id": "f18a0d425ff283178c69c727db2501bd", + "x-ms-correlation-request-id": "14d0900b-0c99-4a8f-bf03-e6a2b59d6662", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "6aae966a-176e-4b62-aec1-0845e43c73ff", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034426Z:14d0900b-0c99-4a8f-bf03-e6a2b59d6662" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aee-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fc97d8754b2b41e2597839b229be30f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5924726b-d63b-4d9c-8da2-2a5e7538059b", + "x-ms-client-request-id": "5fc97d8754b2b41e2597839b229be30f", + "x-ms-correlation-request-id": "5f2021c3-b849-4723-976b-ddbcf417e87a", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "c604f623-54b2-4e88-a840-12b16b354d06", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034427Z:5f2021c3-b849-4723-976b-ddbcf417e87a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aef-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6acb70886a3c750d58b314c7a8fc01cd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7aee8f41-df58-4854-aca2-3864bb439282", + "x-ms-client-request-id": "6acb70886a3c750d58b314c7a8fc01cd", + "x-ms-correlation-request-id": "ec908d9d-c1e6-40a3-b574-185967ebc4f6", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "c0f05a7b-fadc-4b55-9427-c7e758fa7365", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034429Z:ec908d9d-c1e6-40a3-b574-185967ebc4f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172af0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "081f157fd362edadefd6cb5bdc7c61f1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ec9bc23-ffb9-4a42-8b24-c53c3bc17df5", + "x-ms-client-request-id": "081f157fd362edadefd6cb5bdc7c61f1", + "x-ms-correlation-request-id": "a5d02f33-b7b9-4b9f-9697-070a05259c4a", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "eea50e3a-ec0a-4fd9-a4cc-e4bc093142ec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034430Z:a5d02f33-b7b9-4b9f-9697-070a05259c4a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172af1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a9eb78697591c80705407ff40570b29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bd2e7805-d00f-43f1-9aa1-72ed2dc23c76", + "x-ms-client-request-id": "6a9eb78697591c80705407ff40570b29", + "x-ms-correlation-request-id": "5fb12f5e-ed42-477c-b252-90d0494397da", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "0fdd20ed-6b23-409a-9e54-230a16dba3e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034431Z:5fb12f5e-ed42-477c-b252-90d0494397da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172af2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0c1cb695db7bb5adc3de7b669fb298dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5ccc07cb-bf12-4f15-8e52-9b1e517dfac2", + "x-ms-client-request-id": "0c1cb695db7bb5adc3de7b669fb298dc", + "x-ms-correlation-request-id": "a863cc72-6cc1-4ced-b0ca-1bc38d89ace5", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "b71f035c-7b2e-459e-ae4f-e3438749b6b0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034433Z:a863cc72-6cc1-4ced-b0ca-1bc38d89ace5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172af3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1412252965de8739502980ecbaeac98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7af8a813-36d1-4722-a025-476fc5f99682", + "x-ms-client-request-id": "f1412252965de8739502980ecbaeac98", + "x-ms-correlation-request-id": "cc0b4566-46c1-46bf-852c-6626971f437d", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "07e4ac48-eec7-4301-b395-268a7d30ed53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034434Z:cc0b4566-46c1-46bf-852c-6626971f437d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172af4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "25c5a1cb545faa750ae9a77a1b1a7dbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5a2a5853-8ffd-4531-980f-5ff63b4fa521", + "x-ms-client-request-id": "25c5a1cb545faa750ae9a77a1b1a7dbe", + "x-ms-correlation-request-id": "65fa42d2-2972-4da3-ac10-9f66d2b0c886", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "cf7b0b02-235a-480e-b1f9-77fdfe970b94", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034435Z:65fa42d2-2972-4da3-ac10-9f66d2b0c886" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172af5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1eac2bbb1a15fecc42347779429fe915", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "493401bd-5d5e-4f36-b177-d232ac08af76", + "x-ms-client-request-id": "1eac2bbb1a15fecc42347779429fe915", + "x-ms-correlation-request-id": "83415dbc-e549-4561-af5f-5d4057bee5e5", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "23afaec9-d38f-4f58-b5ee-e221e8667640", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034436Z:83415dbc-e549-4561-af5f-5d4057bee5e5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172af6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe9ae33172ecfe7cac96e673eff8cc7b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85dc910f-ccc0-4991-9cd0-cc0ac56518ac", + "x-ms-client-request-id": "fe9ae33172ecfe7cac96e673eff8cc7b", + "x-ms-correlation-request-id": "980ce4f7-257d-46be-aae5-e8b6bb4082b2", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "185a3d84-2903-4eec-bb2c-f552759fe6cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034438Z:980ce4f7-257d-46be-aae5-e8b6bb4082b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172af7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a052da858e01b182d5c7e32bdcfc686a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b4320c47-c5e0-49a7-8897-efc1a291b85c", + "x-ms-client-request-id": "a052da858e01b182d5c7e32bdcfc686a", + "x-ms-correlation-request-id": "ce84f4d8-1453-40c8-8ae9-1a32444e5ce6", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "ed0d3ecb-899a-47a3-bb4e-6daa754b0f00", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034439Z:ce84f4d8-1453-40c8-8ae9-1a32444e5ce6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172af8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "384991007f7f48d1aead727f33580e4a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f999104-0722-4819-9dac-398e0962c725", + "x-ms-client-request-id": "384991007f7f48d1aead727f33580e4a", + "x-ms-correlation-request-id": "c273df4c-2ed6-4023-9b85-84e89a24f45f", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "551dcc33-3a1f-4de9-a91c-d5dedc1cf322", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034440Z:c273df4c-2ed6-4023-9b85-84e89a24f45f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172af9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "68f4fc67494ca31360e928248f5122b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a2fd6d29-a03b-4bc2-bc2c-1c9d75fd7ffd", + "x-ms-client-request-id": "68f4fc67494ca31360e928248f5122b0", + "x-ms-correlation-request-id": "1e5e3513-17bf-4922-a3bb-4d3c9fb21277", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "5166c048-795d-4033-b9e7-06328ec9b5f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034442Z:1e5e3513-17bf-4922-a3bb-4d3c9fb21277" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172afa-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5e737c2e94af05fb080af1541b027d7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4801e9de-c774-4700-8de2-32015856bc6b", + "x-ms-client-request-id": "5e737c2e94af05fb080af1541b027d7c", + "x-ms-correlation-request-id": "eb076492-ce33-4ffc-a6eb-d53e30320d0f", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "678168b7-3915-4533-90d5-5e232af73f0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034443Z:eb076492-ce33-4ffc-a6eb-d53e30320d0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172afb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dfc399b9ff07b71d7ea5d79556adb85c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "666d0221-3f87-4f97-9f9b-c94f3c42dbb6", + "x-ms-client-request-id": "dfc399b9ff07b71d7ea5d79556adb85c", + "x-ms-correlation-request-id": "cf9156ac-0405-47c4-aeb4-3b13dc9ed916", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "148227ce-c96d-44d0-9ae2-777c6a2ec6c9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034445Z:cf9156ac-0405-47c4-aeb4-3b13dc9ed916" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172afc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b651c28bb0e4d39a00ee604257bf875e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e22cd701-845b-4ad5-8e5b-9bfa5d8ededa", + "x-ms-client-request-id": "b651c28bb0e4d39a00ee604257bf875e", + "x-ms-correlation-request-id": "0033a4c3-2a10-4fe9-b4e8-cb350296c628", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "34bc7646-f1f2-46ce-80da-eb3fb54d33f8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034446Z:0033a4c3-2a10-4fe9-b4e8-cb350296c628" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172afd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f66bac6c428e2ea85ebcdf0abc66af5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58870a89-0053-4802-a076-9be5bf20eac4", + "x-ms-client-request-id": "f66bac6c428e2ea85ebcdf0abc66af5b", + "x-ms-correlation-request-id": "3efdc483-c2d6-4329-a0d6-ae64432b14e4", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "2df07e0b-9fda-4008-a802-ba6c4f755e03", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034447Z:3efdc483-c2d6-4329-a0d6-ae64432b14e4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172afe-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "59c89552c6b10897feefde199fdb5fbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4bf5ea38-a17d-4631-be34-cf297e21a11f", + "x-ms-client-request-id": "59c89552c6b10897feefde199fdb5fbf", + "x-ms-correlation-request-id": "e444545f-5032-4873-b429-357e0d2d8060", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "86e255f0-8383-4a08-8b07-f29cf64dbc9c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034449Z:e444545f-5032-4873-b429-357e0d2d8060" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172aff-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a928791dc14149ce19225728d090179a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2af68a8-132b-4348-aa60-128d53b4a0c9", + "x-ms-client-request-id": "a928791dc14149ce19225728d090179a", + "x-ms-correlation-request-id": "d35eaf50-d89a-43b4-82f4-ec51027467a0", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "e3035182-a264-47be-b5d4-c2736dda2138", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034450Z:d35eaf50-d89a-43b4-82f4-ec51027467a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b00-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c2ef053e2df6a5ac1462f79f638f8f83", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e97c822c-ec71-4ed9-9219-93d76ea41838", + "x-ms-client-request-id": "c2ef053e2df6a5ac1462f79f638f8f83", + "x-ms-correlation-request-id": "6613dbba-cb21-4e69-8d20-30582c8f61ae", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "280fad8f-0916-4a1c-8a71-d5baded63de8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034451Z:6613dbba-cb21-4e69-8d20-30582c8f61ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b01-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "43ec205c053d9019c67f408e6e6f386e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e038232-b49c-40cb-a0cb-f598f6de07d7", + "x-ms-client-request-id": "43ec205c053d9019c67f408e6e6f386e", + "x-ms-correlation-request-id": "180be1fc-b56f-4c53-9846-d6df6a45fb6e", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "085c6c99-9d31-4741-8435-fdb073241768", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034452Z:180be1fc-b56f-4c53-9846-d6df6a45fb6e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b02-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ada44d79debefc8cc8395dec92fe58a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cfcd8a97-eacd-4762-9d57-e7f523f8a21d", + "x-ms-client-request-id": "9ada44d79debefc8cc8395dec92fe58a", + "x-ms-correlation-request-id": "dde14667-e676-488a-8f37-9b02e2bb9bd5", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "7829e404-5e9b-402c-b093-a6f4dd28a927", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034454Z:dde14667-e676-488a-8f37-9b02e2bb9bd5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b03-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0cbd492d4a3395ceb5ffb77ed1d36a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "53499e21-34b2-4379-9c3a-7fa670d72306", + "x-ms-client-request-id": "b0cbd492d4a3395ceb5ffb77ed1d36a4", + "x-ms-correlation-request-id": "d810e1c8-a808-4da1-9c14-2ab2f7be7ecd", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "7bd7266d-da8d-4d09-a1da-b5ea54223d53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034455Z:d810e1c8-a808-4da1-9c14-2ab2f7be7ecd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b04-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1ec7892af5b4be9757fc76b9703ac697", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1a9f5f57-a3d3-4de7-bc18-1a3532086b4b", + "x-ms-client-request-id": "1ec7892af5b4be9757fc76b9703ac697", + "x-ms-correlation-request-id": "4a121453-d8da-40ec-8271-11fdcb8beb65", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "981783c6-7d7f-44de-91a2-105cd39316bc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034456Z:4a121453-d8da-40ec-8271-11fdcb8beb65" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b05-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9afcb59988a403cae7a1ae8ba25102ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc879bf8-3e9c-4578-8c44-ce19595f9d08", + "x-ms-client-request-id": "9afcb59988a403cae7a1ae8ba25102ae", + "x-ms-correlation-request-id": "a028b9c5-b374-45ef-9c0a-a66c1e5b47ce", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "248864e1-c150-473d-9b76-5ce8397ac8da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034458Z:a028b9c5-b374-45ef-9c0a-a66c1e5b47ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b06-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "40b3f04dc6679dd63c0c58a65da2c8b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:44:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fc4906c-1a89-423c-ba68-5beb58f6d384", + "x-ms-client-request-id": "40b3f04dc6679dd63c0c58a65da2c8b0", + "x-ms-correlation-request-id": "59e58b6f-c37a-4593-bfd7-f242b3cfec35", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "4ca63931-5aef-49bf-b575-64caf7daa26d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034459Z:59e58b6f-c37a-4593-bfd7-f242b3cfec35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b07-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "38dd63999c21a200bec33713470b1c06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd1ac02a-349d-488a-9a05-71dbfde1f3fe", + "x-ms-client-request-id": "38dd63999c21a200bec33713470b1c06", + "x-ms-correlation-request-id": "8d9021b6-1b81-4fa1-a898-f130709fc1b2", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-request-id": "f08cbc1d-7e59-45dc-8708-d30d0377f4db", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034500Z:8d9021b6-1b81-4fa1-a898-f130709fc1b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b08-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7f6cc8fa8586d230df5e5d972f24a644", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "952b587e-a814-4ce7-a5cd-944fa6710f33", + "x-ms-client-request-id": "7f6cc8fa8586d230df5e5d972f24a644", + "x-ms-correlation-request-id": "54d06f06-b34c-4946-9d7a-e46940726afd", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-request-id": "64ae9256-cb44-4048-90f7-c5c9d0ae7404", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034501Z:54d06f06-b34c-4946-9d7a-e46940726afd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b09-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ef2fdd8c974b18cf01182a38fc25531", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b868c06-fe49-4cfe-9f9d-7ab8308399ae", + "x-ms-client-request-id": "3ef2fdd8c974b18cf01182a38fc25531", + "x-ms-correlation-request-id": "8e0038f5-5fb8-47a6-b23a-af72820a2248", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-request-id": "c539b257-dace-4b31-a9e6-7c1e94e70130", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034503Z:8e0038f5-5fb8-47a6-b23a-af72820a2248" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b0a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95ab51f04936132a330a58c23e68729a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2a44bbfd-0a30-4ed9-abd1-e9f73d06eee8", + "x-ms-client-request-id": "95ab51f04936132a330a58c23e68729a", + "x-ms-correlation-request-id": "e995a94b-160c-4f3d-a9f3-f321615dc8e2", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-request-id": "02e2892b-e6de-420f-b331-bb0304a9d031", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034504Z:e995a94b-160c-4f3d-a9f3-f321615dc8e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b0b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "493bf21ddd1930923bbb8f75038c431c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5550d77c-057c-4c90-900b-686a7d3a1ddd", + "x-ms-client-request-id": "493bf21ddd1930923bbb8f75038c431c", + "x-ms-correlation-request-id": "6a96a7ba-9d46-4b4c-b71f-f754c799960b", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-request-id": "6676e250-e1c4-4808-912a-6dccaf714b28", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034505Z:6a96a7ba-9d46-4b4c-b71f-f754c799960b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b0c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "dea72c0910788e0ed3de0a6971ca7287", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a623c8c8-bbc3-4b4b-a9c6-164b02505a1d", + "x-ms-client-request-id": "dea72c0910788e0ed3de0a6971ca7287", + "x-ms-correlation-request-id": "8ff3e8df-0215-4c0d-be87-928f9a99f1de", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-request-id": "6031360d-5154-4d1a-9132-8b43106d37da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034507Z:8ff3e8df-0215-4c0d-be87-928f9a99f1de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b0d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9c85e79e0c871218bf7b5a7abab410a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e0ed92ca-eb1a-4d77-94b3-753d88dac2c2", + "x-ms-client-request-id": "9c85e79e0c871218bf7b5a7abab410a7", + "x-ms-correlation-request-id": "cf8305b3-1907-4254-8550-8e03018c6cdf", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-request-id": "4d27fb94-a1af-40ab-893c-a331328a1cd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034508Z:cf8305b3-1907-4254-8550-8e03018c6cdf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b0e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "12b93cc694c10c21e4ac763ad228bf71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "74b1b769-710d-46e8-ae7d-d6f5eac8559d", + "x-ms-client-request-id": "12b93cc694c10c21e4ac763ad228bf71", + "x-ms-correlation-request-id": "17ce4e27-287e-4459-98d0-8810b0558d91", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-request-id": "c06de96c-f860-424a-b72f-9099e2784fe1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034509Z:17ce4e27-287e-4459-98d0-8810b0558d91" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b0f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1bd70749a606fd9514951efdb694d31f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "905a34ad-e29f-4887-b231-e2f654d6f71a", + "x-ms-client-request-id": "1bd70749a606fd9514951efdb694d31f", + "x-ms-correlation-request-id": "39a477fd-a2ae-4f37-880a-97fe019a2084", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-request-id": "214cf4c8-0fdd-4d21-9f81-297f5335faee", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034510Z:39a477fd-a2ae-4f37-880a-97fe019a2084" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b10-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "35a263ce601009c5c679b8da95dd3f96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bc1296d1-b4aa-46f8-9888-4c210e2caedc", + "x-ms-client-request-id": "35a263ce601009c5c679b8da95dd3f96", + "x-ms-correlation-request-id": "92d36d0e-4f6a-4a7d-9aa1-8ccb53a3c2a0", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "6f11d532-c384-4ba8-a601-461ee57d3b3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034512Z:92d36d0e-4f6a-4a7d-9aa1-8ccb53a3c2a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b11-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b231e9bbf4dc20a0a6bcfd2c76245650", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64124118-e53f-40f1-a711-7027f43a7e3c", + "x-ms-client-request-id": "b231e9bbf4dc20a0a6bcfd2c76245650", + "x-ms-correlation-request-id": "5d45e2da-12fa-418a-8026-8d851cc9b3f7", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "9634ecd5-868e-4f66-8723-47479ba65650", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034513Z:5d45e2da-12fa-418a-8026-8d851cc9b3f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b12-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e6b57d88a86e86041ce558deebb6736", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ef30908-b580-4ee9-a541-bf2578a0bb2e", + "x-ms-client-request-id": "6e6b57d88a86e86041ce558deebb6736", + "x-ms-correlation-request-id": "9dc6da7f-1e58-4d32-a673-7c3934d2f035", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "533cc96a-3535-4b26-a6f8-cc590e0c2da7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034514Z:9dc6da7f-1e58-4d32-a673-7c3934d2f035" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b13-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd4187552063da42c3828e53629992a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa9cfcb3-8c9a-492f-acf4-cf4ebe647bc8", + "x-ms-client-request-id": "cd4187552063da42c3828e53629992a1", + "x-ms-correlation-request-id": "197e36d2-99ff-4331-bcaa-604e9658fe52", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "10d0de08-134c-4b39-85c1-e970cbf7a8fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034516Z:197e36d2-99ff-4331-bcaa-604e9658fe52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b14-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e016822d07230108848700d9e1331eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "497ebea8-33f5-4b79-ab8f-a0112769525e", + "x-ms-client-request-id": "3e016822d07230108848700d9e1331eb", + "x-ms-correlation-request-id": "7e782702-5ce6-4897-b555-60e699971bbd", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "673a1354-9a20-40cd-a4ba-f654022d74f2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034518Z:7e782702-5ce6-4897-b555-60e699971bbd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b15-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eed6c75588e2b8ed1491ab03fc0d86a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "82d8f0c6-c137-4297-99b7-e7d48672da82", + "x-ms-client-request-id": "eed6c75588e2b8ed1491ab03fc0d86a8", + "x-ms-correlation-request-id": "5ee06cc3-32bf-424b-b523-a794fa1fc121", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "4c48fd43-720a-431f-aa16-dc281cc30386", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034519Z:5ee06cc3-32bf-424b-b523-a794fa1fc121" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b16-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "866ab43b29b985c47610451aaf343bb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f4a79b8-b574-4e95-a3dc-301a09bf4a08", + "x-ms-client-request-id": "866ab43b29b985c47610451aaf343bb0", + "x-ms-correlation-request-id": "35c08f1e-4257-48d5-a41d-5323a3dde27e", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "35c999bb-2aba-448e-ba89-1f0fa655f8cf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034520Z:35c08f1e-4257-48d5-a41d-5323a3dde27e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b17-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9bfea350a3c299be7b4929e0250d347a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ebf74e80-96f4-4025-ba23-b8de50380950", + "x-ms-client-request-id": "9bfea350a3c299be7b4929e0250d347a", + "x-ms-correlation-request-id": "a1b17ec8-5480-4573-81a6-3457912f74ae", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "003655d1-3a8f-4963-bc7e-34cd908bdafe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034522Z:a1b17ec8-5480-4573-81a6-3457912f74ae" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b18-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ead2c8c1aba82c31025178d143d208df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8dc4c7c-4924-4785-bc02-c4db5d8597a0", + "x-ms-client-request-id": "ead2c8c1aba82c31025178d143d208df", + "x-ms-correlation-request-id": "8f46f576-fc1e-4b4b-89f0-52d518295939", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "016bda60-07c5-4c55-85c6-d0bb4b0c4e4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034523Z:8f46f576-fc1e-4b4b-89f0-52d518295939" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b19-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "58b2fa55eb0f97e6f5d00a70ffe35f69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "761c0b93-b18c-4696-b634-1b8d377314a7", + "x-ms-client-request-id": "58b2fa55eb0f97e6f5d00a70ffe35f69", + "x-ms-correlation-request-id": "c083d026-6047-4977-90ef-17be51f5279d", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "c48eadbe-b413-43ee-b245-2ddd2f8510a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034524Z:c083d026-6047-4977-90ef-17be51f5279d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b1a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e759cadc5062a50771d198702bec56a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b93847a8-d4b2-4afc-b086-332965f36c83", + "x-ms-client-request-id": "e759cadc5062a50771d198702bec56a8", + "x-ms-correlation-request-id": "4a8141aa-4469-4070-ab98-ce06a71276ba", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "1e74e57a-3187-43bb-8fce-e131b8dcc2f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034525Z:4a8141aa-4469-4070-ab98-ce06a71276ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b1b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2a8a4a41db5ad66be23af5d7a0c12c1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98790d6c-10b2-4cb5-9e9a-de0c49c38147", + "x-ms-client-request-id": "2a8a4a41db5ad66be23af5d7a0c12c1e", + "x-ms-correlation-request-id": "251ae4bf-9cf5-4a6a-9eb2-4c4fedd6f743", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "51d3686b-823b-4762-a2b7-8c5a4e7cd4ef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034527Z:251ae4bf-9cf5-4a6a-9eb2-4c4fedd6f743" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b1c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79f50ff12079057cf20de73d52756c08", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bf76cb7-d313-45d2-a714-5eaeee9941d7", + "x-ms-client-request-id": "79f50ff12079057cf20de73d52756c08", + "x-ms-correlation-request-id": "99c82e5a-78cd-4416-8194-1b889ba0c1a0", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "83397479-753f-4b20-a818-7edc6c8ddbba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034528Z:99c82e5a-78cd-4416-8194-1b889ba0c1a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b1d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b42e627a3559000e5f8205285b3005af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6dca431-9fbc-477c-a1ba-d179d746e665", + "x-ms-client-request-id": "b42e627a3559000e5f8205285b3005af", + "x-ms-correlation-request-id": "4dee21f4-ed9f-4fe0-b7ca-867b79efdbd6", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "5f93c2f5-3a5e-4fa5-ae3f-f4e68bd2e7b5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034529Z:4dee21f4-ed9f-4fe0-b7ca-867b79efdbd6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b1e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1c7e79a4dcf6212fcd85374df42d836d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dd80f220-1642-4a14-9732-3c4f265befdf", + "x-ms-client-request-id": "1c7e79a4dcf6212fcd85374df42d836d", + "x-ms-correlation-request-id": "c932bc55-9438-45e7-aa4f-9353cdd0f6ad", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "128a1dcd-fa0b-4d05-8242-ce7887e2a3f9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034530Z:c932bc55-9438-45e7-aa4f-9353cdd0f6ad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b1f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3e5decce7892bcc500f51af61b54a9c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2d1a8b6c-ac1e-4b16-8f68-19049430f7ce", + "x-ms-client-request-id": "3e5decce7892bcc500f51af61b54a9c2", + "x-ms-correlation-request-id": "2711cb65-8f43-4b9b-b03c-d024e3387669", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "ad6132ff-cd0c-4829-9c91-6c8ac4b45917", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034532Z:2711cb65-8f43-4b9b-b03c-d024e3387669" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b20-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d99837084ff69d11320de7d3fec00c31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c793d05-d357-4a94-b026-1371770c5826", + "x-ms-client-request-id": "d99837084ff69d11320de7d3fec00c31", + "x-ms-correlation-request-id": "382cded5-7f92-4992-af03-5cb7439ab8b2", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "90429c09-719b-4224-bf97-d3fbcd02f1e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034533Z:382cded5-7f92-4992-af03-5cb7439ab8b2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b21-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6f5a98fec6d22c1cb4c21c01c2380579", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bb949b0d-e1c5-4799-81fc-41a303f7f2f6", + "x-ms-client-request-id": "6f5a98fec6d22c1cb4c21c01c2380579", + "x-ms-correlation-request-id": "298e6a03-3729-474f-9c33-da83724cf758", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "0320362d-ef77-4169-9295-9c7ae87b7ce3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034534Z:298e6a03-3729-474f-9c33-da83724cf758" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b22-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc4574dcaa957e76dabf0c8591f2be40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8abb5680-854b-420b-bb97-900558c577a5", + "x-ms-client-request-id": "bc4574dcaa957e76dabf0c8591f2be40", + "x-ms-correlation-request-id": "45fc6309-2928-4883-b1b8-db9b1c9f8f0f", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "d298f030-b0f3-4a0b-8bb3-a328d52f1250", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034536Z:45fc6309-2928-4883-b1b8-db9b1c9f8f0f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b23-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83f8e9e939f941ef1a6b25343310dbf9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fcb8f717-519b-4b36-8284-d1804fb99c42", + "x-ms-client-request-id": "83f8e9e939f941ef1a6b25343310dbf9", + "x-ms-correlation-request-id": "71c29466-18a3-453d-8322-6bcfc145d232", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "b0ce4e4a-d988-4275-a36c-8a1ef86a2a07", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034537Z:71c29466-18a3-453d-8322-6bcfc145d232" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b24-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "89f66d074f7a539b21db9413ba979bc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e6b0e693-54f0-461c-8f58-1d03b0c768d1", + "x-ms-client-request-id": "89f66d074f7a539b21db9413ba979bc1", + "x-ms-correlation-request-id": "66b0f894-526c-4d6d-b612-c7ac8d6c0185", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "e380ace1-78d4-4200-a1ca-660c72a0c93a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034538Z:66b0f894-526c-4d6d-b612-c7ac8d6c0185" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b25-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d918db038240a27f8404a12985424bca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30af6c06-39ed-49bb-82c7-466a848e39f4", + "x-ms-client-request-id": "d918db038240a27f8404a12985424bca", + "x-ms-correlation-request-id": "883a6866-0cd8-49d1-9300-9b3459868dfd", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "82e38929-5cad-4af1-bf3e-83df63624b2e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034539Z:883a6866-0cd8-49d1-9300-9b3459868dfd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b26-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "237d12e435fb99c54da4611da4dc8683", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "155a0831-8a65-4937-9c33-dac5d7991ac6", + "x-ms-client-request-id": "237d12e435fb99c54da4611da4dc8683", + "x-ms-correlation-request-id": "bc0d557d-bf8e-4dc6-a2ad-3cabe86f589c", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "6da75b71-9607-4168-bfc3-70772670943f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034541Z:bc0d557d-bf8e-4dc6-a2ad-3cabe86f589c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b27-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "573063d002f885b8ed540476ae72cede", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31d85502-57cc-47b5-a744-c27376e966a2", + "x-ms-client-request-id": "573063d002f885b8ed540476ae72cede", + "x-ms-correlation-request-id": "8fc85664-c51a-425d-a90e-b2eb4548333a", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "abdea7e8-266f-4478-bbf3-6d1b32077a90", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034542Z:8fc85664-c51a-425d-a90e-b2eb4548333a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b28-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a72fca90781acec6167e8b9c2161fda8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "41e87654-a043-4e4e-b6ea-8d92e93eb1e3", + "x-ms-client-request-id": "a72fca90781acec6167e8b9c2161fda8", + "x-ms-correlation-request-id": "5fbd0789-dc69-43a2-9490-ff056652357b", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "3c646e26-8635-4c26-b9a2-ff5f01dc55d9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034543Z:5fbd0789-dc69-43a2-9490-ff056652357b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b29-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22591e7df312e1d25af835a7304eebdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5347c41-ed78-4194-8665-e535419698ab", + "x-ms-client-request-id": "22591e7df312e1d25af835a7304eebdb", + "x-ms-correlation-request-id": "791cd54d-fa1b-432d-8a76-18e6a6f03975", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "6bc9c2a4-455a-4e1e-bbe8-a9827209445d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034545Z:791cd54d-fa1b-432d-8a76-18e6a6f03975" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b2a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da8d82d6dfad57689c614079761c638c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98771f47-e27e-48d8-907c-dfd2c9ff6a67", + "x-ms-client-request-id": "da8d82d6dfad57689c614079761c638c", + "x-ms-correlation-request-id": "81889cdd-0969-4b5d-9999-3547d84076ee", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "f2caf9f2-aaea-4d59-b31f-4142a0e317e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034546Z:81889cdd-0969-4b5d-9999-3547d84076ee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b2b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90f85c56ac189dccf84d4d21421f9ec7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "36f44aea-e83c-49aa-886e-c8e85f7dad15", + "x-ms-client-request-id": "90f85c56ac189dccf84d4d21421f9ec7", + "x-ms-correlation-request-id": "ac529d09-231c-41bf-b96c-59530743f5b5", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "e1ca3655-78af-4e51-ad6e-9b4b7c14a26a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034547Z:ac529d09-231c-41bf-b96c-59530743f5b5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b2c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9ec6b09223d49efbb50185b0b2586b3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89ada8b5-4c05-4956-b372-e955cb417634", + "x-ms-client-request-id": "9ec6b09223d49efbb50185b0b2586b3e", + "x-ms-correlation-request-id": "a2bbeca2-a13e-4593-816c-9ce508aef406", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "fc1ffa53-bfcf-460c-92d8-7aedd0e238a5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034548Z:a2bbeca2-a13e-4593-816c-9ce508aef406" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b2d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d450a9945b552ac2b6efe25f9246157d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "80fc9cbb-55e5-402c-9fd2-10b3f733e9a0", + "x-ms-client-request-id": "d450a9945b552ac2b6efe25f9246157d", + "x-ms-correlation-request-id": "66078422-90e8-4de9-ae0b-5e65841f9b85", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "78cc24f8-a8a9-47ab-9b8e-50af078a2370", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034550Z:66078422-90e8-4de9-ae0b-5e65841f9b85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b2e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5e779c3c55533b7615ada16261ceaa0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85588317-20de-487c-98f8-b4cc50d5a188", + "x-ms-client-request-id": "c5e779c3c55533b7615ada16261ceaa0", + "x-ms-correlation-request-id": "7e069334-3967-4143-b64d-69adb6fd46e7", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "f28f0ae5-7f52-4f74-b2a6-91f096767bc5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034551Z:7e069334-3967-4143-b64d-69adb6fd46e7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b2f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "998d0ee1cacf3771ed9ce8e4419b0c6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "081d2101-4e10-4c38-a3e2-edf86262234e", + "x-ms-client-request-id": "998d0ee1cacf3771ed9ce8e4419b0c6e", + "x-ms-correlation-request-id": "bc2287e0-cfb1-4335-82d8-0d94b3afb110", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "148c8b17-81b2-41f3-b8d2-ab5048bac907", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034552Z:bc2287e0-cfb1-4335-82d8-0d94b3afb110" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b30-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "39ec08eca570cfe8f21d72fb80ac0399", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "97b381a1-9788-4d17-a81b-d2d098d7f76f", + "x-ms-client-request-id": "39ec08eca570cfe8f21d72fb80ac0399", + "x-ms-correlation-request-id": "00812662-1808-4788-be5b-adcb082cd8a0", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "0afcfbf7-cb4b-4f5f-bb10-839e27cedf99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034554Z:00812662-1808-4788-be5b-adcb082cd8a0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b31-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "837d41057cb9f9ae07b0d8b9dcd2f2c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "104a7f6b-fac2-4559-aa14-4d5b23395b67", + "x-ms-client-request-id": "837d41057cb9f9ae07b0d8b9dcd2f2c5", + "x-ms-correlation-request-id": "00027c3f-61a9-434e-8889-a8736e4b29d1", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "b5f349e2-9fc3-4d9b-b46f-73f3c2dded85", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034555Z:00027c3f-61a9-434e-8889-a8736e4b29d1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b32-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e296c4eb12f3c2f26bea6b15776b641", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7f0b8e5f-a89b-4cf9-979b-061fc180f7a0", + "x-ms-client-request-id": "1e296c4eb12f3c2f26bea6b15776b641", + "x-ms-correlation-request-id": "2aea67b8-328d-4571-90c1-e7cf8285968f", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "a4175e5f-edfe-4c0d-b4f7-862989877705", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034556Z:2aea67b8-328d-4571-90c1-e7cf8285968f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b33-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ffdf4e98891d70b45af332c0cd2ff21f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0801c220-0f52-40ce-9e2c-4f3463bfc309", + "x-ms-client-request-id": "ffdf4e98891d70b45af332c0cd2ff21f", + "x-ms-correlation-request-id": "c26e06c9-589a-4a2d-aec7-0f92a41b7cda", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "e186fd03-72ce-4d29-875d-2e9366a3075e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034557Z:c26e06c9-589a-4a2d-aec7-0f92a41b7cda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b34-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "14acac2be582546a12415cfbd5fca290", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3cf24f1f-135c-4155-9918-1c375959c04c", + "x-ms-client-request-id": "14acac2be582546a12415cfbd5fca290", + "x-ms-correlation-request-id": "ae58adc5-c13a-4f26-808c-d9643b08903e", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "4a041412-6d4f-40bb-91a6-1252e2923f9a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034559Z:ae58adc5-c13a-4f26-808c-d9643b08903e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b35-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8e2097faf2f3c5a8b7b9c33b7e6f6ef7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:45:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a1646243-4381-4e4a-964d-4c9404176b12", + "x-ms-client-request-id": "8e2097faf2f3c5a8b7b9c33b7e6f6ef7", + "x-ms-correlation-request-id": "cf208807-00b0-425a-a4ab-124546a5db0a", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "b8613fdc-865c-4604-843c-0b1d4c8fcafa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034600Z:cf208807-00b0-425a-a4ab-124546a5db0a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b36-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "aa8687cba1c9b3bee38beddb2cb99b5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "864c3944-1606-4dee-a732-a5d509de9ebe", + "x-ms-client-request-id": "aa8687cba1c9b3bee38beddb2cb99b5d", + "x-ms-correlation-request-id": "7f9f57f2-4946-4971-9a9c-64c16b243329", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "dc0395ab-6958-46ea-962d-11a0e31358e7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034601Z:7f9f57f2-4946-4971-9a9c-64c16b243329" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b37-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "36c6a151630e382c04e75cc9212ed5a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d435ddd1-bad7-41fd-b57c-9d3eaabdef5d", + "x-ms-client-request-id": "36c6a151630e382c04e75cc9212ed5a3", + "x-ms-correlation-request-id": "cac03514-5021-498c-953f-a4d7121370b1", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "1999ddad-04d1-44cd-9d7f-edf3ae0a8b74", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034603Z:cac03514-5021-498c-953f-a4d7121370b1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b38-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4d2f65d3f77558c6d86daa6705cc99fe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b02d58fb-58aa-427b-aa06-e7dbef8edbba", + "x-ms-client-request-id": "4d2f65d3f77558c6d86daa6705cc99fe", + "x-ms-correlation-request-id": "c94f0aa9-6b60-47c2-bba0-bee9e342eb7d", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "8342c967-ec01-4d87-b27c-10031f01fded", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034604Z:c94f0aa9-6b60-47c2-bba0-bee9e342eb7d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b39-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddea651d37a867e85a4ea6e245f591b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fbcb2df9-ef4b-491d-b41a-8b56d0dd4c56", + "x-ms-client-request-id": "ddea651d37a867e85a4ea6e245f591b5", + "x-ms-correlation-request-id": "a70f9c4a-feb4-4188-9090-a26fa57b1be6", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "e17611d0-dbab-4343-8e7a-c6ad38cee0a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034605Z:a70f9c4a-feb4-4188-9090-a26fa57b1be6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b3a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c70849b54d8959e8da6e5ea1b9c43237", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "20084080-a3c6-4d85-9cd1-6d265e319807", + "x-ms-client-request-id": "c70849b54d8959e8da6e5ea1b9c43237", + "x-ms-correlation-request-id": "4129262a-36ee-4c9f-a59e-0fac98a50416", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "50799eab-45a0-4437-893d-7d408ad35be6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034606Z:4129262a-36ee-4c9f-a59e-0fac98a50416" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b3b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbab5e4ef8449bfa7cc7f22751e412e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2589fe64-4987-48b2-9416-0ccdd7415e66", + "x-ms-client-request-id": "bbab5e4ef8449bfa7cc7f22751e412e3", + "x-ms-correlation-request-id": "c56e25af-541d-42cd-b981-1df24961e156", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "b56a363f-6f02-4015-805f-fcde2939b4a3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034608Z:c56e25af-541d-42cd-b981-1df24961e156" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b3c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bbb1f5dcd1c4cf747d90023ad947ae96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d5ce199-6427-404a-93cc-c697f7e935a1", + "x-ms-client-request-id": "bbb1f5dcd1c4cf747d90023ad947ae96", + "x-ms-correlation-request-id": "c806c793-ba42-4242-a3e5-6f123483c416", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "1f5f617c-6f38-4d44-a4c7-b21317382b32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034609Z:c806c793-ba42-4242-a3e5-6f123483c416" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b3d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7946e1bd549bd704f6c4ac15bc108f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35e6dfa7-16e2-40b2-a207-48f15ae24333", + "x-ms-client-request-id": "e7946e1bd549bd704f6c4ac15bc108f6", + "x-ms-correlation-request-id": "5ab13543-6321-4192-855e-927ad0d6dbaa", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "8c03f67e-2541-487c-b594-e82368b25014", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034610Z:5ab13543-6321-4192-855e-927ad0d6dbaa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b3e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c3c57a5b76127c72e9dc3eb3f5bfc135", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef4a8467-cb9e-48a7-b399-95f10f212f09", + "x-ms-client-request-id": "c3c57a5b76127c72e9dc3eb3f5bfc135", + "x-ms-correlation-request-id": "0ed19b09-3e19-40ed-b04a-b9e6445fc071", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "d30d2510-abce-4123-9659-eb3781d3bec1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034612Z:0ed19b09-3e19-40ed-b04a-b9e6445fc071" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b3f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e20b5c192b4f069a84f46c5787b274bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9202bda3-4940-4b77-b19c-89ba3d3848ec", + "x-ms-client-request-id": "e20b5c192b4f069a84f46c5787b274bc", + "x-ms-correlation-request-id": "f42ab266-0b35-4998-9eab-12f215783753", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "7a89f4c4-7d50-4e80-9f94-eb7f63a89720", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034613Z:f42ab266-0b35-4998-9eab-12f215783753" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b40-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5fdf0c87ea82a583fc18fd6c97bcc890", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "71909529-ea56-43eb-99a4-43d5fd3c61f9", + "x-ms-client-request-id": "5fdf0c87ea82a583fc18fd6c97bcc890", + "x-ms-correlation-request-id": "f6ba1ece-086a-44af-a052-b03940533aab", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "a22ce9a6-e40a-461d-8b49-798b9f110aa6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034614Z:f6ba1ece-086a-44af-a052-b03940533aab" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b41-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fea815ab26b62fa6e0be3e1e0a1af436", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec4b0466-f31f-4380-9605-5d966ac50d8a", + "x-ms-client-request-id": "fea815ab26b62fa6e0be3e1e0a1af436", + "x-ms-correlation-request-id": "19dca56b-08b3-4197-ab01-dd1eb9ee62d2", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "d9146b42-c681-433b-aa4f-7b77e621c2e9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034615Z:19dca56b-08b3-4197-ab01-dd1eb9ee62d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b42-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e82c826862df2eb2d965e6372d2d6fc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b6e146ce-1611-433d-80ab-9cee8ac016d8", + "x-ms-client-request-id": "e82c826862df2eb2d965e6372d2d6fc8", + "x-ms-correlation-request-id": "ce8fb891-6868-477c-9f17-a3e2d79c4950", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "4be57c5f-7644-476b-ac2f-786c6051d5a6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034617Z:ce8fb891-6868-477c-9f17-a3e2d79c4950" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b43-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "72acdc2b750a610665b07fc4ab649ae1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f43ec99e-9bbe-4a62-b6c2-7f69e18bd221", + "x-ms-client-request-id": "72acdc2b750a610665b07fc4ab649ae1", + "x-ms-correlation-request-id": "c45fccbc-1adc-47f9-a31d-470183aa9394", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "ca8f8c92-6b25-44df-adad-ac75e897f03d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034618Z:c45fccbc-1adc-47f9-a31d-470183aa9394" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b44-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1404c723df9048b062792450406e02b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "505bf21a-9ff0-4952-97c0-c9c32ca93e8b", + "x-ms-client-request-id": "1404c723df9048b062792450406e02b2", + "x-ms-correlation-request-id": "07a3da01-56f8-41ef-aa91-7b545cd40457", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "db4ee08b-6c07-45ec-ba07-208adad93bdf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034619Z:07a3da01-56f8-41ef-aa91-7b545cd40457" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b45-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2ef3764e816ef22c7ccb822fe3ee8375", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "68190bc3-7ede-4b24-a11b-c881633ca3a4", + "x-ms-client-request-id": "2ef3764e816ef22c7ccb822fe3ee8375", + "x-ms-correlation-request-id": "80539f59-9151-4b99-9938-0df6a84ca884", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "f30283c7-1191-4bf8-b5a2-f69ca608a276", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034620Z:80539f59-9151-4b99-9938-0df6a84ca884" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b46-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "661405cb5a294c372c63109051b520f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d92f19e8-3ce6-4fb2-ae56-dbb7a877cdd8", + "x-ms-client-request-id": "661405cb5a294c372c63109051b520f7", + "x-ms-correlation-request-id": "e0e8847b-1283-4758-9441-5d01c8b835c9", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "6868c6b1-2785-4a57-8329-efbbde6db78a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034622Z:e0e8847b-1283-4758-9441-5d01c8b835c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b47-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3475ccad6c70a1729a1298c55c806573", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e8274e5-3d90-4b39-9deb-f8a6921ee776", + "x-ms-client-request-id": "3475ccad6c70a1729a1298c55c806573", + "x-ms-correlation-request-id": "189a7af0-7a0d-43f0-8cd7-907f8aff016a", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "f4522645-b964-4669-8c06-1b8f72ed9eaa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034623Z:189a7af0-7a0d-43f0-8cd7-907f8aff016a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b48-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3b85aff69b5af4893fa7020a719ba1c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c3af22e8-f205-4145-874d-0f92e57020d7", + "x-ms-client-request-id": "3b85aff69b5af4893fa7020a719ba1c6", + "x-ms-correlation-request-id": "41b42ab5-2420-49c1-9c69-c707f20fcfda", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "4e972c0d-2a36-430e-b3b4-4674bc324f82", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034624Z:41b42ab5-2420-49c1-9c69-c707f20fcfda" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b49-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "16828baa4e795e049272cb16c272efab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e84c42ea-e6e3-4113-873f-b74593c79183", + "x-ms-client-request-id": "16828baa4e795e049272cb16c272efab", + "x-ms-correlation-request-id": "6ef68735-5ac5-4f64-9e85-2e0af2c24dd6", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "0d4ca661-2c2d-48cd-9976-9a7a1b598d9f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034626Z:6ef68735-5ac5-4f64-9e85-2e0af2c24dd6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b4a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a19a9cfee530119c4380f5c96a682ffe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0c9b08b5-a170-4af5-8916-c4c79d1dfa28", + "x-ms-client-request-id": "a19a9cfee530119c4380f5c96a682ffe", + "x-ms-correlation-request-id": "fc38bab0-0831-4a79-8ee4-f0c6d355800a", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "8d07535e-afd2-497b-b7af-fbf3043e7c36", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034627Z:fc38bab0-0831-4a79-8ee4-f0c6d355800a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b4b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d01ad2714efea7faab26a9e8d07232cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5335dff-3f0b-4f13-8c1c-7e419323b23e", + "x-ms-client-request-id": "d01ad2714efea7faab26a9e8d07232cc", + "x-ms-correlation-request-id": "7060bffa-c1fe-423d-8358-bdaba542b0ba", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "2526755f-7b44-4322-8b23-c5380c4c11da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034628Z:7060bffa-c1fe-423d-8358-bdaba542b0ba" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b4c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d50b56b7ff01c595ef70d3f8583af429", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2af94047-ddaf-4038-9b97-fb76200d6e4a", + "x-ms-client-request-id": "d50b56b7ff01c595ef70d3f8583af429", + "x-ms-correlation-request-id": "5be3b781-241f-4a7b-921e-de46dc5d9274", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "d5dd4173-d88f-456e-8978-aa16beca1cd3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034629Z:5be3b781-241f-4a7b-921e-de46dc5d9274" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b4d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efa5cc421e57afada2f2f50a3bb441d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "933e82f7-82a4-4797-a82e-353322a6f910", + "x-ms-client-request-id": "efa5cc421e57afada2f2f50a3bb441d0", + "x-ms-correlation-request-id": "348130bc-99df-41dc-8147-bdf8372d3a93", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "45fe448b-e6bd-43b6-be96-23822707ead2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034631Z:348130bc-99df-41dc-8147-bdf8372d3a93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b4e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1411284e5a5c71fc3c55e18e7b014f70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c5fc1494-9398-4a38-9218-06d1c59f3c5e", + "x-ms-client-request-id": "1411284e5a5c71fc3c55e18e7b014f70", + "x-ms-correlation-request-id": "2458de15-5998-4469-b3d1-20d58b9a3d4c", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "ecbd4fd1-6b38-4d62-acaf-2402aef19fbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034633Z:2458de15-5998-4469-b3d1-20d58b9a3d4c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b4f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03a57f3142cd9974a85c320f098b893b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "965fa6cd-d0d1-4749-86ae-58f562d5374b", + "x-ms-client-request-id": "03a57f3142cd9974a85c320f098b893b", + "x-ms-correlation-request-id": "ad883372-a031-4124-839b-d778d585552e", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "9ba37a56-031b-44fe-91fd-fe37005bb31d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034634Z:ad883372-a031-4124-839b-d778d585552e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b50-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fa9022ee028e7cccf33b2023d1f33a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "af4693ea-47b2-4a38-9ef1-68d6de6c4d5d", + "x-ms-client-request-id": "2fa9022ee028e7cccf33b2023d1f33a0", + "x-ms-correlation-request-id": "ad289053-3b2c-4dfa-958b-4a10b79487f8", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "fd5c65ca-7b87-4116-b2e8-1956122d5537", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034636Z:ad289053-3b2c-4dfa-958b-4a10b79487f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b51-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bcd885a23d0e0c03b4786b0027ed68b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52751d65-a7e6-409d-b984-da67583c1a97", + "x-ms-client-request-id": "bcd885a23d0e0c03b4786b0027ed68b1", + "x-ms-correlation-request-id": "bdafd3ff-3bce-4232-b141-b9e5a2e7759a", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "60e0a710-938d-454f-adbf-99d3f5daf334", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034637Z:bdafd3ff-3bce-4232-b141-b9e5a2e7759a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b52-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "795fa6cb1f575147b3be34998f725b89", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3dbfb01-3ad8-43f7-93b4-3b6f05d2d7a2", + "x-ms-client-request-id": "795fa6cb1f575147b3be34998f725b89", + "x-ms-correlation-request-id": "edcfcdb0-0513-4015-bfff-ea5c00de005e", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "e36c0b64-cde2-44e5-b1a3-1230c2832bf7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034638Z:edcfcdb0-0513-4015-bfff-ea5c00de005e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b53-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "846c9128cdb2f12dfe9d7bb074ccbfe2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38850af3-b112-414c-bca1-4625d59aa7ef", + "x-ms-client-request-id": "846c9128cdb2f12dfe9d7bb074ccbfe2", + "x-ms-correlation-request-id": "effad8a7-8acf-43fe-a94c-3dd6a2d527a2", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "3c735bcb-de30-4ccb-a549-40e439bee6da", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034639Z:effad8a7-8acf-43fe-a94c-3dd6a2d527a2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b54-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "973700cbbabf83493d86084f096a7c42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b3f452c7-587e-436d-b64e-d813751fefa2", + "x-ms-client-request-id": "973700cbbabf83493d86084f096a7c42", + "x-ms-correlation-request-id": "497605b1-62ee-474f-bec2-4a52ea112275", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "688630f0-039d-4563-95db-f09eccd84ea3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034641Z:497605b1-62ee-474f-bec2-4a52ea112275" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b55-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "96d7e21ce380feff786e7abaa397dce7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "90312e8e-e2d4-4840-ae58-e3153eef746f", + "x-ms-client-request-id": "96d7e21ce380feff786e7abaa397dce7", + "x-ms-correlation-request-id": "7cd05d14-ceb5-4c4f-ae41-3bb8f5ea33bc", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "0716f384-1152-4287-878b-8495918c3b4f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034642Z:7cd05d14-ceb5-4c4f-ae41-3bb8f5ea33bc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b56-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ece52fec43a6dc948e9462bc4dde894", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60ec5dfc-7b73-4396-92f6-10746a183895", + "x-ms-client-request-id": "8ece52fec43a6dc948e9462bc4dde894", + "x-ms-correlation-request-id": "8d1fad50-2dbe-41bc-a019-c702550d2482", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "e2190100-2f32-455d-814d-f825370012c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034643Z:8d1fad50-2dbe-41bc-a019-c702550d2482" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b57-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9293392129f4e76101391e51408fdfa5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "192760e4-2f1a-43da-ad05-502ec1c8882f", + "x-ms-client-request-id": "9293392129f4e76101391e51408fdfa5", + "x-ms-correlation-request-id": "a431b3f9-65a7-48b6-aa5f-08358120e8ec", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "333d65c4-685a-4ba5-a4c7-a977b30ca984", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034645Z:a431b3f9-65a7-48b6-aa5f-08358120e8ec" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b58-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b65121aaed9b580718694d979cd3399b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0212191e-b84a-4188-bdf2-db3d63bf798c", + "x-ms-client-request-id": "b65121aaed9b580718694d979cd3399b", + "x-ms-correlation-request-id": "b50ae408-af21-48ce-ba76-608b96bbe954", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "96d51cbf-7df8-4057-9782-020f8dd6e498", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034646Z:b50ae408-af21-48ce-ba76-608b96bbe954" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b59-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a99e5864904d4f3f0e68d01a6772db9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28c90e1d-cb80-47e0-a5a2-6b8f0f7dc856", + "x-ms-client-request-id": "6a99e5864904d4f3f0e68d01a6772db9", + "x-ms-correlation-request-id": "4ad7626c-afeb-4da7-8614-5cf2472fe91c", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "2d7bf5cf-0857-4fff-89f3-4aebb59d3c34", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034647Z:4ad7626c-afeb-4da7-8614-5cf2472fe91c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b5a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a381a009318b33f8323b798adcca4a2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ee830f28-910d-4313-9ffa-fe060d85afba", + "x-ms-client-request-id": "a381a009318b33f8323b798adcca4a2e", + "x-ms-correlation-request-id": "a38e9c15-11b7-4cf3-b9ff-53689c03139e", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "046e9497-5ab1-496d-bb68-f16658f95ee4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034648Z:a38e9c15-11b7-4cf3-b9ff-53689c03139e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b5b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5acb82ff75f660a12e7dc6b56005b2a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "942eede8-cee8-43d2-bb6c-9d21fbbae694", + "x-ms-client-request-id": "5acb82ff75f660a12e7dc6b56005b2a1", + "x-ms-correlation-request-id": "bc88afb8-575d-4f32-a857-3f1e4de54202", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "3fe7c185-9876-49a9-bb57-522bea1b5b5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034650Z:bc88afb8-575d-4f32-a857-3f1e4de54202" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b5c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc8d933c9652550fec6537c9d069f725", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6e452f4d-0a31-4e51-9f9a-b15262635500", + "x-ms-client-request-id": "fc8d933c9652550fec6537c9d069f725", + "x-ms-correlation-request-id": "17276d80-23b7-4d57-b233-72acedd219cf", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "4c8cb1ef-fc64-4b92-9bd5-5d3bb5ff31ea", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034651Z:17276d80-23b7-4d57-b233-72acedd219cf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b5d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "23025e9cd3ac94c3ff20740e6a43d22d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d8f92e0-afa1-401c-8ff4-05ecbea34b73", + "x-ms-client-request-id": "23025e9cd3ac94c3ff20740e6a43d22d", + "x-ms-correlation-request-id": "8ed8ac98-9ca3-4f1c-b997-0e31a81a1d13", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "eb080e93-135b-44ae-a17e-ce6349d68e11", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034652Z:8ed8ac98-9ca3-4f1c-b997-0e31a81a1d13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b5e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "484dd8884e3d68dc73756d903dd890c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1e06ed93-98f1-43f4-84ef-132a7a07c0a2", + "x-ms-client-request-id": "484dd8884e3d68dc73756d903dd890c5", + "x-ms-correlation-request-id": "da41341a-1235-4365-924f-62ce2b842452", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "54e56e2e-74a1-4ed2-b7a7-298f4a8d2ce5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034654Z:da41341a-1235-4365-924f-62ce2b842452" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b5f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0119a0858e0268f4d0f9fc312101eaa9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d35a51b-ffc6-4330-9a49-33c14ec4a1ac", + "x-ms-client-request-id": "0119a0858e0268f4d0f9fc312101eaa9", + "x-ms-correlation-request-id": "c2c7c234-18d5-4430-a33f-bbe277332a9e", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "60f47964-eee4-4618-b967-d01821895bdb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034655Z:c2c7c234-18d5-4430-a33f-bbe277332a9e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b60-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7400a92af1b4de88299b03665335726", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "db91dba1-8662-4656-bd21-9e2c6661cc6c", + "x-ms-client-request-id": "f7400a92af1b4de88299b03665335726", + "x-ms-correlation-request-id": "df2778fb-5044-4e2f-8d61-855ea44285bf", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "f86b7785-852a-4cba-9a19-bba84340bb5d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034656Z:df2778fb-5044-4e2f-8d61-855ea44285bf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b61-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ca89af90d12af92ae4e5784351aa4772", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f86e5e88-4559-4ed2-b228-65e0c9c92c97", + "x-ms-client-request-id": "ca89af90d12af92ae4e5784351aa4772", + "x-ms-correlation-request-id": "6c63e0b2-c352-42a1-908e-bec0ac6018fa", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "80e66b44-fd38-4899-99af-5794cbe4f011", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034657Z:6c63e0b2-c352-42a1-908e-bec0ac6018fa" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b62-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32fdc48b9898d5aab7cb7e69debd039d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec3936f6-902a-4166-a167-cfffca4264ac", + "x-ms-client-request-id": "32fdc48b9898d5aab7cb7e69debd039d", + "x-ms-correlation-request-id": "7f8fb809-8874-4fc9-b657-be807b5c8111", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "a6951525-c168-443f-9024-ce9306422256", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034659Z:7f8fb809-8874-4fc9-b657-be807b5c8111" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b63-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "71a0d6a22077c17ee046133537a4fbd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:46:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c329584-ae24-4a42-b74e-d80b3f8c424b", + "x-ms-client-request-id": "71a0d6a22077c17ee046133537a4fbd7", + "x-ms-correlation-request-id": "2de00135-df0f-41ce-98ed-f81930ab4332", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "30e562a1-cba4-444b-893b-1819c81e4fb3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034700Z:2de00135-df0f-41ce-98ed-f81930ab4332" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b64-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1ab3d522435f88e05b3125f52c01a26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1410ffb0-8331-4321-b198-5d04fc1ac61d", + "x-ms-client-request-id": "a1ab3d522435f88e05b3125f52c01a26", + "x-ms-correlation-request-id": "cbddbdfd-49c1-46c2-a930-2a548de0777c", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "15ccb37e-1d98-47fa-b56a-8e15e07eb98c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034701Z:cbddbdfd-49c1-46c2-a930-2a548de0777c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b65-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7ba1dbe2d50a6bfa453b515185749e12", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "85c642ef-df55-4c9c-8079-c79ce258f2ed", + "x-ms-client-request-id": "7ba1dbe2d50a6bfa453b515185749e12", + "x-ms-correlation-request-id": "ca90aaa0-73b1-492a-a288-de244e6bc15b", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "dc760a34-8f6d-4f45-a200-67b2a09749ed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034703Z:ca90aaa0-73b1-492a-a288-de244e6bc15b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b66-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a017a6cf61127d6748a86cc30d1f6f1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "002a297a-6203-4b18-987f-552d61edd279", + "x-ms-client-request-id": "a017a6cf61127d6748a86cc30d1f6f1f", + "x-ms-correlation-request-id": "4dafcf5a-f2d6-4c4e-9c40-788e5d73e95a", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "6772fe20-b940-419b-9b21-9c7ee27ecd68", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034704Z:4dafcf5a-f2d6-4c4e-9c40-788e5d73e95a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b67-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b53ed2b80037ccd433f5cf9d23c7291", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d5f6c1cf-1cbb-4a5d-8b79-fb4b71458683", + "x-ms-client-request-id": "5b53ed2b80037ccd433f5cf9d23c7291", + "x-ms-correlation-request-id": "77305be1-8674-4e17-8364-7d7982861d9a", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "90eb4a01-7471-4e3c-b373-1f1e30db9294", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034705Z:77305be1-8674-4e17-8364-7d7982861d9a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b68-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ab8f00147aa980147324336168365d25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23f62111-b69a-4ee3-b7bd-94750e52a6fe", + "x-ms-client-request-id": "ab8f00147aa980147324336168365d25", + "x-ms-correlation-request-id": "a946c891-f9d1-4c52-8715-16d15761fc49", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "877d2ed7-c171-4cd5-b284-99671bb3756f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034706Z:a946c891-f9d1-4c52-8715-16d15761fc49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b69-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "972632cc43204e0fd99a5dd2046dab0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6ca52404-36ff-4ae4-b82d-316098f8aca8", + "x-ms-client-request-id": "972632cc43204e0fd99a5dd2046dab0b", + "x-ms-correlation-request-id": "baa88ffc-b344-4822-ab54-7342dd745d70", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "41f5e7c3-aa61-4445-95c2-cbe513295eed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034709Z:baa88ffc-b344-4822-ab54-7342dd745d70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b6a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0dafdb35c390b176d9d3e8de4d6c130c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f6b96ff8-2423-4bf7-97dd-eddd7dc62091", + "x-ms-client-request-id": "0dafdb35c390b176d9d3e8de4d6c130c", + "x-ms-correlation-request-id": "3ab0585a-71a3-4bce-b890-cdd6ccf74644", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "341da596-dddd-4463-a034-761b7810d582", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034711Z:3ab0585a-71a3-4bce-b890-cdd6ccf74644" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b6b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a02d37e2da16d171f040d20e1c417c06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "79ec73d7-d27e-4909-a4ca-97cccc10cda8", + "x-ms-client-request-id": "a02d37e2da16d171f040d20e1c417c06", + "x-ms-correlation-request-id": "05a56031-a2c1-4cb3-8254-b651ba93cf0c", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "8497c1a8-e6d9-4256-97e6-b571137c6360", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034712Z:05a56031-a2c1-4cb3-8254-b651ba93cf0c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b6c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d2c277950870895bb74be4d5a30016d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a3a63a71-92c9-473f-808c-6cccb09b46e3", + "x-ms-client-request-id": "8d2c277950870895bb74be4d5a30016d", + "x-ms-correlation-request-id": "cdba3bfd-04a8-47eb-812d-ba5e97687d15", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "63fceaad-5523-4fdb-b4a9-12615d97d162", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034713Z:cdba3bfd-04a8-47eb-812d-ba5e97687d15" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b6d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cdf050860a405af569dd1c4ff1679597", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ca2460b-2ea1-404c-a00f-f9174aa20544", + "x-ms-client-request-id": "cdf050860a405af569dd1c4ff1679597", + "x-ms-correlation-request-id": "b272c2c9-2292-4e66-9daf-126bf1378698", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "e5a034f5-95ae-49c0-b6aa-03c250f5e980", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034715Z:b272c2c9-2292-4e66-9daf-126bf1378698" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b6e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2665e257863f9185a124e4a11c2376bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea96a7fb-1dbe-4cb7-9c53-397bfa4ea3f5", + "x-ms-client-request-id": "2665e257863f9185a124e4a11c2376bf", + "x-ms-correlation-request-id": "335bb3a4-6cd9-4b60-b68c-b17e7efb6b6c", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "c0f1c926-4c50-42d8-9888-6de412d29ea4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034716Z:335bb3a4-6cd9-4b60-b68c-b17e7efb6b6c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b6f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb88653fae516ec531d123a933461754", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "926641a7-f8bf-437e-bccf-360dd27ff142", + "x-ms-client-request-id": "cb88653fae516ec531d123a933461754", + "x-ms-correlation-request-id": "a2f96d7c-71f8-490f-8543-b4034a026df4", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "4cb77480-a011-4d82-b10a-88ff4f930517", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034717Z:a2f96d7c-71f8-490f-8543-b4034a026df4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b70-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "78f627dfdaca002dcb5e2c1b26543e45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d1728c15-a249-4276-a16f-ce6b1ba840dc", + "x-ms-client-request-id": "78f627dfdaca002dcb5e2c1b26543e45", + "x-ms-correlation-request-id": "892e9fba-5a45-4fd2-be28-9293d8ee4685", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-request-id": "6d760956-a995-4347-ae96-0a2ff55162ab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034718Z:892e9fba-5a45-4fd2-be28-9293d8ee4685" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b71-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c0f5c66c9dfa8451cf7f46e62dc5e5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e109ff47-9eed-4f31-8bda-a15f30d71455", + "x-ms-client-request-id": "8c0f5c66c9dfa8451cf7f46e62dc5e5b", + "x-ms-correlation-request-id": "ae1902a3-c64d-4459-8e6c-fad1af2d0bf1", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "88d4c7f6-aff9-425b-ac1a-40ac82c78ed3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034720Z:ae1902a3-c64d-4459-8e6c-fad1af2d0bf1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b72-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f4c1900dfe2d64f5388700f382aa47dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1cbf15cb-76a3-480d-b9e8-24d0284bd768", + "x-ms-client-request-id": "f4c1900dfe2d64f5388700f382aa47dd", + "x-ms-correlation-request-id": "452ab6d7-e8c0-4491-aca4-a6150161e140", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "6dd47cc7-84d6-412c-8136-39d777114951", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034721Z:452ab6d7-e8c0-4491-aca4-a6150161e140" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b73-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d642dd928b361675e14d5cd3e6be9eef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa3d6bc3-a842-4b88-8fd0-9ab68c8b40c9", + "x-ms-client-request-id": "d642dd928b361675e14d5cd3e6be9eef", + "x-ms-correlation-request-id": "4ba36ddb-1a7e-47a0-9db3-6d63c2761458", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "88b62efa-f1b1-4019-9479-791c35d41bec", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034722Z:4ba36ddb-1a7e-47a0-9db3-6d63c2761458" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b74-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "950ed0004992681867ab5457c8522672", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e606046d-538f-440d-acf0-bae4bedb6a86", + "x-ms-client-request-id": "950ed0004992681867ab5457c8522672", + "x-ms-correlation-request-id": "44a5594e-c8be-4d81-a3b1-d1b1d449b479", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "a9827f0a-f41c-4fd4-98f8-1daf47249f3d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034724Z:44a5594e-c8be-4d81-a3b1-d1b1d449b479" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b75-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "84db17af879982251bab13e0a2217e79", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3041a1ca-0348-49c6-a196-505bae79fe89", + "x-ms-client-request-id": "84db17af879982251bab13e0a2217e79", + "x-ms-correlation-request-id": "182f773f-6318-4730-8906-efff8df00a35", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "e88bed39-0fc9-404f-8541-a6916338e33c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034725Z:182f773f-6318-4730-8906-efff8df00a35" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b76-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2f211e9b29b484bc5da6e8b371e4d8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "085c04bc-bd2a-43e4-982f-3ba9171b7a2f", + "x-ms-client-request-id": "b2f211e9b29b484bc5da6e8b371e4d8e", + "x-ms-correlation-request-id": "4e6af38e-8f60-4688-bc72-f7464e8db1d2", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "17a348ad-726e-43a5-9941-f0ccca521cd0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034726Z:4e6af38e-8f60-4688-bc72-f7464e8db1d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b77-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ce23e9271ae27855aa8c7ae63637c545", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5d98fbb1-2772-44ec-ab58-ed9904fad2e6", + "x-ms-client-request-id": "ce23e9271ae27855aa8c7ae63637c545", + "x-ms-correlation-request-id": "b2f3d056-f99a-4852-a627-cd613c63b9a5", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "46a83353-c3cf-4dfd-89f3-cbca00d5d754", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034727Z:b2f3d056-f99a-4852-a627-cd613c63b9a5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b78-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b66dda2c745ffdd6cc92bebe189a4afd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2c75e432-09e2-43f7-beee-f7a529650d00", + "x-ms-client-request-id": "b66dda2c745ffdd6cc92bebe189a4afd", + "x-ms-correlation-request-id": "27537002-6e1f-4a18-b4e8-f4cdb3c704f3", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "ba10aa29-dc2c-4aab-a8ff-8c6c8893da0c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034729Z:27537002-6e1f-4a18-b4e8-f4cdb3c704f3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b79-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b8b9845db0fecf96bb7a070f3764128e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fdc2bfab-f2e3-4ef1-8065-84719a5b7c51", + "x-ms-client-request-id": "b8b9845db0fecf96bb7a070f3764128e", + "x-ms-correlation-request-id": "b86bd411-d171-4d5c-93ab-52daccda04f9", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "df9868dd-6352-4556-a8d1-64ab4c850350", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034730Z:b86bd411-d171-4d5c-93ab-52daccda04f9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b7a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c5e281496b0b32e132502505b965f10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b1e51e3f-fbdd-4441-a082-dfb47ecf6553", + "x-ms-client-request-id": "5c5e281496b0b32e132502505b965f10", + "x-ms-correlation-request-id": "3e9ed8d1-3f37-4c22-8557-30dda76da09c", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "959cfc95-e717-4b9b-8ad7-c8313a1e3a58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034731Z:3e9ed8d1-3f37-4c22-8557-30dda76da09c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b7b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2887d410d7e7c47449efbe56dc7c667", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "14b68761-5475-4642-b75e-e57fdbf0f1b8", + "x-ms-client-request-id": "b2887d410d7e7c47449efbe56dc7c667", + "x-ms-correlation-request-id": "0d29a7c8-9a95-4bf1-b951-18cdba096c70", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "7cf2b81d-ee51-4214-acbd-212f228ff5b4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034732Z:0d29a7c8-9a95-4bf1-b951-18cdba096c70" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b7c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f0aa3080ee3bc74c5505a5d9ad467324", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b67c7f1c-a075-4203-a8e4-6f43db5f0fae", + "x-ms-client-request-id": "f0aa3080ee3bc74c5505a5d9ad467324", + "x-ms-correlation-request-id": "4f4ec67f-224a-4731-a5f4-c1b1946791f8", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "1b76c9f0-200b-4128-b2c9-4e207e64ce5f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034734Z:4f4ec67f-224a-4731-a5f4-c1b1946791f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b7d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bacdf61a5fdb070fe1e218119b49454c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "196310d9-e469-41a1-b6fc-b931850e4c54", + "x-ms-client-request-id": "bacdf61a5fdb070fe1e218119b49454c", + "x-ms-correlation-request-id": "8d829172-bddc-4fb9-b9e0-0520cd4dbc10", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "41d37395-22c1-42bd-a8e3-e6f0464d9569", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034735Z:8d829172-bddc-4fb9-b9e0-0520cd4dbc10" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b7e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2bcf9a5f6fec53d430c15d78676ecefe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e37188a-2d18-4a7f-ad96-878ad36c9eea", + "x-ms-client-request-id": "2bcf9a5f6fec53d430c15d78676ecefe", + "x-ms-correlation-request-id": "fc0f2aee-98fb-45e7-9c65-18b3271eef0b", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "ef087c84-0601-49b4-81e5-c9af1089fffc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034736Z:fc0f2aee-98fb-45e7-9c65-18b3271eef0b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b7f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "76cad62b0bf9218c20a30e59d63a2b0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "694dcefd-9724-4ed2-a11d-ecda749131ff", + "x-ms-client-request-id": "76cad62b0bf9218c20a30e59d63a2b0b", + "x-ms-correlation-request-id": "00e165d7-b8fb-4a2d-b0e6-f53c45ba3b18", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "6db5e600-2ee0-473a-a3d4-1a4cffe108aa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034738Z:00e165d7-b8fb-4a2d-b0e6-f53c45ba3b18" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b80-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "137959bf4776ab38227a891902969f73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "83f2c211-838a-4225-9527-b45dd29a9d92", + "x-ms-client-request-id": "137959bf4776ab38227a891902969f73", + "x-ms-correlation-request-id": "63544d97-fb9f-4c0f-b7a8-b85ac4fb3b4f", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "85878f01-bc2e-4e7e-b5e0-05227b2ca88e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034739Z:63544d97-fb9f-4c0f-b7a8-b85ac4fb3b4f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b81-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c5e61a13cf7f53520eae0a49617a7cf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3dcc0243-9a60-4ad2-9b31-530d3358c268", + "x-ms-client-request-id": "c5e61a13cf7f53520eae0a49617a7cf5", + "x-ms-correlation-request-id": "daffcf83-4da7-4022-bac2-c167b71b7182", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "b976c585-63b6-4024-87aa-a1b8d06c4dd6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034740Z:daffcf83-4da7-4022-bac2-c167b71b7182" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b82-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0eb85196bbf4e3879d1f547e82721e8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2ae6db8-7ac2-4a90-bce0-32e6259949b5", + "x-ms-client-request-id": "0eb85196bbf4e3879d1f547e82721e8a", + "x-ms-correlation-request-id": "522349df-e796-4975-8b9b-4ea45ee446e9", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "6dddc9b2-889d-40d1-ad06-4717da2e4987", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034741Z:522349df-e796-4975-8b9b-4ea45ee446e9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b83-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc469a036554f08c062505c73cee4aa7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9aca52d-84d0-4147-b6ba-9fc1a6275201", + "x-ms-client-request-id": "bc469a036554f08c062505c73cee4aa7", + "x-ms-correlation-request-id": "5aac3fb4-b789-45bf-96b7-163a26a977c2", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "13a8e04c-bf17-43ce-89fb-5cf25356eea0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034743Z:5aac3fb4-b789-45bf-96b7-163a26a977c2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b84-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b08393fe90dd587e9203275f7bd4d19b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f1591e1-edb2-44c7-8385-6e5ac2ca8cb3", + "x-ms-client-request-id": "b08393fe90dd587e9203275f7bd4d19b", + "x-ms-correlation-request-id": "4b893078-9d9a-4b19-bb05-549c34874899", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "0cf29862-7aeb-47e7-86f9-2878e80fb799", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034744Z:4b893078-9d9a-4b19-bb05-549c34874899" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b85-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c645808fc03430a1c4c808cfb5bfa6af", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f0fea4d2-8b37-4835-b8b7-74b240b5d1b6", + "x-ms-client-request-id": "c645808fc03430a1c4c808cfb5bfa6af", + "x-ms-correlation-request-id": "1abc86ea-d730-4650-b5a5-a751e6fc5471", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "0415fc5b-56fc-41c1-ac1f-c501f5976f8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034745Z:1abc86ea-d730-4650-b5a5-a751e6fc5471" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b86-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ee80add56dee73ac1ced29503e2c7531", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9bc1f044-9808-49ae-b2d4-8e28d2cf1c20", + "x-ms-client-request-id": "ee80add56dee73ac1ced29503e2c7531", + "x-ms-correlation-request-id": "5cc8870c-26e7-4d87-af6a-229f6f948dad", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "d736e3f6-12dc-49ea-83af-2496a9b7792b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034746Z:5cc8870c-26e7-4d87-af6a-229f6f948dad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b87-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc38695383a93d72f253eb1588afa3d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a0e71df3-bb10-4555-a9e4-c7476d335dd9", + "x-ms-client-request-id": "bc38695383a93d72f253eb1588afa3d2", + "x-ms-correlation-request-id": "033463ac-c95c-456c-8b85-7d5af19101b9", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "800e8f57-3923-4c56-861c-ff9a09d3a932", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034748Z:033463ac-c95c-456c-8b85-7d5af19101b9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b88-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cd8a785de35422acd3d1aa479650f198", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cfc95fc4-f9f6-49a7-ace6-47ed1de138b5", + "x-ms-client-request-id": "cd8a785de35422acd3d1aa479650f198", + "x-ms-correlation-request-id": "622ad2d9-fdea-4745-a125-38c395e73c62", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "cb3430d9-d29b-4a97-aeb3-4dbd586dcbf4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034749Z:622ad2d9-fdea-4745-a125-38c395e73c62" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b89-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4b7bd652e98751063a42fb9b8197eb6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "508c5398-dd5c-4cfa-8649-9456db1e8c78", + "x-ms-client-request-id": "4b7bd652e98751063a42fb9b8197eb6c", + "x-ms-correlation-request-id": "1f15e758-b145-4c1b-858a-1c0df9fe767f", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "bee9b93b-15fa-40a1-b297-cab5cdc2fcd9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034750Z:1f15e758-b145-4c1b-858a-1c0df9fe767f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b8a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6f3574aa7a170ddbd16e8d7d92ba7a1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a207ea91-3ed2-407b-b1fa-039727c7f546", + "x-ms-client-request-id": "c6f3574aa7a170ddbd16e8d7d92ba7a1", + "x-ms-correlation-request-id": "69e78c78-811b-4ecb-ad97-2b11c5790054", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "3efe80c4-4f4c-4c71-8471-502f38f5afed", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034752Z:69e78c78-811b-4ecb-ad97-2b11c5790054" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b8b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b1c253615734734b72399312e710a03c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "04a17bcf-7191-4ea8-bdb7-4030639c7361", + "x-ms-client-request-id": "b1c253615734734b72399312e710a03c", + "x-ms-correlation-request-id": "bb27126d-4a29-43c4-a830-268bd550946d", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "2139691b-184a-45f3-a14c-69574a34f9f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034753Z:bb27126d-4a29-43c4-a830-268bd550946d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b8c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ffc3de62b5dabf6f90a8e71002e770f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d3515d7-5d2e-48e8-a9d4-28c904e9ce12", + "x-ms-client-request-id": "3ffc3de62b5dabf6f90a8e71002e770f", + "x-ms-correlation-request-id": "8a9025d1-bede-4a10-ba94-779e561054da", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "edbc657c-8d23-4312-a88b-25fabdb50302", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034754Z:8a9025d1-bede-4a10-ba94-779e561054da" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b8d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2e3a5a9b39d4f2380c80546814ca88ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9f72ace0-290f-4b06-9dab-ed8eb90f774a", + "x-ms-client-request-id": "2e3a5a9b39d4f2380c80546814ca88ac", + "x-ms-correlation-request-id": "3a4c04ca-e420-4cec-a261-3b02085462f0", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "7c5d6f28-9efd-4c59-baee-f6b93035f1bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034755Z:3a4c04ca-e420-4cec-a261-3b02085462f0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b8e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9cf0ac75672e35445d17b829c9d97243", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df99119a-116b-4799-9fe8-7d856d55d4c8", + "x-ms-client-request-id": "9cf0ac75672e35445d17b829c9d97243", + "x-ms-correlation-request-id": "1e0b8e31-247c-41a1-8b8e-29032428ee03", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "8524f8e2-5c01-424a-9f4e-465cfc2f13e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034757Z:1e0b8e31-247c-41a1-8b8e-29032428ee03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b8f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8d7784c271d6ac67040933dcd78e962e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "11f5f4de-c105-45cd-94b2-1f78c41ab92e", + "x-ms-client-request-id": "8d7784c271d6ac67040933dcd78e962e", + "x-ms-correlation-request-id": "4eb391bc-4fdb-466e-8f9d-a6eeb1527584", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "37b68689-c660-4a59-84e2-8511600c4c6d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034758Z:4eb391bc-4fdb-466e-8f9d-a6eeb1527584" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b90-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "54fbe181db3e33e01504d0bd810f2932", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:47:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "56647d14-df07-4c57-a098-47b6e24d1ae1", + "x-ms-client-request-id": "54fbe181db3e33e01504d0bd810f2932", + "x-ms-correlation-request-id": "23d9187e-28cb-4be8-bab8-57057ac20123", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "0d914fc4-ec72-4ded-817f-18dc5e6066e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034759Z:23d9187e-28cb-4be8-bab8-57057ac20123" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b91-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90a6100efb5303d64443972534685ecf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "249bd86d-6f3e-4035-9c65-4f1fd07e60bd", + "x-ms-client-request-id": "90a6100efb5303d64443972534685ecf", + "x-ms-correlation-request-id": "9097714a-01ef-47fe-a276-a581df241ea8", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "0edb3a27-908e-49cd-95b1-a439ad61e9df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034801Z:9097714a-01ef-47fe-a276-a581df241ea8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b92-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e7a789801ddde705a44377d1a1aa2bf5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "342c3181-c538-4083-8552-4189d64456a0", + "x-ms-client-request-id": "e7a789801ddde705a44377d1a1aa2bf5", + "x-ms-correlation-request-id": "4971ae15-c2d2-4b54-8854-60f121019abd", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "7fd2a5e0-9ae2-4774-bc21-52f221d964d6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034802Z:4971ae15-c2d2-4b54-8854-60f121019abd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b93-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c6ce00df06e886da0bf710fa43bafead", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e75187e8-2117-4580-9602-7d72d131f094", + "x-ms-client-request-id": "c6ce00df06e886da0bf710fa43bafead", + "x-ms-correlation-request-id": "13eb353f-df8e-4c00-9808-ed3c7aeaab53", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "9b3e7260-125b-463c-9bb6-6e1397269055", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034803Z:13eb353f-df8e-4c00-9808-ed3c7aeaab53" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b94-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f73c01a64267f0540bbeec0f83056299", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fb6d4e91-7f57-4eca-88a4-df889eea397a", + "x-ms-client-request-id": "f73c01a64267f0540bbeec0f83056299", + "x-ms-correlation-request-id": "fd61de3a-9740-4bee-8e80-47f6f7792083", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "75cb985f-95a6-4f36-9e8f-11d1b3fba133", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034804Z:fd61de3a-9740-4bee-8e80-47f6f7792083" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b95-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3345a118979979e7ae21dce60c0ba3e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "607e9979-a1c1-4176-8008-1cf5b0f2776a", + "x-ms-client-request-id": "3345a118979979e7ae21dce60c0ba3e9", + "x-ms-correlation-request-id": "1db103c1-4a87-43e0-8255-9e3eb7155cad", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "f3db82bb-d8ef-438b-86b1-44f4eec490dc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034806Z:1db103c1-4a87-43e0-8255-9e3eb7155cad" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b96-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9f2aca44336d9d8eabddba291aca0205", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "64b1e72e-6e6f-44d4-ad22-c8629529e708", + "x-ms-client-request-id": "9f2aca44336d9d8eabddba291aca0205", + "x-ms-correlation-request-id": "c0cd8ff8-57ad-4f36-a383-cecd6694eb66", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "0d977584-2794-4f44-8d22-7cd3bc0bb238", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034808Z:c0cd8ff8-57ad-4f36-a383-cecd6694eb66" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b97-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1e17695cb750e131ac24946656ee300", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4fbdf88a-d8a4-4031-8cf2-d95de98305b8", + "x-ms-client-request-id": "a1e17695cb750e131ac24946656ee300", + "x-ms-correlation-request-id": "989b0816-f809-41db-a5b6-75cb561b243b", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "f3481b69-838c-4592-9d0a-82795b802647", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034809Z:989b0816-f809-41db-a5b6-75cb561b243b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b98-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b9ca031bc2dbe52b13a787bcdcbe5fe3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "513b240c-d473-4986-91cb-1e913e7d4235", + "x-ms-client-request-id": "b9ca031bc2dbe52b13a787bcdcbe5fe3", + "x-ms-correlation-request-id": "a536812e-6acd-4b06-99ab-05ac9b44b894", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "d29fef29-1da8-41ab-b426-32b682f9dab1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034810Z:a536812e-6acd-4b06-99ab-05ac9b44b894" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b99-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9551d61e02297973b61b85abea47373d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ccea5013-6bc9-4636-a3d0-28bc48b274b3", + "x-ms-client-request-id": "9551d61e02297973b61b85abea47373d", + "x-ms-correlation-request-id": "69bc4b1b-9936-4083-800a-db481388abac", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "f5156c0d-7d7d-47d0-aa43-70afdd49a999", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034811Z:69bc4b1b-9936-4083-800a-db481388abac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b9a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "170dbaf94900d22a4bfb8dcd4357315c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c9cbc5ae-20a6-44f6-99f5-7378f52479e1", + "x-ms-client-request-id": "170dbaf94900d22a4bfb8dcd4357315c", + "x-ms-correlation-request-id": "bda0ebbc-fb06-4a75-8a1e-ce07083c973b", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "72d2d6c2-0f5c-4fc2-85eb-6fd1949f3302", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034813Z:bda0ebbc-fb06-4a75-8a1e-ce07083c973b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b9b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f2865634d1d18d68f5103bf3d80fbcb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7d5b822d-09c9-4277-b328-348925dc57cf", + "x-ms-client-request-id": "8f2865634d1d18d68f5103bf3d80fbcb", + "x-ms-correlation-request-id": "edccebdc-3e8e-4621-93dc-1793a4eb8f71", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "168b58b8-a0cf-41ad-8233-4a688b5ed8c8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034814Z:edccebdc-3e8e-4621-93dc-1793a4eb8f71" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b9c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22c24a7047b0d4e3ac7e4a2d74a5365e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "17c6ed55-2430-4594-9fa6-5bbbe2862f3b", + "x-ms-client-request-id": "22c24a7047b0d4e3ac7e4a2d74a5365e", + "x-ms-correlation-request-id": "0fbeea15-a673-47bf-b615-c1fb7c4bd845", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "75de357a-cb34-45b0-ae70-4675522b6a76", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034815Z:0fbeea15-a673-47bf-b615-c1fb7c4bd845" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b9d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "854729e9a81fab1fe3f487ae466b94ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "33ed806d-fcc8-4553-b9fa-5e040c5caa61", + "x-ms-client-request-id": "854729e9a81fab1fe3f487ae466b94ca", + "x-ms-correlation-request-id": "add1e923-001f-4b99-9841-b44038c726e3", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "92094f40-06b2-4d6c-8b02-56c886788214", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034817Z:add1e923-001f-4b99-9841-b44038c726e3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b9e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f95dc2000f941cab8153e29e03a9a4ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f15f3723-a740-411d-8c3b-380f8a9b0765", + "x-ms-client-request-id": "f95dc2000f941cab8153e29e03a9a4ea", + "x-ms-correlation-request-id": "c4fbb853-9a1f-417d-9351-a020dc29ba45", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "afc7782e-1b34-449f-b6aa-ddfe1f8548bb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034818Z:c4fbb853-9a1f-417d-9351-a020dc29ba45" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172b9f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "13d5a41b7639c7ab2a173fbbbf358e41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28d5bf57-b083-441a-a306-a719612a902d", + "x-ms-client-request-id": "13d5a41b7639c7ab2a173fbbbf358e41", + "x-ms-correlation-request-id": "501ec394-b749-48e8-947e-418b908d2882", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "4573994f-e0b1-40df-98d7-00e1892efe67", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034819Z:501ec394-b749-48e8-947e-418b908d2882" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ba0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b22d7fea3c47daca7d2b04ccc580a83a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce35f197-3ace-45f2-9dd8-09f94b81e00c", + "x-ms-client-request-id": "b22d7fea3c47daca7d2b04ccc580a83a", + "x-ms-correlation-request-id": "b9b2ef8e-330d-4c1f-996f-c1192271ac93", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "af92f150-e92b-49ec-bd80-45431f694af7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034820Z:b9b2ef8e-330d-4c1f-996f-c1192271ac93" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ba1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a1939d5080958a911696ce7dd0f05c4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e4438b54-c106-4a1a-a49c-72d82df42fec", + "x-ms-client-request-id": "a1939d5080958a911696ce7dd0f05c4b", + "x-ms-correlation-request-id": "fd2625f6-7b9e-41ba-8907-4dec53576af7", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "ce26f341-6524-4945-bc99-7da57f7807f4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034822Z:fd2625f6-7b9e-41ba-8907-4dec53576af7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ba2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "83b4a1c4f27cdea2dafb960e72df01a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e94e4972-c379-4ef6-81ba-5af4e420ab72", + "x-ms-client-request-id": "83b4a1c4f27cdea2dafb960e72df01a9", + "x-ms-correlation-request-id": "d0968b30-ec25-4402-8833-216b86ef470a", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "e2436fc8-10fe-43e6-8f05-5f0bfa45be2b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034823Z:d0968b30-ec25-4402-8833-216b86ef470a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ba3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "226a046feda169aceea29bb06e4d098c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7390ee94-3614-484a-9bf6-4cfba427f84e", + "x-ms-client-request-id": "226a046feda169aceea29bb06e4d098c", + "x-ms-correlation-request-id": "934af022-352e-4cc0-b02c-5434bfca56ff", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "e92b55bf-01d4-496b-8438-5c2fa2e98d70", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034824Z:934af022-352e-4cc0-b02c-5434bfca56ff" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ba4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2407b8cf24cc5ebefab5c799ea831836", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cb9da949-6d96-40d8-801b-fdef3663de16", + "x-ms-client-request-id": "2407b8cf24cc5ebefab5c799ea831836", + "x-ms-correlation-request-id": "80880ad1-0bee-46be-be55-73f0f1c2c711", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-request-id": "fda8a305-d7f2-44dc-8539-73178bdb2a5c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034825Z:80880ad1-0bee-46be-be55-73f0f1c2c711" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ba5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cb0e24953986d7aaf54b95d956f16f8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce3d6ccd-92d9-4ae7-874d-2bea31bc3088", + "x-ms-client-request-id": "cb0e24953986d7aaf54b95d956f16f8d", + "x-ms-correlation-request-id": "25c4fd53-fed8-435d-8b06-ca09bcbcfa40", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-request-id": "19876170-2f1e-416b-b1c7-d2fc101f5e9e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034827Z:25c4fd53-fed8-435d-8b06-ca09bcbcfa40" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ba6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b93e0af1dcd74add460c27ec25127e6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0aaa3dea-642b-413a-b4fe-a655992fe1c6", + "x-ms-client-request-id": "b93e0af1dcd74add460c27ec25127e6a", + "x-ms-correlation-request-id": "8311fccc-2f29-4430-8762-1840a0391730", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-request-id": "b83b87db-05d8-4ba6-8a50-93a4d43195b2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034828Z:8311fccc-2f29-4430-8762-1840a0391730" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ba7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "491b648a3e3e95060d302f808fe40708", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "edfc994d-9f30-4305-9c2d-71ca423038d6", + "x-ms-client-request-id": "491b648a3e3e95060d302f808fe40708", + "x-ms-correlation-request-id": "2bd788b8-7180-41d1-bbb6-7e54f5ea3f2b", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-request-id": "483e91c5-f617-4cbf-9413-d077d3ceb26f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034829Z:2bd788b8-7180-41d1-bbb6-7e54f5ea3f2b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ba8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e0a73a455e44b85e46c3847911beb2e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8d3219cd-4f6a-403f-a39c-a3e7276d06c2", + "x-ms-client-request-id": "e0a73a455e44b85e46c3847911beb2e2", + "x-ms-correlation-request-id": "5edb777b-f959-4b0b-8559-f4b0d6d2bdd2", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-request-id": "056ce32e-669a-40c5-bb18-77240662fdbc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034831Z:5edb777b-f959-4b0b-8559-f4b0d6d2bdd2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172ba9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f14e2acc25d6b34e03a9aca7ad5dba62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6a526bde-2e81-4d7e-bff8-5dbfbfc1a8cd", + "x-ms-client-request-id": "f14e2acc25d6b34e03a9aca7ad5dba62", + "x-ms-correlation-request-id": "0deb8657-3657-4526-b1fa-80d9a3926184", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-request-id": "cd2e5c16-168b-4201-b816-dd25a26c8117", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034832Z:0deb8657-3657-4526-b1fa-80d9a3926184" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172baa-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "eaa61f059e6a2c260563037bb98d834f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d37b1ff6-6a32-4315-8ed4-45e7a9098504", + "x-ms-client-request-id": "eaa61f059e6a2c260563037bb98d834f", + "x-ms-correlation-request-id": "d5207199-f21a-40b0-85c6-ccde9826bcd6", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-request-id": "e9b6ccd2-8b90-45c7-a230-60f5d45c6fd2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034833Z:d5207199-f21a-40b0-85c6-ccde9826bcd6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bab-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65b34c7e15961f32ecf4dc9bb1b70ae9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0429f049-7355-418d-94fa-39f83d518fc2", + "x-ms-client-request-id": "65b34c7e15961f32ecf4dc9bb1b70ae9", + "x-ms-correlation-request-id": "359ad06d-642c-408d-bf6a-1fec3f1cbe49", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-request-id": "16a581dc-c857-4d51-9cb4-6e1f3503b083", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034834Z:359ad06d-642c-408d-bf6a-1fec3f1cbe49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bac-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f2742209c7172e770321eb7222d3f976", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5144dbc5-c18d-42f6-8006-2b70b251ff80", + "x-ms-client-request-id": "f2742209c7172e770321eb7222d3f976", + "x-ms-correlation-request-id": "c7795b01-1713-4e0a-9364-5e7b75fb6ba3", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-request-id": "6180d3d2-9521-4ab5-8b25-1fd6e57e8bc5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034836Z:c7795b01-1713-4e0a-9364-5e7b75fb6ba3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bad-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "60295c2555a9efcbec87fe76c18b7a4e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6bff0dae-4117-4aa6-89a8-228d5e9f814e", + "x-ms-client-request-id": "60295c2555a9efcbec87fe76c18b7a4e", + "x-ms-correlation-request-id": "004dd427-f4c2-480e-85c8-ec9d7c834e7a", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-request-id": "821c41a0-2f87-4c02-bb46-a2d9501bb028", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034837Z:004dd427-f4c2-480e-85c8-ec9d7c834e7a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bae-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "977119599119b637d485617429c0fc19", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1f0c6af5-9082-4b7d-a5b6-7ce30f409624", + "x-ms-client-request-id": "977119599119b637d485617429c0fc19", + "x-ms-correlation-request-id": "8e11a9a9-6287-4298-a401-d525a588cab0", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-request-id": "6f625a8a-5e24-4869-826d-c4ae07a7ac14", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034838Z:8e11a9a9-6287-4298-a401-d525a588cab0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172baf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "547566faa98db34056840690c8006c78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "801a02e4-953a-4e04-acfa-cb3bde38e049", + "x-ms-client-request-id": "547566faa98db34056840690c8006c78", + "x-ms-correlation-request-id": "aee9e156-da7b-42a6-990b-2a1acad205e8", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-request-id": "5f758809-7ae1-4bb9-b8e7-0e233c1f45df", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034839Z:aee9e156-da7b-42a6-990b-2a1acad205e8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bb0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "09199da66261945d25728b23f456c52b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5228c7ec-0ac2-45c6-9b0d-ba300662a3b8", + "x-ms-client-request-id": "09199da66261945d25728b23f456c52b", + "x-ms-correlation-request-id": "64e714eb-e6ac-41e4-9169-39fb0b7dc431", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-request-id": "c51f3ad3-89df-493f-8e0c-f7be65a35919", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034841Z:64e714eb-e6ac-41e4-9169-39fb0b7dc431" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bb1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5b7ce48a2615afc0d9be40948ba7eed4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5efb1368-ea74-485b-9950-27df6acbb19d", + "x-ms-client-request-id": "5b7ce48a2615afc0d9be40948ba7eed4", + "x-ms-correlation-request-id": "5fc9ab56-2115-468c-a184-3c35e206b84f", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-request-id": "d5048d11-f2c9-4ba0-8f3d-36d92cc500f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034842Z:5fc9ab56-2115-468c-a184-3c35e206b84f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bb2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ccee818f3a798b809e12f1b1d1cbf00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d7c7f648-7443-4312-aba1-aeffce06d4f6", + "x-ms-client-request-id": "8ccee818f3a798b809e12f1b1d1cbf00", + "x-ms-correlation-request-id": "9cbd75f9-47f8-4ac9-b5da-c6465b6e1af1", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-request-id": "6efefa56-42e0-4511-92eb-bd43889bd5e8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034843Z:9cbd75f9-47f8-4ac9-b5da-c6465b6e1af1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bb3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e305dabe11848063dc6930a221c8087d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "39f65739-f989-4aeb-8cbe-4627b3a30810", + "x-ms-client-request-id": "e305dabe11848063dc6930a221c8087d", + "x-ms-correlation-request-id": "fc5c760f-1352-4990-9fdc-3e78176e454d", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-request-id": "c1637e4b-3016-4a49-ac07-4fc2a13e9a1f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034845Z:fc5c760f-1352-4990-9fdc-3e78176e454d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bb4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b0ab784398897842ce45133f6a591bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7378314a-b7d5-48a4-a5e4-796df34a8b92", + "x-ms-client-request-id": "0b0ab784398897842ce45133f6a591bc", + "x-ms-correlation-request-id": "79abfd0a-4272-4606-8573-5bfad9de8534", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-request-id": "bbc80aa6-e883-40ec-a038-7a241696e292", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034846Z:79abfd0a-4272-4606-8573-5bfad9de8534" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bb5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b0d640ff0aa2074f854daf3dc3157640", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0178e8d8-3b2f-4e44-82f5-f13976236c57", + "x-ms-client-request-id": "b0d640ff0aa2074f854daf3dc3157640", + "x-ms-correlation-request-id": "2f66f596-760c-48c7-b9e2-2b5302992f8a", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-request-id": "56f147ca-b727-4cf3-ba42-0a074d1808e3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034847Z:2f66f596-760c-48c7-b9e2-2b5302992f8a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bb6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6597b2d8b4118577556eb7a0bf2f8a37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6fd0be3a-cfe5-4d46-be73-3780c8d2627d", + "x-ms-client-request-id": "6597b2d8b4118577556eb7a0bf2f8a37", + "x-ms-correlation-request-id": "6900a137-fe7e-4459-b03e-da5af8cb7887", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-request-id": "8940b8d0-6a5a-46c7-adf0-5f8ec8e4194a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034848Z:6900a137-fe7e-4459-b03e-da5af8cb7887" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bb7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1a373d858f279db6703853b8947d416", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de1db743-0fbb-428a-be67-574816ba7561", + "x-ms-client-request-id": "e1a373d858f279db6703853b8947d416", + "x-ms-correlation-request-id": "1a31e8f8-3f50-4095-a6ac-12b7fd8620f8", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-request-id": "e9f0a7d7-f40a-4512-bf31-8c85e79373d5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034850Z:1a31e8f8-3f50-4095-a6ac-12b7fd8620f8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bb8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "435a116d2b0d4aabc8505b3352af4855", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "01abe45c-a11b-41c2-a90e-04a3c5973ab5", + "x-ms-client-request-id": "435a116d2b0d4aabc8505b3352af4855", + "x-ms-correlation-request-id": "39b29136-4451-4c3f-9248-97621403eb86", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-request-id": "c90ee0f8-a598-44f3-913d-8db6491f8bf1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034851Z:39b29136-4451-4c3f-9248-97621403eb86" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bb9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4f6478c29572804ed71dfd0e2e3cfb0d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ece8ea3c-d95c-4b57-909d-19b7ea7a0a36", + "x-ms-client-request-id": "4f6478c29572804ed71dfd0e2e3cfb0d", + "x-ms-correlation-request-id": "90ad8394-3fb6-4f06-b31f-6773af54d0f2", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-request-id": "45455ee2-8388-404f-9539-e34f1da3788d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034852Z:90ad8394-3fb6-4f06-b31f-6773af54d0f2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bba-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae32a09a46d5ac29c85818a1fca727b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9af80b70-0575-4b5b-8356-867d3fe1e679", + "x-ms-client-request-id": "ae32a09a46d5ac29c85818a1fca727b8", + "x-ms-correlation-request-id": "8fc10953-8b5d-4f21-b79c-4175adb330bb", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-request-id": "a39d2c41-16ea-4bdd-9712-669d04ce274d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034854Z:8fc10953-8b5d-4f21-b79c-4175adb330bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bbb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11782fbb84e2d7a4c2d96cf02e9d1c8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1165472a-00cf-4130-b146-37439c5d6a77", + "x-ms-client-request-id": "11782fbb84e2d7a4c2d96cf02e9d1c8b", + "x-ms-correlation-request-id": "16cc595d-253a-418a-90eb-86b1079a6616", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-request-id": "3ea0f80a-b941-4a10-8cc2-6026fee1a530", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034855Z:16cc595d-253a-418a-90eb-86b1079a6616" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bbc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b2994e559a7c7c804eb887197cac842f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d105f995-a502-46d6-a1cb-eb06e42289f8", + "x-ms-client-request-id": "b2994e559a7c7c804eb887197cac842f", + "x-ms-correlation-request-id": "883baca4-3f75-4149-88b5-88ad69ced73d", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-request-id": "382a46bf-e4d2-4b26-8d85-daa5dafdb9f0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034856Z:883baca4-3f75-4149-88b5-88ad69ced73d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bbd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fe5345f6eac4152afc5bebfbda397e2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "934fb016-1c32-4a27-9964-f14d74139030", + "x-ms-client-request-id": "fe5345f6eac4152afc5bebfbda397e2a", + "x-ms-correlation-request-id": "a35b2818-d7c9-418c-aba5-9940ead84938", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-request-id": "5b76ea07-ae16-4708-8d0c-1f67418f2333", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034857Z:a35b2818-d7c9-418c-aba5-9940ead84938" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bbe-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ae4c8d3c740d203caffcc32afc8a5b16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff7b3a8f-496b-4603-a1aa-7405aac7d7b7", + "x-ms-client-request-id": "ae4c8d3c740d203caffcc32afc8a5b16", + "x-ms-correlation-request-id": "437e0146-de2b-4ce4-a33d-dbd59c2a4fdc", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-request-id": "c0193d0e-224c-42fd-b9c0-dccd992cf66f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034859Z:437e0146-de2b-4ce4-a33d-dbd59c2a4fdc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bbf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e8fa3c551e4a6bc72383b521af85a114", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:48:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b0493c1d-ddc2-482b-b625-0ef546f3b911", + "x-ms-client-request-id": "e8fa3c551e4a6bc72383b521af85a114", + "x-ms-correlation-request-id": "ee3f4f50-49e2-4d9b-b37b-a87aa70012df", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-request-id": "601c8dd5-2a3c-452e-9bec-38199e8bcdaf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034900Z:ee3f4f50-49e2-4d9b-b37b-a87aa70012df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bc0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "efdd5c3ad660812109324fc826001871", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ef55a21d-a895-48a9-94dd-ed6203565f0b", + "x-ms-client-request-id": "efdd5c3ad660812109324fc826001871", + "x-ms-correlation-request-id": "7fc80f3c-1dd9-4500-a689-9aa3d14c32f7", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-request-id": "b345a82a-1e91-4a44-ac77-3be7e3e97d30", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034901Z:7fc80f3c-1dd9-4500-a689-9aa3d14c32f7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bc1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9da6d4ff953f1ee0c6e08a8abf1a712a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "341903eb-9d2d-4f59-b4fa-b89d21f6bb33", + "x-ms-client-request-id": "9da6d4ff953f1ee0c6e08a8abf1a712a", + "x-ms-correlation-request-id": "f44d886a-b5fb-4980-b6f3-6ea5d6c607bd", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-request-id": "cdaf085c-88db-4f0f-985b-42d24e496f8d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034902Z:f44d886a-b5fb-4980-b6f3-6ea5d6c607bd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bc2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0efae5a6cad7fb51a78df17cefe4423", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a4f3e88-1413-47a6-8e26-86300728927a", + "x-ms-client-request-id": "a0efae5a6cad7fb51a78df17cefe4423", + "x-ms-correlation-request-id": "b420fb88-839e-406a-92c0-b146b3dd2ac3", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-request-id": "7d20ee56-996e-44f1-9bd6-e5e4a7a7a1c4", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034904Z:b420fb88-839e-406a-92c0-b146b3dd2ac3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bc3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "da22436a04dfa5d47bbf29804c97c2ee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "62f732be-d1f7-4a66-b709-44dbcd25280a", + "x-ms-client-request-id": "da22436a04dfa5d47bbf29804c97c2ee", + "x-ms-correlation-request-id": "51bfa2f4-3ed9-49f2-9302-9d56fd6e2c85", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-request-id": "4d7573fc-3897-4547-b753-ef9373719c22", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034909Z:51bfa2f4-3ed9-49f2-9302-9d56fd6e2c85" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bc4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "776e25c0781092c41f2682c7b5c84fc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "297c73fa-2e7f-4edf-93b7-4f6e87173bfb", + "x-ms-client-request-id": "776e25c0781092c41f2682c7b5c84fc7", + "x-ms-correlation-request-id": "110eadae-2528-4c25-af56-eef3de4e7315", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-request-id": "00a4a412-6003-4fbe-b519-e8f1f34f97fa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034910Z:110eadae-2528-4c25-af56-eef3de4e7315" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bc5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7b1f669b97f8564ad94a24ed43353383", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "df4d68a0-dff4-4977-b2bc-b39f6ebfb9f7", + "x-ms-client-request-id": "7b1f669b97f8564ad94a24ed43353383", + "x-ms-correlation-request-id": "de15c1e3-796d-48f7-9456-d554bc746866", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-request-id": "d698f49e-52ad-4d2a-b1d3-8fbbfa4d716f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034911Z:de15c1e3-796d-48f7-9456-d554bc746866" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bc6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a957f0b6cc90f2137f8fbab8810defb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30a7c432-68f3-4d95-93bb-6b58b3915aec", + "x-ms-client-request-id": "a957f0b6cc90f2137f8fbab8810defb2", + "x-ms-correlation-request-id": "635ddd2d-b3ab-43d5-b02a-9b024a145adf", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-request-id": "c71531b3-9a55-4e79-b3e4-ae3423a57e47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034913Z:635ddd2d-b3ab-43d5-b02a-9b024a145adf" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bc7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e5e46170477729f6da189dc653d64fe9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3ad70d3f-7dcf-4458-8958-762fa6054419", + "x-ms-client-request-id": "e5e46170477729f6da189dc653d64fe9", + "x-ms-correlation-request-id": "1d0a039b-1c37-4c95-a9b9-0641f90bdfde", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-request-id": "88bc80ca-c106-4994-ad38-2b610fb06405", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034914Z:1d0a039b-1c37-4c95-a9b9-0641f90bdfde" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bc8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c510fff3a571ce36532dfb69dc92d4cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "eace2ca5-2ae7-4256-addd-2487d6acfb33", + "x-ms-client-request-id": "c510fff3a571ce36532dfb69dc92d4cc", + "x-ms-correlation-request-id": "c4b84aa1-ae93-4861-b360-9078bd8d98f4", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-request-id": "6b693e24-927b-4c6b-825e-d5b9a3016888", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034915Z:c4b84aa1-ae93-4861-b360-9078bd8d98f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bc9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e17d715a4d516f0bfa2dcf782f4c9ea8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f1247160-6ff7-4d9c-8f82-7cb8ae77a256", + "x-ms-client-request-id": "e17d715a4d516f0bfa2dcf782f4c9ea8", + "x-ms-correlation-request-id": "1454440e-5b48-49b1-8f8a-090d485c8bf4", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-request-id": "922829e2-ed01-4f4f-a79e-eaa3ebdcbcef", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034916Z:1454440e-5b48-49b1-8f8a-090d485c8bf4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bca-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81c4d13f2afdca402b1592494b8c4d47", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "dec3ee9b-1aa4-4c36-8003-f17170465ece", + "x-ms-client-request-id": "81c4d13f2afdca402b1592494b8c4d47", + "x-ms-correlation-request-id": "06fb2ad1-1d4c-4888-999f-edd6af8e7423", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-request-id": "b50a1fa2-b85d-4907-81fc-5357afbf01ba", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034918Z:06fb2ad1-1d4c-4888-999f-edd6af8e7423" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bcb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e16bd1436d59a698f4a1cb44d5be9f06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "38381097-9cef-4b03-94c7-845f2b0b5b7e", + "x-ms-client-request-id": "e16bd1436d59a698f4a1cb44d5be9f06", + "x-ms-correlation-request-id": "6cf94241-9eae-4061-817d-7110d4678f64", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-request-id": "6a2b4d45-13a5-45aa-b943-9a324b2ce378", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034919Z:6cf94241-9eae-4061-817d-7110d4678f64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bcc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0b29538f53ce30cf31b3b63cbac1236d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e3f89930-26e8-462a-b227-c7b58ba8fc49", + "x-ms-client-request-id": "0b29538f53ce30cf31b3b63cbac1236d", + "x-ms-correlation-request-id": "ce495583-0b22-4a33-ac74-7c3d64a4ebfc", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-request-id": "7b3e6c07-c546-4ff3-8dc1-3fd6941068f7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034920Z:ce495583-0b22-4a33-ac74-7c3d64a4ebfc" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bcd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5d3587e0bce0d14f381d8d5b5ffcf46c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8dbce3e4-e1fc-4814-abf1-362f30a4b48e", + "x-ms-client-request-id": "5d3587e0bce0d14f381d8d5b5ffcf46c", + "x-ms-correlation-request-id": "df7d4903-3b52-4297-b6c1-b92ece23826d", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-request-id": "dc9bf5fb-db37-4d56-bd98-f8780cb61741", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034922Z:df7d4903-3b52-4297-b6c1-b92ece23826d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bce-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f7b98b754262f079023bb0a6b75ceb32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0fa29b4b-1c5e-474b-bce9-9d3cb32bb678", + "x-ms-client-request-id": "f7b98b754262f079023bb0a6b75ceb32", + "x-ms-correlation-request-id": "0e1c1ff3-b391-4460-8846-2db69fd84d79", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-request-id": "590a12ad-ec1c-4a7d-9be7-a2189e7fd2af", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034923Z:0e1c1ff3-b391-4460-8846-2db69fd84d79" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bcf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "4e645d7e4288d3250458d2b0c573d134", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6d262eb3-a754-440c-b434-73027e085e45", + "x-ms-client-request-id": "4e645d7e4288d3250458d2b0c573d134", + "x-ms-correlation-request-id": "e0d4361f-a3ad-4e0a-9d0e-6034fd826ec4", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-request-id": "a4b8cc1b-2be7-45e8-980b-cf5c11160ebf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034924Z:e0d4361f-a3ad-4e0a-9d0e-6034fd826ec4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bd0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "2fc749be2b089e0a0e455aa50ba81adc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5f65fce5-ff68-45c8-b605-97ac0dcc9fbf", + "x-ms-client-request-id": "2fc749be2b089e0a0e455aa50ba81adc", + "x-ms-correlation-request-id": "def91022-e110-4da4-9818-224e813bc079", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-request-id": "7436100d-1ef2-492c-bff5-2026db9f300b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034925Z:def91022-e110-4da4-9818-224e813bc079" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bd1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "01dd5b32a69833e366e6f30a6fc82a8e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "23c5237e-c2cb-4853-a123-7a777a088617", + "x-ms-client-request-id": "01dd5b32a69833e366e6f30a6fc82a8e", + "x-ms-correlation-request-id": "3078db7f-017c-446f-8fc3-9555a824aea5", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-request-id": "6ebf805c-63c4-4358-a7c6-380d4fc1b659", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034927Z:3078db7f-017c-446f-8fc3-9555a824aea5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bd2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6de77c69bc95522a52c63f43e780c75b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "daad7384-87ad-4c93-bfe1-9ce2e0be519d", + "x-ms-client-request-id": "6de77c69bc95522a52c63f43e780c75b", + "x-ms-correlation-request-id": "abe146db-d8a9-4739-8e02-0a79b8d2005b", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-request-id": "bc5ed10b-dc5e-4cef-a484-a4748e5d179f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034928Z:abe146db-d8a9-4739-8e02-0a79b8d2005b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bd3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6a7ef63ecf96179b6594c82138002e46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8e021944-fc87-4e28-bc1a-ff489176c735", + "x-ms-client-request-id": "6a7ef63ecf96179b6594c82138002e46", + "x-ms-correlation-request-id": "14cf2661-2922-417b-9f91-9110aeb66895", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-request-id": "b44a418e-206a-42cd-bc15-545318d1ef7a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034929Z:14cf2661-2922-417b-9f91-9110aeb66895" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bd4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8f3bcc1aacc17547318baed267a04be6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "34434f1d-e3f4-403a-8b34-a6db9defe176", + "x-ms-client-request-id": "8f3bcc1aacc17547318baed267a04be6", + "x-ms-correlation-request-id": "e5771aee-083d-4cc2-b68c-4bb68b0e52af", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-request-id": "f1fdb22c-268c-4abf-85c6-5d240e323ce0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034931Z:e5771aee-083d-4cc2-b68c-4bb68b0e52af" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bd5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "79cc981fc04a99f8e0d00700f3081952", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "538be8b8-3492-4603-9a89-5c74bbb1debd", + "x-ms-client-request-id": "79cc981fc04a99f8e0d00700f3081952", + "x-ms-correlation-request-id": "726ef55a-4fa0-438e-9a1f-579d123b4ddd", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-request-id": "7aa4ff74-61fe-4576-85c1-8f08536f0683", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034932Z:726ef55a-4fa0-438e-9a1f-579d123b4ddd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bd6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1b29f9973844919aae08380b21c9b0c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e2b37e57-9629-424c-bd4c-e95a5aa1babf", + "x-ms-client-request-id": "1b29f9973844919aae08380b21c9b0c5", + "x-ms-correlation-request-id": "acf01250-e569-4f74-b9a5-6ca1ddd84d9b", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-request-id": "4f3aef9b-e5dd-4f3e-a32d-a0eaf47df751", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034933Z:acf01250-e569-4f74-b9a5-6ca1ddd84d9b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bd7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a002e248b4335afcd4a1aef0a5468228", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "52a5c7e8-5a63-419b-8b9b-91a386084734", + "x-ms-client-request-id": "a002e248b4335afcd4a1aef0a5468228", + "x-ms-correlation-request-id": "598aba78-74d7-42ee-933c-baa9cd45d5df", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-request-id": "837cc666-b9a9-479a-8869-3977f62cd4dd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034934Z:598aba78-74d7-42ee-933c-baa9cd45d5df" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bd8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e3a5b713076e6a1fe3bcb4187ec7817", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da951212-0797-4021-9aea-565511bd4cee", + "x-ms-client-request-id": "6e3a5b713076e6a1fe3bcb4187ec7817", + "x-ms-correlation-request-id": "3c5da67b-75d4-464b-acea-ea4d8b659fc2", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-request-id": "c82daa6b-4f1d-45d9-8a53-bdea2e628a79", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034936Z:3c5da67b-75d4-464b-acea-ea4d8b659fc2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bd9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "10b8411f7906e31ffccf46a289a9ec68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a2686b92-36ca-4b70-b1dd-ea5e597e4583", + "x-ms-client-request-id": "10b8411f7906e31ffccf46a289a9ec68", + "x-ms-correlation-request-id": "d86a3d77-7bb6-4fc4-89c8-b7f2712c4c1b", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-request-id": "6c286337-ae60-4cd0-8d69-dcbb3489f311", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034937Z:d86a3d77-7bb6-4fc4-89c8-b7f2712c4c1b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bda-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c59a0f86418e174f411ba2f8e9bbd2e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ce2aa645-84a8-4560-af9d-57fee748c4f9", + "x-ms-client-request-id": "c59a0f86418e174f411ba2f8e9bbd2e7", + "x-ms-correlation-request-id": "0ccb612e-3d06-4311-ab66-5d9912c2d371", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-request-id": "0c78ce00-59f8-44de-8ef9-f9018acd8e40", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034938Z:0ccb612e-3d06-4311-ab66-5d9912c2d371" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bdb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "63d19729718df8223c5771a7e9fe5d54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8615a39d-bc3e-48c8-9b2b-f91491137b5f", + "x-ms-client-request-id": "63d19729718df8223c5771a7e9fe5d54", + "x-ms-correlation-request-id": "fd4ea78b-7e7a-415d-b16b-65b69658fad2", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-request-id": "95b56bd4-c736-4568-87fe-5a8ee3849c3f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034940Z:fd4ea78b-7e7a-415d-b16b-65b69658fad2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bdc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "77ba624fb352dd88f2a1cfead726f941", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "61460ede-5853-4324-a41b-76acd32ac5d1", + "x-ms-client-request-id": "77ba624fb352dd88f2a1cfead726f941", + "x-ms-correlation-request-id": "34a28bf9-ca4a-4e4b-9ac2-e3c389306c11", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-request-id": "ba05b425-a632-4184-8e9c-c71fadda2656", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034941Z:34a28bf9-ca4a-4e4b-9ac2-e3c389306c11" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bdd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f1795ffc88d815daeda18836d0a72e42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9c4be706-11fe-4b44-9512-e01934eb54ca", + "x-ms-client-request-id": "f1795ffc88d815daeda18836d0a72e42", + "x-ms-correlation-request-id": "578ad561-fab5-48bf-a219-150ec1fe7530", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-request-id": "8c4a3d93-8703-4086-8b8d-61555d7daec7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034942Z:578ad561-fab5-48bf-a219-150ec1fe7530" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bde-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "86a94dbe5a0075950ff370eca1372116", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2dbfb48c-5583-4769-8dc7-eb10264027f5", + "x-ms-client-request-id": "86a94dbe5a0075950ff370eca1372116", + "x-ms-correlation-request-id": "a063d503-1faa-4f6d-bee3-e3e06601e696", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-request-id": "973b127d-29aa-4454-9e7b-3c3228a4a0fd", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034944Z:a063d503-1faa-4f6d-bee3-e3e06601e696" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bdf-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8aaa2f5e6c85c67c88a48ab02a510d4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "106df918-3a23-4a87-a78d-d102bb273f9b", + "x-ms-client-request-id": "8aaa2f5e6c85c67c88a48ab02a510d4b", + "x-ms-correlation-request-id": "b85baa80-3120-4f9e-ad01-d776ab8944c8", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-request-id": "85e1d464-1734-4437-bb3c-0716c43021c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034945Z:b85baa80-3120-4f9e-ad01-d776ab8944c8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172be0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "892c8d73727da141ca03e2e518ed74b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8efa6f9a-9ad7-4965-9436-14abaabe1454", + "x-ms-client-request-id": "892c8d73727da141ca03e2e518ed74b5", + "x-ms-correlation-request-id": "b4abc712-2ede-455a-9b36-e256dac6c530", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-request-id": "e91f2af6-ec41-4e96-921b-90e07d91ff75", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034946Z:b4abc712-2ede-455a-9b36-e256dac6c530" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172be1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a0d87280a3fc52bdd0e2fe5bd0e44bbd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "641efcc9-4e3d-412c-b83e-3453f4d4a024", + "x-ms-client-request-id": "a0d87280a3fc52bdd0e2fe5bd0e44bbd", + "x-ms-correlation-request-id": "613e6130-f209-414a-a636-2bdae056de87", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-request-id": "2f968119-5db1-4791-9b68-b2e59f6665a2", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034947Z:613e6130-f209-414a-a636-2bdae056de87" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172be2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "147925e5970aeb99ee08c0818997ae9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7541e033-155c-4170-bab2-d1ce90e51ead", + "x-ms-client-request-id": "147925e5970aeb99ee08c0818997ae9a", + "x-ms-correlation-request-id": "5ff2b120-fbda-4e69-9523-6c8eb04eb948", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-request-id": "bb89f324-feaf-4203-bfbb-cd05c2f3a1a9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034949Z:5ff2b120-fbda-4e69-9523-6c8eb04eb948" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172be3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "b82fd4306d79cf4ecfdab89a74e5d1e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "439c5303-4c3a-4abe-afda-2099bf0e8bad", + "x-ms-client-request-id": "b82fd4306d79cf4ecfdab89a74e5d1e5", + "x-ms-correlation-request-id": "2afc14ca-9052-4dd9-98d0-a961f65bc632", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-request-id": "696b77d1-46fa-446b-bc15-c354e942876d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034950Z:2afc14ca-9052-4dd9-98d0-a961f65bc632" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172be4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f3ff24b86073e9aad8ecb1f3e33cc839", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "3a52ee2b-286f-4a36-bb0f-4ef0e0010eae", + "x-ms-client-request-id": "f3ff24b86073e9aad8ecb1f3e33cc839", + "x-ms-correlation-request-id": "4b2a8ba1-65f6-4f3a-b711-afdebb2bb412", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-request-id": "5dbb30cf-1371-40c7-917c-1a710f5bfb8f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034951Z:4b2a8ba1-65f6-4f3a-b711-afdebb2bb412" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172be5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc2b633492b57844d6aa4430deff7609", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9108a77-6e8d-4f41-ba68-3155dfba708a", + "x-ms-client-request-id": "fc2b633492b57844d6aa4430deff7609", + "x-ms-correlation-request-id": "9bc84e4e-bd5c-437e-8ecb-719542feef57", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-request-id": "c84991fd-df80-4af6-8d28-c897a80b57f6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034953Z:9bc84e4e-bd5c-437e-8ecb-719542feef57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172be6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "65c8da37bb97d0272945df8cbb5aeb93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "60e263a4-cd0f-4fcd-963a-65c1980491d4", + "x-ms-client-request-id": "65c8da37bb97d0272945df8cbb5aeb93", + "x-ms-correlation-request-id": "d07eff41-f488-4860-b4c7-8b037bbeb399", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-request-id": "4f2f3d30-bfb5-491f-aa81-06ea58c8aa62", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034954Z:d07eff41-f488-4860-b4c7-8b037bbeb399" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172be7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11657e12d4ba2630e0871cc91c7a0ad9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "89331795-9a79-4cb8-b393-bc4867302ef8", + "x-ms-client-request-id": "11657e12d4ba2630e0871cc91c7a0ad9", + "x-ms-correlation-request-id": "f741a0d4-3bf7-43af-b770-93cf3b5724e2", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-request-id": "67c9b287-3e73-4416-a7c5-d03fe35c917d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034956Z:f741a0d4-3bf7-43af-b770-93cf3b5724e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172be8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08bca876627479a23c5ad26fb2b7bc7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30dfda74-e13e-415b-aa2d-64ab15e37fdc", + "x-ms-client-request-id": "08bca876627479a23c5ad26fb2b7bc7c", + "x-ms-correlation-request-id": "d4d317f6-a696-48ea-b15d-f1e2d41e6cb3", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-request-id": "89a498c2-6368-488f-ab8b-2d49c06af815", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034957Z:d4d317f6-a696-48ea-b15d-f1e2d41e6cb3" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172be9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5f1db0be6599624faaa1850f9e5db4ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b908027b-caf3-437b-a38c-82ed849c7a63", + "x-ms-client-request-id": "5f1db0be6599624faaa1850f9e5db4ae", + "x-ms-correlation-request-id": "f6567011-434a-45d9-b9c4-2f04a59f073a", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-request-id": "e90fe973-786c-4788-8f65-e417bb0d2f47", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T034958Z:f6567011-434a-45d9-b9c4-2f04a59f073a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bea-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1216063be39eb01fdcebd55f02c07428", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:49:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b2424c1c-d014-4c4b-8886-1c289cb1ffd2", + "x-ms-client-request-id": "1216063be39eb01fdcebd55f02c07428", + "x-ms-correlation-request-id": "ee0a81b4-16f8-45fd-871c-771f0fece628", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-request-id": "4891eb90-bda5-4c2d-be04-1a96c77a0d44", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035000Z:ee0a81b4-16f8-45fd-871c-771f0fece628" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172beb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6b0a9fcaaa5d113f59595dd2dd92dade", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ff34268b-6338-4c0c-9986-9ef36311df5f", + "x-ms-client-request-id": "6b0a9fcaaa5d113f59595dd2dd92dade", + "x-ms-correlation-request-id": "ec805437-a742-4b4c-b27f-c95bc96f4474", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-request-id": "2b508bb9-95d0-48b6-b0fb-710a7710a582", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035001Z:ec805437-a742-4b4c-b27f-c95bc96f4474" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bec-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac3424a6aaa1dbdd906d83ae8fef60ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4e0dd416-dd13-4d42-af5a-b28e36365f8e", + "x-ms-client-request-id": "ac3424a6aaa1dbdd906d83ae8fef60ea", + "x-ms-correlation-request-id": "ccab37fc-d651-4a28-badc-3ea5eb5ce93e", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-request-id": "a84e8103-16f1-4a7a-9df4-cb3e584fd825", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035002Z:ccab37fc-d651-4a28-badc-3ea5eb5ce93e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bed-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ff455c2d48529051c605b945854cd24a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ffd1f87f-46c6-4bbb-a329-30b987a7521d", + "x-ms-client-request-id": "ff455c2d48529051c605b945854cd24a", + "x-ms-correlation-request-id": "3f9e0635-1beb-42a0-b462-6a80bb54e249", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-request-id": "830dd6d5-9e87-404a-9e73-2ceb0f68ff13", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035004Z:3f9e0635-1beb-42a0-b462-6a80bb54e249" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bee-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ddb8f610c88c2086c22fdaf027918169", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5466641b-36e0-42e2-aa8d-ddd14d230792", + "x-ms-client-request-id": "ddb8f610c88c2086c22fdaf027918169", + "x-ms-correlation-request-id": "6269febb-4baf-441d-b13f-446190c5fa1f", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-request-id": "01da8e11-a40e-4de4-80e6-9542fbb16dde", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035005Z:6269febb-4baf-441d-b13f-446190c5fa1f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bef-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80a573f8db4d5d8bd2a3e59cf0985643", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cf285bbc-24f1-413a-84c4-ef26c32a8bf5", + "x-ms-client-request-id": "80a573f8db4d5d8bd2a3e59cf0985643", + "x-ms-correlation-request-id": "e4be7c0f-56c5-4cb3-9d66-7c4cd3a01f64", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-request-id": "2bb0adb1-8298-4277-822d-c07daf731051", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035006Z:e4be7c0f-56c5-4cb3-9d66-7c4cd3a01f64" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bf0-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "989d389a8236655dd6243c236d616835", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ac1543dc-04d2-43e6-a996-9fcd2604388f", + "x-ms-client-request-id": "989d389a8236655dd6243c236d616835", + "x-ms-correlation-request-id": "a13ce3d2-9570-4c30-b577-9f6bdc685076", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-request-id": "b9bf8871-0743-4f4f-8419-0ff96d66f073", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035012Z:a13ce3d2-9570-4c30-b577-9f6bdc685076" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bf1-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "114c508352a735fd6b5b0ae8e2ea3029", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2aeeabf8-807a-48e5-88c2-225f5d2061dd", + "x-ms-client-request-id": "114c508352a735fd6b5b0ae8e2ea3029", + "x-ms-correlation-request-id": "6554a80b-9293-4613-9931-5777f8d512c9", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "309d50e0-6536-4be0-b27c-61badc0207cc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035014Z:6554a80b-9293-4613-9931-5777f8d512c9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bf2-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef5596d8e8f475321640aa289e68ef71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "13eea386-a2ae-4d86-b42f-139c5a6892a4", + "x-ms-client-request-id": "ef5596d8e8f475321640aa289e68ef71", + "x-ms-correlation-request-id": "7de21e49-c5d6-4b0c-82a7-c1b7bb56fd25", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "970c0a54-b23a-4e38-a696-1ed5aa289862", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035015Z:7de21e49-c5d6-4b0c-82a7-c1b7bb56fd25" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bf3-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a018b03b444b489c3b682ddb777482eb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "abe5b808-ca95-49b6-8f77-8beac7ba725a", + "x-ms-client-request-id": "a018b03b444b489c3b682ddb777482eb", + "x-ms-correlation-request-id": "50abb2e0-8699-4b14-a1f9-2132d59807fe", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "59fa8675-ab53-4cc3-b31f-0843f34b1c58", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035016Z:50abb2e0-8699-4b14-a1f9-2132d59807fe" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bf4-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d74a13f4790b9a411ed6fb67a7d49603", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "05005e9a-9b07-49ce-bcba-11612fd770d9", + "x-ms-client-request-id": "d74a13f4790b9a411ed6fb67a7d49603", + "x-ms-correlation-request-id": "5bcb640d-b11e-4ac3-9d38-14cd5aa50588", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "72416f58-87b8-4e95-8a87-8e3270011066", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035017Z:5bcb640d-b11e-4ac3-9d38-14cd5aa50588" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bf5-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "32ad996b8fd194defa0db38bbb56fea1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d998a0a3-20d0-42ad-8b0a-150221370098", + "x-ms-client-request-id": "32ad996b8fd194defa0db38bbb56fea1", + "x-ms-correlation-request-id": "59fbfa18-f2e7-47f8-aa98-dba0f752990e", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "09255f82-7062-4ce5-a4ec-9005f075936a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035019Z:59fbfa18-f2e7-47f8-aa98-dba0f752990e" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bf6-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8b33bebd181dc1666e7e81754934a066", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bf65d02c-36f4-426c-827e-cffa683939e3", + "x-ms-client-request-id": "8b33bebd181dc1666e7e81754934a066", + "x-ms-correlation-request-id": "f7e984eb-072e-46bc-b7e9-071c4c0d3a13", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "65d178e0-7957-4009-9b29-0e62e8552ec8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035020Z:f7e984eb-072e-46bc-b7e9-071c4c0d3a13" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bf7-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de6f2ad14fc6641a34b6dcfdc5b5dfc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "57794096-52a1-4549-b23f-d9d75f774af7", + "x-ms-client-request-id": "de6f2ad14fc6641a34b6dcfdc5b5dfc7", + "x-ms-correlation-request-id": "79612ac1-ec64-4862-9b44-26ed5cdbbfcd", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "7f086ac2-2b1f-4ca7-a1bf-b3bf094d0842", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035021Z:79612ac1-ec64-4862-9b44-26ed5cdbbfcd" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bf8-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9a959d80aa153e532ecc3530e684bc5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "75158c3a-b9e9-492d-8aa1-6ad727a69754", + "x-ms-client-request-id": "e9a959d80aa153e532ecc3530e684bc5", + "x-ms-correlation-request-id": "56b3be44-6892-43ad-bc63-333d0f398253", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "187decfc-6bc2-49e2-830b-ac4ed096dd53", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035023Z:56b3be44-6892-43ad-bc63-333d0f398253" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bf9-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "90ba4d6d1fe66ddba3ce56673b68fbb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "6cf727e0-62f0-4f10-9399-c5ce69ec6655", + "x-ms-client-request-id": "90ba4d6d1fe66ddba3ce56673b68fbb9", + "x-ms-correlation-request-id": "61ba6bd0-28bb-4d8c-a2f3-c24a459f0a72", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "5c1261e9-46b8-4cf4-921d-84a646e46e25", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035024Z:61ba6bd0-28bb-4d8c-a2f3-c24a459f0a72" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bfa-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ef9cba9eb68ac7c5441cabda8bc756cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "84d87c39-68a6-4591-ba34-5788725f019e", + "x-ms-client-request-id": "ef9cba9eb68ac7c5441cabda8bc756cc", + "x-ms-correlation-request-id": "5461582d-f96a-43ba-8a57-4a804dc14379", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "2c373259-6f00-467b-b462-793f33e24ae5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035025Z:5461582d-f96a-43ba-8a57-4a804dc14379" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bfb-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7890176b4efbb8e17e3c45d2b37e17ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a4f20a85-4996-49e0-be03-d3cefc12cebf", + "x-ms-client-request-id": "7890176b4efbb8e17e3c45d2b37e17ca", + "x-ms-correlation-request-id": "924fad32-4429-432b-af8a-2c4f20637e23", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "11a9c2bf-3de6-4b2c-ab55-9b36915c8196", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035026Z:924fad32-4429-432b-af8a-2c4f20637e23" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bfc-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "53b40af05bccb63a87f34cc97300e1db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "31bb1e3e-f11a-40e5-a757-88359446578b", + "x-ms-client-request-id": "53b40af05bccb63a87f34cc97300e1db", + "x-ms-correlation-request-id": "8325ea4e-93de-4d9c-8d82-45b2ddc190d2", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "4631b660-1059-45f0-b892-ec09d9aaba4b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035028Z:8325ea4e-93de-4d9c-8d82-45b2ddc190d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bfd-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "24fc8a7883d74fbed9e3704e70f313c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c453c7db-a979-4821-9d4a-99ad0f29d0b2", + "x-ms-client-request-id": "24fc8a7883d74fbed9e3704e70f313c6", + "x-ms-correlation-request-id": "e96ff92b-6903-4877-8212-4dc559c23054", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "0042802e-a8de-4ad8-8bb0-d69ec8f9709e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035029Z:e96ff92b-6903-4877-8212-4dc559c23054" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bfe-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "81eae10502130fffdcd9f1080217447d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0e1a12c3-cc95-4603-bfc0-e6cd6575d761", + "x-ms-client-request-id": "81eae10502130fffdcd9f1080217447d", + "x-ms-correlation-request-id": "c8f43e20-7e21-4612-bfc9-5b3a091960de", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "40534e74-c125-49ea-a5eb-270aa632766f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035030Z:c8f43e20-7e21-4612-bfc9-5b3a091960de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172bff-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "28596a5af2816df24c647ae8ebeb4594", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "26a8c187-eb72-41bd-a5bd-199bac7d4fbe", + "x-ms-client-request-id": "28596a5af2816df24c647ae8ebeb4594", + "x-ms-correlation-request-id": "c346d7a1-7c05-4c5e-9df7-e963546e5582", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "255aaff1-13b5-473f-8e5a-d1aca8298ed8", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035031Z:c346d7a1-7c05-4c5e-9df7-e963546e5582" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c00-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92c485df601675c88bed48fe92b54dc1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fc8f62e2-9f19-471c-9826-1a64c5c57581", + "x-ms-client-request-id": "92c485df601675c88bed48fe92b54dc1", + "x-ms-correlation-request-id": "5d338794-4eca-4caf-8d8d-4bb4d67ae19b", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "9b369f01-1cd0-40ab-b2e9-85cf71d9c2c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035033Z:5d338794-4eca-4caf-8d8d-4bb4d67ae19b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c01-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "06f3f29fea991344ee7c34ae871724f0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "97dbb4c1-f113-4a38-9ff2-7464ab018aca", + "x-ms-client-request-id": "06f3f29fea991344ee7c34ae871724f0", + "x-ms-correlation-request-id": "df3eb8a6-96b4-41e8-b035-561f5bce811a", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "225571ff-6196-4c75-a870-b8f4de82f822", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035034Z:df3eb8a6-96b4-41e8-b035-561f5bce811a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c02-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7d285c93b253fa67a1e49d94aaf4db96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "077941d4-9c14-40f4-982f-58cc7e37673d", + "x-ms-client-request-id": "7d285c93b253fa67a1e49d94aaf4db96", + "x-ms-correlation-request-id": "a4600515-107c-4757-aaed-32be792d7d34", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "f7ccbe93-4767-408d-a732-4c9170aaada9", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035035Z:a4600515-107c-4757-aaed-32be792d7d34" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c03-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f849b8173ff8f5fb41b0a3992b1aed73", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "c4b1053f-443e-4002-866b-9c70805d40d0", + "x-ms-client-request-id": "f849b8173ff8f5fb41b0a3992b1aed73", + "x-ms-correlation-request-id": "0d71726a-9c7e-4eeb-a2dd-64738c28715f", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "8873349a-b68a-46b1-bb8f-aaca14760970", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035037Z:0d71726a-9c7e-4eeb-a2dd-64738c28715f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c04-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "356a57c8cf8dec6e8bf964b54caf68fa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1ed3059c-0beb-4388-94eb-a95848cfca66", + "x-ms-client-request-id": "356a57c8cf8dec6e8bf964b54caf68fa", + "x-ms-correlation-request-id": "3c6d5ed5-00c0-4edb-8b96-86828b1dc169", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "1cd42cde-b0e9-4c2d-95bc-17883eb42ad5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035038Z:3c6d5ed5-00c0-4edb-8b96-86828b1dc169" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c05-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cf969ea12cce54f861333ca20ecdce87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b8bd057f-56a5-4b66-a0ed-23542deea82e", + "x-ms-client-request-id": "cf969ea12cce54f861333ca20ecdce87", + "x-ms-correlation-request-id": "255ff6b0-ece6-41bc-9088-a302adf3034b", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "325571d2-e74a-430a-a653-a2f0d196066d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035039Z:255ff6b0-ece6-41bc-9088-a302adf3034b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c06-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "52cb2af6a58a48094a5c6cfeda46a891", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1d155ef3-c070-4724-b178-261e59717eed", + "x-ms-client-request-id": "52cb2af6a58a48094a5c6cfeda46a891", + "x-ms-correlation-request-id": "c8e84f69-081a-431e-8874-910ab5976365", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "dc5c1719-bf3b-4a8d-ba0a-b1f749cfd317", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035040Z:c8e84f69-081a-431e-8874-910ab5976365" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c07-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8df7a9481e839ca55e15d45993ccddbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7e9092a0-d82a-40ff-bf56-9ae33e4e4342", + "x-ms-client-request-id": "8df7a9481e839ca55e15d45993ccddbe", + "x-ms-correlation-request-id": "0a48cc8f-8ce2-444c-be1e-3b26eef14559", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "b19c42a3-c8ef-4367-acc7-345a2f712d42", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035042Z:0a48cc8f-8ce2-444c-be1e-3b26eef14559" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c08-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "22bedd2a15e3fc6f944e8471bffa7a1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "873722e3-66e6-4737-8953-574a7dd8f2f4", + "x-ms-client-request-id": "22bedd2a15e3fc6f944e8471bffa7a1a", + "x-ms-correlation-request-id": "54e770cf-1cd6-46ae-87c3-db24729adcf6", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "bcfac527-3e91-431c-8264-5eea260d7d9b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035043Z:54e770cf-1cd6-46ae-87c3-db24729adcf6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c09-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6559aa8b41d5d703842ff474d0afb47d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "35f80a91-7ca8-439b-a444-0009f89ca30f", + "x-ms-client-request-id": "6559aa8b41d5d703842ff474d0afb47d", + "x-ms-correlation-request-id": "4689671e-cace-4028-810f-646996646320", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "1e520907-2467-46b8-9873-f23567ea0171", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035044Z:4689671e-cace-4028-810f-646996646320" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c0a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fcd3ae7e858732ad39fbf8359934dd64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0a60d981-500b-4a57-bce4-3f6896940af0", + "x-ms-client-request-id": "fcd3ae7e858732ad39fbf8359934dd64", + "x-ms-correlation-request-id": "bae47cff-973c-4cc5-adb8-8f69204cf287", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "e57c0dff-3f81-4280-84cd-a62f5fc4bef1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035046Z:bae47cff-973c-4cc5-adb8-8f69204cf287" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c0b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e9ceb99b7872e9e8dae79eb421fa2be5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "da946a52-46ff-4eb6-ab54-d2f114c9e57c", + "x-ms-client-request-id": "e9ceb99b7872e9e8dae79eb421fa2be5", + "x-ms-correlation-request-id": "092be2c4-9931-43d7-b526-39f700e80e49", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "9723e4fa-f18f-410a-8839-4f5df0b0657f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035047Z:092be2c4-9931-43d7-b526-39f700e80e49" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/02d24a86-f896-4a8d-9377-8e7ef7b34b21?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c0c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "11f2069a7d260593fd272bd949cd3d50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a384c920-2f2f-4bc4-b471-b787ab71d7c1", + "x-ms-client-request-id": "11f2069a7d260593fd272bd949cd3d50", + "x-ms-correlation-request-id": "fb0997d6-dd6b-43b6-b2de-83444b19c584", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "c215f5f7-050a-4d55-a3dc-208ae7a28d7b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035049Z:fb0997d6-dd6b-43b6-b2de-83444b19c584" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c0d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "17d98f51cbe0050bc6ea22a0e7f9113f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2418", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "258df156-8488-4b2d-8135-789e549f70ca", + "x-ms-client-request-id": "17d98f51cbe0050bc6ea22a0e7f9113f", + "x-ms-correlation-request-id": "3c690b5b-d3fb-4658-a423-5c16b1ea386c", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "7effa12e-3770-464f-b61b-f410f3ae2b98", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035050Z:3c690b5b-d3fb-4658-a423-5c16b1ea386c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3030\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f6893123-2143-4c70-bcb1-5adf1a5514c9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002299642fa7-daaa-4342-84cd-fa4e8b7a720f\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9214\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030/ipConfigurations/azsmnet9214\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f6893123-2143-4c70-bcb1-5adf1a5514c9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.55.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030/ipConfigurations/azsmnet9214\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.55.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.156.72.130\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|67172c0e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "939b12d0cc411e3d26c9ec4b4d0ea00c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2412", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b895241c-12a6-4429-b151-f9e18d7cb552", + "x-ms-client-request-id": "939b12d0cc411e3d26c9ec4b4d0ea00c", + "x-ms-correlation-request-id": "79a6e037-2c0a-4d91-9737-3868b810885f", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "311059b9-6c9d-4baf-8659-88045004f484", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035050Z:79a6e037-2c0a-4d91-9737-3868b810885f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet6086\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022879df31e-1b41-425c-928a-a542a775c463\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002213b44b85-f79d-4d90-88c2-0e52c7ca6fd7\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet705\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086/ipConfigurations/azsmnet705\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022879df31e-1b41-425c-928a-a542a775c463\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.54.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086/ipConfigurations/azsmnet705\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.54.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002223.100.29.26\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|67172c0f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "92624ea91421cf04fbec4b3c5af31d04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2418", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a11bed39-03e7-499a-b901-0cf1d801cdcc", + "x-ms-client-request-id": "92624ea91421cf04fbec4b3c5af31d04", + "x-ms-correlation-request-id": "6cdc3e97-593c-4625-8a4b-241bc718e086", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "e89eb1fa-fa25-40ea-bec9-9cb471b931c7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035050Z:6cdc3e97-593c-4625-8a4b-241bc718e086" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022azsmnet3030\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f6893123-2143-4c70-bcb1-5adf1a5514c9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {\r\n", + " \u0022key\u0022: \u0022value\u0022\r\n", + " },\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u002299642fa7-daaa-4342-84cd-fa4e8b7a720f\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022enablePrivateIpAddress\u0022: false,\r\n", + " \u0022ipConfigurations\u0022: [\r\n", + " {\r\n", + " \u0022name\u0022: \u0022azsmnet9214\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030/ipConfigurations/azsmnet9214\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022f6893123-2143-4c70-bcb1-5adf1a5514c9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworkGateways/ipConfigurations\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022privateIPAllocationMethod\u0022: \u0022Dynamic\u0022,\r\n", + " \u0022publicIPAddress\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028\u0022\r\n", + " },\r\n", + " \u0022subnet\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128/subnets/GatewaySubnet\u0022\r\n", + " }\r\n", + " }\r\n", + " }\r\n", + " ],\r\n", + " \u0022natRules\u0022: [],\r\n", + " \u0022enableBgpRouteTranslationForNat\u0022: false,\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022tier\u0022: \u0022VpnGw1\u0022,\r\n", + " \u0022capacity\u0022: 2\r\n", + " },\r\n", + " \u0022gatewayType\u0022: \u0022Vpn\u0022,\r\n", + " \u0022vpnType\u0022: \u0022RouteBased\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022activeActive\u0022: false,\r\n", + " \u0022bgpSettings\u0022: {\r\n", + " \u0022asn\u0022: 65515,\r\n", + " \u0022bgpPeeringAddress\u0022: \u002210.55.0.254\u0022,\r\n", + " \u0022peerWeight\u0022: 0,\r\n", + " \u0022bgpPeeringAddresses\u0022: [\r\n", + " {\r\n", + " \u0022ipconfigurationId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030/ipConfigurations/azsmnet9214\u0022,\r\n", + " \u0022defaultBgpIpAddresses\u0022: [\r\n", + " \u002210.55.0.254\u0022\r\n", + " ],\r\n", + " \u0022customBgpIpAddresses\u0022: [],\r\n", + " \u0022tunnelIpAddresses\u0022: [\r\n", + " \u002252.156.72.130\u0022\r\n", + " ]\r\n", + " }\r\n", + " ]\r\n", + " },\r\n", + " \u0022vpnGatewayGeneration\u0022: \u0022Generation1\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/connections/V1toV22035?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "2919", + "Content-Type": "application/json", + "Request-Id": "|67172c10-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "323609ec0eaa5185bbf017dfc0b8b749", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "eastus", + "id": null, + "properties": { + "virtualNetworkGateway1": { + "location": "eastus", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet705", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086/ipConfigurations/azsmnet705", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.54.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086/ipConfigurations/azsmnet705", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "virtualNetworkGateway2": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet9214", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030/ipConfigurations/azsmnet9214", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.55.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030/ipConfigurations/azsmnet9214", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "connectionType": "Vnet2Vnet", + "routingWeight": 3, + "sharedKey": "abc123" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1323", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4b39a870-0b9b-41de-891b-0ac735083b5d", + "x-ms-client-request-id": "323609ec0eaa5185bbf017dfc0b8b749", + "x-ms-correlation-request-id": "111a7ac3-3124-4eb5-8710-78df91288061", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "e2b6d6b9-a29d-49e6-a3be-21a6253ff33b", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035058Z:111a7ac3-3124-4eb5-8710-78df91288061" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022V1toV22035\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/connections/V1toV22035\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022261e3cf8-9e39-4773-b01f-66c3d0d53a43\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022ea54c1c0-a3ff-4cc5-8a05-b598513e67cf\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086\u0022\r\n", + " },\r\n", + " \u0022virtualNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022Vnet2Vnet\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc123\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c11-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "056134e7d96a3fffdd406623ecf03a34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:50:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ec576f5e-4eb2-4b28-a498-e69054dd11f9", + "x-ms-client-request-id": "056134e7d96a3fffdd406623ecf03a34", + "x-ms-correlation-request-id": "d5cdb7ee-8fb4-475c-9738-85574f71c85c", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "3f0a2b0e-9507-4337-94fd-8bb97736a854", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035059Z:d5cdb7ee-8fb4-475c-9738-85574f71c85c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c12-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fc43f2936d84ce974d276512b90450f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "9b5b5900-47bd-45ee-a435-a5ab3cc8d24a", + "x-ms-client-request-id": "fc43f2936d84ce974d276512b90450f7", + "x-ms-correlation-request-id": "f8df2b07-ec15-4d69-b7bd-cb6380720ae5", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "6ca1c343-e313-469c-8b33-5d6e958dd085", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035100Z:f8df2b07-ec15-4d69-b7bd-cb6380720ae5" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c13-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8bf76cbdb2573cdff759b83eb79921dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "e13e9727-c4e3-4590-8957-daba78f96c8b", + "x-ms-client-request-id": "8bf76cbdb2573cdff759b83eb79921dc", + "x-ms-correlation-request-id": "1f065247-baef-4fce-8f81-010e14310f96", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "6f821c22-aa0d-4798-840d-f61a85114fab", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035102Z:1f065247-baef-4fce-8f81-010e14310f96" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c14-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "0eed205c378079279d93b84273ec86d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "65841695-72d2-4263-aa3f-c4c955c61922", + "x-ms-client-request-id": "0eed205c378079279d93b84273ec86d9", + "x-ms-correlation-request-id": "51dd851b-6ed1-40fd-af13-f8cef11f17d2", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "3f0e5b5c-b8f4-498c-aa68-7989d24eee09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035103Z:51dd851b-6ed1-40fd-af13-f8cef11f17d2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c15-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "80656ef0aff8e1dd1206042ab55816b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7545bc08-c24a-4f2e-8067-95915d9ee89c", + "x-ms-client-request-id": "80656ef0aff8e1dd1206042ab55816b3", + "x-ms-correlation-request-id": "a828a193-7fc3-4f32-bfc1-5048e02396ac", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "5d5a5053-1bf6-4fdb-9b17-8f6c1fa4d99f", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035105Z:a828a193-7fc3-4f32-bfc1-5048e02396ac" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c16-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "98b5890541168676457dedc3fa9dc80b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "28c3908b-a26e-4555-86ee-4c894534111a", + "x-ms-client-request-id": "98b5890541168676457dedc3fa9dc80b", + "x-ms-correlation-request-id": "b7f61837-d681-47df-84ce-e50ebc368f1c", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "9ebfcb36-7c6f-44a0-9546-6377c1a9d69e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035106Z:b7f61837-d681-47df-84ce-e50ebc368f1c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c17-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "484edfd3a133ade3430cfb7a32fcc444", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92f28924-1ebc-4cc4-aa89-b5bf55a78c72", + "x-ms-client-request-id": "484edfd3a133ade3430cfb7a32fcc444", + "x-ms-correlation-request-id": "cd92b392-2998-4e29-96fa-c85999f2be01", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "2d698a19-2eee-477e-8182-102725703579", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035107Z:cd92b392-2998-4e29-96fa-c85999f2be01" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c18-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ea3c047ced36aec2f8df3a7bc119e775", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8f26a5f8-eb6f-440c-8214-2f678d0c7c43", + "x-ms-client-request-id": "ea3c047ced36aec2f8df3a7bc119e775", + "x-ms-correlation-request-id": "eb245a58-78e4-4499-b0de-59eabca849e2", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "35f1631f-84f4-401f-8213-64831ab6df12", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035109Z:eb245a58-78e4-4499-b0de-59eabca849e2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c19-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d556f93dce0a6480a608540a45fc5448", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "bfb4d630-d36a-4587-8300-98686784dabe", + "x-ms-client-request-id": "d556f93dce0a6480a608540a45fc5448", + "x-ms-correlation-request-id": "3821f908-aa99-47f0-98ad-954e54ba357f", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "74ecc21a-4554-44f0-b5d7-b821b5792d32", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035110Z:3821f908-aa99-47f0-98ad-954e54ba357f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c1a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "f647a8b8de60e5d51c9f50546667ec2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4f25e625-edab-4162-937c-2ce2d16de616", + "x-ms-client-request-id": "f647a8b8de60e5d51c9f50546667ec2a", + "x-ms-correlation-request-id": "387a5da0-7512-49f0-9fbe-492f32300c7f", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "3bb1530b-09d4-4fab-96c7-c2d8ffce5363", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035112Z:387a5da0-7512-49f0-9fbe-492f32300c7f" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c1b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "393c8625eea5ae3a83d8442e99b869fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1fc81ac0-38f0-4f89-97bc-dc1bd82a2911", + "x-ms-client-request-id": "393c8625eea5ae3a83d8442e99b869fb", + "x-ms-correlation-request-id": "15934d9d-d9bb-4c01-b432-88af09316c6d", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "4a640b18-2209-4035-8949-a91a73358a99", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035113Z:15934d9d-d9bb-4c01-b432-88af09316c6d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c1c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18c3f28bf1d15e142471b86b7d2cfd3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "21e219b8-d007-4737-a4d5-2c85b852c0fd", + "x-ms-client-request-id": "18c3f28bf1d15e142471b86b7d2cfd3e", + "x-ms-correlation-request-id": "84305089-25ed-4f60-b05f-64a8356de3a6", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "4b8c55d5-a7c6-40bd-bf60-9ae18a4bd21e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035114Z:84305089-25ed-4f60-b05f-64a8356de3a6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c1d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bfe52a1b1ac0c9a26e9972889aa64c64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "58d18754-93a1-4634-b567-66195f44ef6a", + "x-ms-client-request-id": "bfe52a1b1ac0c9a26e9972889aa64c64", + "x-ms-correlation-request-id": "56b3a7c1-7a90-452f-882c-750d18efa533", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "d2de2454-ae23-40d5-b666-7bf964b7b8d0", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035116Z:56b3a7c1-7a90-452f-882c-750d18efa533" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c1e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "74c85435d3a4345871dd153435ce3057", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "985f9d00-b15f-47bc-9d79-53b18ea277a3", + "x-ms-client-request-id": "74c85435d3a4345871dd153435ce3057", + "x-ms-correlation-request-id": "e93f91e8-1b73-411e-b832-5d5fa2115cf2", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "f45005f0-1468-4f26-88b7-6f342321a9bf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035117Z:e93f91e8-1b73-411e-b832-5d5fa2115cf2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c1f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "6e1205daa9d2703b4ff9a9387e8cc47d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2ad5dcc5-2b29-4afe-9229-fd69e61a9af0", + "x-ms-client-request-id": "6e1205daa9d2703b4ff9a9387e8cc47d", + "x-ms-correlation-request-id": "a924b03d-a1f2-414b-9f89-854899a75bc9", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "d557b9fb-52f8-4881-91df-cb639d4806fc", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035118Z:a924b03d-a1f2-414b-9f89-854899a75bc9" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/e2b6d6b9-a29d-49e6-a3be-21a6253ff33b?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c20-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "293554248963479ad1b14ee2056e949f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ea8d6b6-ed45-480b-87d3-5a7e04ee6451", + "x-ms-client-request-id": "293554248963479ad1b14ee2056e949f", + "x-ms-correlation-request-id": "9d4bdc82-f4e5-4c9d-8da5-e55e9e57324c", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "0345d201-0bb7-45e5-b119-71ba57fbca17", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035141Z:9d4bdc82-f4e5-4c9d-8da5-e55e9e57324c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/connections/V1toV22035?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c21-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "94ae1a69dd948c91185825aa2a20b5e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1360", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "55183584-abf0-488d-9e4c-a90bfaf68d86", + "x-ms-client-request-id": "94ae1a69dd948c91185825aa2a20b5e4", + "x-ms-correlation-request-id": "29add880-d1d1-46b2-a4c2-1a41fd249aee", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "c1019138-3c21-4b63-91a7-2632d5726d55", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035142Z:29add880-d1d1-46b2-a4c2-1a41fd249aee" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022V1toV22035\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/connections/V1toV22035\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002207fadc90-5e95-4598-b528-80d95a5d6a78\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022ea54c1c0-a3ff-4cc5-8a05-b598513e67cf\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086\u0022\r\n", + " },\r\n", + " \u0022virtualNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022Vnet2Vnet\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc123\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/connections/V1toV22035?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|67172c22-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "e1109719069950f36bca9d215b596ae0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1360", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:51:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f5cfd566-2220-4482-aa43-71f59ec46c4b", + "x-ms-client-request-id": "e1109719069950f36bca9d215b596ae0", + "x-ms-correlation-request-id": "dae444b2-83ad-459e-a0c1-2cae33f8cad1", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "56c0034c-6078-4b6d-86e4-283cb78c5daa", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035143Z:dae444b2-83ad-459e-a0c1-2cae33f8cad1" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022V1toV22035\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/connections/V1toV22035\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u002207fadc90-5e95-4598-b528-80d95a5d6a78\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022eastus\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u0022ea54c1c0-a3ff-4cc5-8a05-b598513e67cf\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086\u0022\r\n", + " },\r\n", + " \u0022virtualNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022Vnet2Vnet\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc123\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/connections/V2toV13512?api-version=2021-02-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "2920", + "Content-Type": "application/json", + "Request-Id": "|67172c23-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "de64cf0ae82fc246a9100b64ef1db0fb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "id": null, + "properties": { + "virtualNetworkGateway1": { + "location": "westus2", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet9214", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030/ipConfigurations/azsmnet9214", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworks/azsmnet5128/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/publicIPAddresses/azsmnet5028" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.55.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030/ipConfigurations/azsmnet9214", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "virtualNetworkGateway2": { + "location": "eastus", + "tags": { + "key": "value" + }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086", + "properties": { + "ipConfigurations": [ + { + "name": "azsmnet705", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086/ipConfigurations/azsmnet705", + "properties": { + "privateIPAllocationMethod": "Dynamic", + "subnet": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworks/azsmnet276/subnets/GatewaySubnet" + }, + "publicIPAddress": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/publicIPAddresses/azsmnet3921" + } + } + } + ], + "gatewayType": "Vpn", + "vpnType": "RouteBased", + "vpnGatewayGeneration": "Generation1", + "enableBgp": false, + "enablePrivateIpAddress": false, + "activeActive": false, + "sku": { + "name": "VpnGw1", + "tier": "VpnGw1" + }, + "bgpSettings": { + "asn": 65515, + "bgpPeeringAddress": "10.54.0.254", + "peerWeight": 0, + "bgpPeeringAddresses": [ + { + "ipconfigurationId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086/ipConfigurations/azsmnet705", + "customBgpIpAddresses": [] + } + ] + }, + "natRules": [], + "enableBgpRouteTranslationForNat": false + } + }, + "connectionType": "Vnet2Vnet", + "routingWeight": 3, + "sharedKey": "abc123" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "Cache-Control": "no-cache", + "Content-Length": "1324", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "06f16179-34fe-4476-9a8b-7c55166ee10f", + "x-ms-client-request-id": "de64cf0ae82fc246a9100b64ef1db0fb", + "x-ms-correlation-request-id": "05395ec5-fc9d-47c8-b8e2-d8c4ff198e57", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "762d5383-6be1-4838-acf9-61470b3be7f1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035201Z:05395ec5-fc9d-47c8-b8e2-d8c4ff198e57" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022V2toV13512\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/connections/V2toV13512\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022b6bb6f61-cc7c-44cf-b567-9725e94efa8f\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00222178c555-0b0f-49ab-ad12-27b259d79adf\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030\u0022\r\n", + " },\r\n", + " \u0022virtualNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022Vnet2Vnet\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc123\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c24-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "512045440651afe9c91feff6e8ec7cac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c487ac1-07ea-4a4f-86f5-c324211b4281", + "x-ms-client-request-id": "512045440651afe9c91feff6e8ec7cac", + "x-ms-correlation-request-id": "019efbaa-5e4a-4413-a34c-92f07009eaf4", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "9118c24e-662a-4029-b6f1-2af9bf87da45", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035201Z:019efbaa-5e4a-4413-a34c-92f07009eaf4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c25-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8ff126ec83fc03b26c3d80061f065278", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "530c967b-aea9-4cd9-96ce-738fbb71c63c", + "x-ms-client-request-id": "8ff126ec83fc03b26c3d80061f065278", + "x-ms-correlation-request-id": "34025eed-6eee-4ed6-b583-5fa026f302f6", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "2607c80c-8e21-4cd2-a175-4f1dc21b410c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035203Z:34025eed-6eee-4ed6-b583-5fa026f302f6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c26-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a91f1d515efd63aae0be9493166b3d70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "20", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "aeda9a55-bec3-4363-9859-8377bcc1a586", + "x-ms-client-request-id": "a91f1d515efd63aae0be9493166b3d70", + "x-ms-correlation-request-id": "8bca5b65-ffe0-497e-9633-cc9abf41296d", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "addc5f1b-edac-4dbb-841f-fe9e38dc3a09", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035204Z:8bca5b65-ffe0-497e-9633-cc9abf41296d" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c27-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "49531cac2f3ec1f1921ce41385e28fc3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8ba49a21-ddab-48f6-b7d0-b774a0811ebd", + "x-ms-client-request-id": "49531cac2f3ec1f1921ce41385e28fc3", + "x-ms-correlation-request-id": "fc431730-773f-4f58-aaf3-904ee407cee2", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "1043394c-d455-4bf8-89db-68bf44b7e1fb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035205Z:fc431730-773f-4f58-aaf3-904ee407cee2" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c28-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "cba477ccd3cc8eaf7b8eaf3dee1fed00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "40", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a5fdaa3c-14a5-41c5-93ba-f014ae3ac111", + "x-ms-client-request-id": "cba477ccd3cc8eaf7b8eaf3dee1fed00", + "x-ms-correlation-request-id": "6a48af9c-d1e7-4af5-8da0-799f501f24bb", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "c6a4c149-4062-4c6b-a578-53a5d45c7673", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035207Z:6a48af9c-d1e7-4af5-8da0-799f501f24bb" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c29-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "025a10ff08b221392c5e16e17996ddfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "4406ddd8-c6b8-4fb5-9a54-ef69cde95374", + "x-ms-client-request-id": "025a10ff08b221392c5e16e17996ddfd", + "x-ms-correlation-request-id": "88aaa382-5e97-4c24-ac85-6e027d56bd52", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "95db575c-3e5a-48e8-bb67-1b58f341104e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035208Z:88aaa382-5e97-4c24-ac85-6e027d56bd52" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c2a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "9fc6d02e72c7d9a36dc4ceb080b3d273", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "80", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ed11c591-7425-435c-9454-0bd490f5e477", + "x-ms-client-request-id": "9fc6d02e72c7d9a36dc4ceb080b3d273", + "x-ms-correlation-request-id": "067d3465-6e7c-440e-a8c7-2990503cd5de", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "166ededb-2a2e-4459-a46e-b390771dd394", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035209Z:067d3465-6e7c-440e-a8c7-2990503cd5de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c2b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7514e42f8d88c3103d839f6ebcce14e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2d67741-c731-4a87-bf2b-a8916393dd38", + "x-ms-client-request-id": "7514e42f8d88c3103d839f6ebcce14e4", + "x-ms-correlation-request-id": "3573bb33-5d25-4e7d-9b29-24e80f9137c0", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "b1a7b8f7-2ff0-491f-aeb5-527dd72de75c", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035210Z:3573bb33-5d25-4e7d-9b29-24e80f9137c0" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c2c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "1e0fb1b04d588d396c8094ed3a89a179", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "160", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "de92fc5b-b5f4-4656-9524-360b534e32ed", + "x-ms-client-request-id": "1e0fb1b04d588d396c8094ed3a89a179", + "x-ms-correlation-request-id": "3f51fa7f-ccc7-4a39-8a3d-c338a881f46b", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "f7f03a79-d4a3-4dee-89f8-2da5cb1bf159", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035212Z:3f51fa7f-ccc7-4a39-8a3d-c338a881f46b" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c2d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "95b1a38c6882a175c0026243d2351d9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa7b167c-945b-437e-a638-758afbe59cf5", + "x-ms-client-request-id": "95b1a38c6882a175c0026243d2351d9f", + "x-ms-correlation-request-id": "33bbaaba-88a4-429d-8672-7bbf07f060c6", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "22270551-eb36-4ff6-b47c-e3adea8d9f96", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035213Z:33bbaaba-88a4-429d-8672-7bbf07f060c6" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c2e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ceffe9b0b4a3e11aaa860907f82289b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ba3f3a9c-f966-4a86-a096-a3e45f461895", + "x-ms-client-request-id": "ceffe9b0b4a3e11aaa860907f82289b4", + "x-ms-correlation-request-id": "560cc7bc-f86a-4bf0-9ce9-1a368850a9b8", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "2d772b9b-d159-440c-a4de-54ec2ef4f681", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035214Z:560cc7bc-f86a-4bf0-9ce9-1a368850a9b8" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c2f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18e226e27e1c48623c6e5e56ebf6ba36", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d0a5c713-cb48-4b3b-9c31-1287fdaf3a04", + "x-ms-client-request-id": "18e226e27e1c48623c6e5e56ebf6ba36", + "x-ms-correlation-request-id": "a751f7bd-8456-4355-9cc8-33ec52120c2c", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "654ffd79-bbc4-4a6e-8517-fcbed8438723", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035216Z:a751f7bd-8456-4355-9cc8-33ec52120c2c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c30-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "513df563d289d7d588cfebfb5f6da89d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a9c0e676-fab0-432e-9013-36ee87836d45", + "x-ms-client-request-id": "513df563d289d7d588cfebfb5f6da89d", + "x-ms-correlation-request-id": "80521df7-edd0-48ef-b79e-b1e458fed650", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "3f9701a6-eab6-4b5a-b1ac-a97ec6e2eb57", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035217Z:80521df7-edd0-48ef-b79e-b1e458fed650" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c31-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "ac61ae790453318387b7923555c4f6b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "95a58a05-c0e2-4356-bed4-34edc31615e9", + "x-ms-client-request-id": "ac61ae790453318387b7923555c4f6b3", + "x-ms-correlation-request-id": "cfea7beb-ecc1-4e93-9097-5ecbabf8bf54", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "bbba8c17-fe7c-4b56-82fa-b935bfc99b48", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035218Z:cfea7beb-ecc1-4e93-9097-5ecbabf8bf54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c32-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "03a4d2cc37e5102a510a904c9366e9ce", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "0ba99b37-094d-4433-a17d-eb7b3952d6f7", + "x-ms-client-request-id": "03a4d2cc37e5102a510a904c9366e9ce", + "x-ms-correlation-request-id": "8473a5ef-6328-469d-8980-b73033072f80", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "a727c127-446b-47cc-8a50-0eb55d038ddf", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035219Z:8473a5ef-6328-469d-8980-b73033072f80" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c33-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3ddcc0c50d955fe3710ccad2409f82c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1066e46d-22c9-4b6e-9e3b-1baa163a22b7", + "x-ms-client-request-id": "3ddcc0c50d955fe3710ccad2409f82c4", + "x-ms-correlation-request-id": "dacb285a-410b-4322-a528-e314a7c3d269", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "bacd2173-c68c-40f0-9c27-293484f95125", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035221Z:dacb285a-410b-4322-a528-e314a7c3d269" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c34-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "8c2f37d9a4c941b883505b4874369d20", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "5e1b30a2-387b-48b1-9de8-18efba576806", + "x-ms-client-request-id": "8c2f37d9a4c941b883505b4874369d20", + "x-ms-correlation-request-id": "7191a331-73b1-4415-8936-c48e591d9c69", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "3a966c70-79f0-4672-b5ff-7ca5622e10d3", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035222Z:7191a331-73b1-4415-8936-c48e591d9c69" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c35-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "946fc3cdb9e7be1eee4491d86d58d0b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "97cd33ad-bcc8-45f0-b4c1-63a1566328e2", + "x-ms-client-request-id": "946fc3cdb9e7be1eee4491d86d58d0b1", + "x-ms-correlation-request-id": "acb98ba9-400d-46d2-b3fa-8950b498490a", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "fdea9ab6-77b2-4646-8da0-6bdb0940f9e6", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035224Z:acb98ba9-400d-46d2-b3fa-8950b498490a" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c36-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "5c73cb885c372104089bb944b29aeb3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7951326e-54d6-4bee-9421-adf250053c98", + "x-ms-client-request-id": "5c73cb885c372104089bb944b29aeb3b", + "x-ms-correlation-request-id": "c4ec6f69-3882-4b48-a635-54c27ea28394", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "53c87230-ef59-484f-b875-0c300da502cb", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035225Z:c4ec6f69-3882-4b48-a635-54c27ea28394" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c37-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7c04a96eed2f1fdd18709d8512dfd32b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "896a5522-e49a-4945-8480-9ff8c2bbea9b", + "x-ms-client-request-id": "7c04a96eed2f1fdd18709d8512dfd32b", + "x-ms-correlation-request-id": "57ecd855-15fb-4efd-950a-79ee00e53968", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-request-id": "c47ad72a-2a2a-4449-a9d1-b9e6dcf76cb7", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035226Z:57ecd855-15fb-4efd-950a-79ee00e53968" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c38-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "a8c0a98041c371e9bf4e8c4b00da0c54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f2c2052f-915a-453c-a3ef-560f19647ba4", + "x-ms-client-request-id": "a8c0a98041c371e9bf4e8c4b00da0c54", + "x-ms-correlation-request-id": "405a75a5-024a-4d94-86c8-4a31ca330083", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-request-id": "e630d0b5-7c96-46bf-a7f0-aeeca62e7dbe", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035228Z:405a75a5-024a-4d94-86c8-4a31ca330083" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c39-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "c46a565953539a82ed5343c7be7f0e29", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "16d57918-5381-4ef9-bceb-94d901a0a716", + "x-ms-client-request-id": "c46a565953539a82ed5343c7be7f0e29", + "x-ms-correlation-request-id": "244f19ad-b021-4a4f-a1ba-c7a609de0464", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-request-id": "fa13ce79-5709-40b7-a7dd-e5a8d332b241", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035229Z:244f19ad-b021-4a4f-a1ba-c7a609de0464" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c3a-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "08c38dc742da2c77c093bde061911f3e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f9969c4c-1500-4214-b448-1e90756e2661", + "x-ms-client-request-id": "08c38dc742da2c77c093bde061911f3e", + "x-ms-correlation-request-id": "4156867e-d92a-4b90-9a11-ec8541665f03", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-request-id": "c788f306-96bd-4fd3-ae1c-fc4954c2e47d", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035230Z:4156867e-d92a-4b90-9a11-ec8541665f03" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c3b-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "bc2c49630f742cd72725bb70fe21b23f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1cfdba4a-6b06-4df8-94aa-5d8e7e21575b", + "x-ms-client-request-id": "bc2c49630f742cd72725bb70fe21b23f", + "x-ms-correlation-request-id": "8bf635dc-e6d2-4b8d-a067-83aad78f22f4", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-request-id": "eac54897-ee3e-45ba-8a7f-ed3cdab3b698", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035231Z:8bf635dc-e6d2-4b8d-a067-83aad78f22f4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c3c-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "7284633f0316167adf3e03c096a1395b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "30418135-e460-43e2-a87f-40a07bff2344", + "x-ms-client-request-id": "7284633f0316167adf3e03c096a1395b", + "x-ms-correlation-request-id": "f896331c-738f-46a6-9e7a-248d93729d54", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "21363f28-bef6-4608-85ab-0d7a6b210a59", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035233Z:f896331c-738f-46a6-9e7a-248d93729d54" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c3d-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "746304345253b7b4b596e1b487062d9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "100", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "a8ead00a-d5c5-402b-856b-9f0c314ea0df", + "x-ms-client-request-id": "746304345253b7b4b596e1b487062d9e", + "x-ms-correlation-request-id": "a3c686bf-672f-4711-92dc-e151b3bc41de", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "6439131e-f730-49c0-9114-40283651622e", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035234Z:a3c686bf-672f-4711-92dc-e151b3bc41de" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022InProgress\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/762d5383-6be1-4838-acf9-61470b3be7f1?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c3e-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fda17de0ac0d6028cf15dc360c179685", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fa8b9eed-9424-4ce0-ba78-aff6bd44a627", + "x-ms-client-request-id": "fda17de0ac0d6028cf15dc360c179685", + "x-ms-correlation-request-id": "a85723ba-6456-419b-9854-85b632307917", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "dc7c9b99-53a3-45af-9026-45a3e87763c1", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035235Z:a85723ba-6456-419b-9854-85b632307917" + }, + "ResponseBody": [ + "{\r\n", + " \u0022status\u0022: \u0022Succeeded\u0022\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/connections/V2toV13512?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "Request-Id": "|67172c3f-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "fa3c5feb3ebeedebaeccbc7f22c58fd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1361", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:52:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ada4e59a-ef11-428e-92b2-e5ac11b15538", + "x-ms-client-request-id": "fa3c5feb3ebeedebaeccbc7f22c58fd9", + "x-ms-correlation-request-id": "0ce10aeb-5f45-4851-8c0d-710b897340d4", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "09f4cd94-e48d-4186-94ab-63c6b414bc1a", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035236Z:0ce10aeb-5f45-4851-8c0d-710b897340d4" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022V2toV13512\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/connections/V2toV13512\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ec9e2ba4-8f11-45bb-80b2-18d4ee14d2f9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00222178c555-0b0f-49ab-ad12-27b259d79adf\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030\u0022\r\n", + " },\r\n", + " \u0022virtualNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022Vnet2Vnet\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc123\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/connections/V2toV13512?api-version=2021-02-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Request-Id": "|67172c40-428c3aa080f66b7a.", + "User-Agent": [ + "azsdk-net-ResourceManager/1.0.0-alpha.20210823.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "18e065103c00874edc03a43e767dab9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1361", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 25 Aug 2021 03:53:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b9f4534f-6197-4d46-b39e-e976c0a9a525", + "x-ms-client-request-id": "18e065103c00874edc03a43e767dab9e", + "x-ms-correlation-request-id": "9edc16c1-4fa9-4109-9c34-53c11887e1ce", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "dda2cbd0-9b6d-47a6-92f2-9e293693ddd5", + "x-ms-routing-request-id": "SOUTHEASTASIA:20210825T035312Z:9edc16c1-4fa9-4109-9c34-53c11887e1ce" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022V2toV13512\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/connections/V2toV13512\u0022,\r\n", + " \u0022etag\u0022: \u0022W/\\\u0022ec9e2ba4-8f11-45bb-80b2-18d4ee14d2f9\\\u0022\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Network/connections\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", + " \u0022resourceGuid\u0022: \u00222178c555-0b0f-49ab-ad12-27b259d79adf\u0022,\r\n", + " \u0022packetCaptureDiagnosticState\u0022: \u0022None\u0022,\r\n", + " \u0022virtualNetworkGateway1\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4960/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3030\u0022\r\n", + " },\r\n", + " \u0022virtualNetworkGateway2\u0022: {\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3646/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6086\u0022\r\n", + " },\r\n", + " \u0022connectionType\u0022: \u0022Vnet2Vnet\u0022,\r\n", + " \u0022connectionProtocol\u0022: \u0022IKEv2\u0022,\r\n", + " \u0022routingWeight\u0022: 3,\r\n", + " \u0022sharedKey\u0022: \u0022abc123\u0022,\r\n", + " \u0022enableBgp\u0022: false,\r\n", + " \u0022useLocalAzureIpAddress\u0022: false,\r\n", + " \u0022usePolicyBasedTrafficSelectors\u0022: false,\r\n", + " \u0022ipsecPolicies\u0022: [],\r\n", + " \u0022trafficSelectorPolicies\u0022: [],\r\n", + " \u0022connectionStatus\u0022: \u0022Unknown\u0022,\r\n", + " \u0022ingressBytesTransferred\u0022: 0,\r\n", + " \u0022egressBytesTransferred\u0022: 0,\r\n", + " \u0022expressRouteGatewayBypass\u0022: false,\r\n", + " \u0022dpdTimeoutSeconds\u0022: 0,\r\n", + " \u0022connectionMode\u0022: \u0022Default\u0022\r\n", + " }\r\n", + "}" + ] + } + ], + "Variables": { + "RandomSeed": "523676407", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs b/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs index 1211309d2a48..1012590fbe75 100644 --- a/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs +++ b/sdk/network/Azure.ResourceManager.Network/tests/Tests/GatewayOperationsTests.cs @@ -382,7 +382,7 @@ public async Task VnetGatewayConnectionVnetToVnetTest() Response getVirtualNetworkGateway1 = await virtualNetworkGatewayContainer1.GetAsync(virtualNetworkGatewayName1); Response getVirtualNetworkGateway2 = await virtualNetworkGatewayContainer2.GetAsync(virtualNetworkGatewayName2); - string ConnectionName1 = Recording.GenerateAssetName("azsmnet"); + string ConnectionName1 = Recording.GenerateAssetName("V1toV2"); var virtualNetworkGatewayConneciton1 = new VirtualNetworkGatewayConnectionData(getVirtualNetworkGateway1.Value.Data, VirtualNetworkGatewayConnectionType.Vnet2Vnet) { Location = location1, @@ -401,24 +401,24 @@ public async Task VnetGatewayConnectionVnetToVnetTest() Assert.AreEqual("abc123", getVirtualNetworkGatewayConnectionResponse1.Value.Data.SharedKey); Assert.AreEqual(getVirtualNetworkGateway2.Value.Id.ToString(), getVirtualNetworkGatewayConnectionResponse1.Value.Data.VirtualNetworkGateway2.Id.ToString()); - string ConnectionName2 = Recording.GenerateAssetName("azsmnet"); - var virtualNetworkGatewayConneciton2 = new VirtualNetworkGatewayConnectionData(getVirtualNetworkGateway1.Value.Data, VirtualNetworkGatewayConnectionType.Vnet2Vnet) + string ConnectionName2 = Recording.GenerateAssetName("V2toV1"); + var virtualNetworkGatewayConneciton2 = new VirtualNetworkGatewayConnectionData(getVirtualNetworkGateway2.Value.Data, VirtualNetworkGatewayConnectionType.Vnet2Vnet) { - Location = location1, + Location = location2, RoutingWeight = 3, - VirtualNetworkGateway1 = getVirtualNetworkGateway1.Value.Data, - VirtualNetworkGateway2 = getVirtualNetworkGateway2.Value.Data, + VirtualNetworkGateway1 = getVirtualNetworkGateway2.Value.Data, + VirtualNetworkGateway2 = getVirtualNetworkGateway1.Value.Data, SharedKey = "abc123" }; - var virtualNetworkGatewayConnectionContainer2 = resourceGroup1.GetVirtualNetworkGatewayConnections(); + var virtualNetworkGatewayConnectionContainer2 = resourceGroup2.GetVirtualNetworkGatewayConnections(); var putVirtualNetworkGatewayConnectionResponseOperation2 = await virtualNetworkGatewayConnectionContainer2.CreateOrUpdateAsync(ConnectionName2, virtualNetworkGatewayConneciton2); Response putVirtualNetworkGatewayConnectionResponse2 = await putVirtualNetworkGatewayConnectionResponseOperation2.WaitForCompletionAsync(); - Response getVirtualNetworkGatewayConnectionResponse2 = await virtualNetworkGatewayConnectionContainer2.GetAsync(ConnectionName1); + Response getVirtualNetworkGatewayConnectionResponse2 = await virtualNetworkGatewayConnectionContainer2.GetAsync(ConnectionName2); Assert.AreEqual(ConnectionName2, getVirtualNetworkGatewayConnectionResponse2.Value.Data.Name); - Assert.AreEqual("Vnet2Vnet", getVirtualNetworkGatewayConnectionResponse1.Value.Data.ConnectionType.ToString()); - Assert.AreEqual("abc123", getVirtualNetworkGatewayConnectionResponse1.Value.Data.SharedKey); - Assert.AreEqual(getVirtualNetworkGateway1.Value.Id.ToString(), getVirtualNetworkGatewayConnectionResponse1.Value.Data.VirtualNetworkGateway2.Id.ToString()); + Assert.AreEqual("Vnet2Vnet", getVirtualNetworkGatewayConnectionResponse2.Value.Data.ConnectionType.ToString()); + Assert.AreEqual("abc123", getVirtualNetworkGatewayConnectionResponse2.Value.Data.SharedKey); + Assert.AreEqual(getVirtualNetworkGateway1.Value.Id.ToString(), getVirtualNetworkGatewayConnectionResponse2.Value.Data.VirtualNetworkGateway2.Id.ToString()); } // Tests Resource:-VirtualNetworkGateway 6 APIs:-